代码搜索:exec
找到约 10,000 项符合「exec」的源代码
代码结果 10,000
www.eeworm.com/read/121703/14741257
c gui_exec.c
/*
*********************************************************************************************************
* uC/GUI
* Universal
www.eeworm.com/read/220892/14785135
java exec314.java
import java.util.*;
public class Exec314{
public static void main(String[] args){
SeqPQueue s=new SeqPQueue();
PQueueNode x=new PQueueNode(0,0);
boolean notempty=true;
System.out.pr
www.eeworm.com/read/220892/14785173
java exec213.java
public class Exec213{
int listFind(SeqList s,int x){
for(int i = 0; i
www.eeworm.com/read/220892/14785175
java exec214.java
public class Exec214{
public int listDelete(Node head,int x){
Node pre = head;
Node curr,q;
int position = -1;
curr = head.next;
while(curr != null){
position ++;
if(curr.data
www.eeworm.com/read/220892/14785177
java exec215.java
public class Exec215{
public int listDeleteMore(Node head,int x){
Node pre = head;
Node curr,q;
int tag = 0;
curr = head.next;
while(curr != null){
System.out.println(curr.data);
www.eeworm.com/read/220892/14785179
java exec217.java
public class Exec217{
public void converse(SeqList s){
int mid,i;
int x;
mid = s.size / 2;
for(i = 0; i < mid; i++){
x = s.list[i];
s.list[i] = s.list[s.size-1-i];
s.list[s.s
www.eeworm.com/read/220892/14785181
java exec218.java
public class Exec218{
public void converse(Node head){
Node p,q;
p = head.next;
head.next = null;
while(p != null){
q = p;
p = p.next;
q.next = head.next;
head.next = q;
www.eeworm.com/read/220892/14785253
java exec69.java
public class Exec69{
int maxsize=10;
int a[]=new int[maxsize];
Exec69(){
for(int i=0;i
www.eeworm.com/read/120797/14787848
c exec8000.c
/* Opcodes 8xxx -- Branches, a compare, and *gasp* more mov's
Output from GDB's 'gencode -t':
10001011i8p1.... bf // implemented (jrd)
10001111i8p1.... bf.s
www.eeworm.com/read/120797/14787851
c exec9000.c
/* Opcodes 9xxx -- One mov
Output from GDB's 'gencode -t':
1001nnnni8p2.... mov.w @(,PC),
*/
#include "sh4sim.h"
int sim_exec_9000(uint16 instr) {
int imm = instr & 0x00ff;