代码搜索:exec

找到约 10,000 项符合「exec」的源代码

代码结果 10,000
www.eeworm.com/read/222917/4815845

c pcre_exec.c

/************************************************* * Perl-Compatible Regular Expressions * *************************************************/ /* PCRE is a library of functions to support r
www.eeworm.com/read/216450/4893781

c sys_exec.c

#include "syslib.h" PUBLIC int sys_exec(proc, ptr, prog_name, initpc) int proc; /* process that did exec */ char *ptr; /* new stack pointer */ char *prog_name; /* name of the new program */ vir_
www.eeworm.com/read/216450/4895390

c do_exec.c

/* The kernel call implemented in this file: * m_type: SYS_EXEC * * The parameters for this kernel call are: * m1_i1: PR_PROC_NR (process that did exec call) * m1_p1: PR_STACK_PTR (new
www.eeworm.com/read/214341/4909247

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/214341/4909278

java exec213.java

public class Exec213{ int listFind(SeqList s,int x){ for(int i = 0; i
www.eeworm.com/read/214341/4909279

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/214341/4909280

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/214341/4909281

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/214341/4909282

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/214341/4909306

java exec69.java

public class Exec69{ int maxsize=10; int a[]=new int[maxsize]; Exec69(){ for(int i=0;i