代码搜索结果

找到约 21,386 项符合 Switch 的代码

pr12578.c

/* PR tree-optimization/12517 */ void trivial_regexp_p(int *s, int len) { while (--len) { switch (*s++) { case '\\': switch (*s++) { case '|': ; } } } }

20000211-3.c

void f_clos(int x) { switch(x) { default: mumble:; } }

980821-1.c

typedef int __int32_t; int __kernel_rem_pio2(int prec) { __int32_t i, jz; double fw, fq[20]; switch(prec) { case 2: fw = 0.0; case 3: for (i=jz;i>0;i--) { fw = fq[i-1] +f

pr14730.c

/* PR middle-end/14730 */ int t (char i) { switch (i) { case 1: case 7: case 10: case 14: case 9: case 256: return 0; } return 1; }

20000105-1.c

main(int na, char* argv[]) { int wflg = 0, tflg = 0; int dflg = 0; exit(0); while(1) { switch(argv[1][0]) { help: exit(0); case 'w': case 'W': wflg = 1; break; case 't

930527-1.c

enum {e0, e1}; int x[] = { [e0] = 0 }; f () { switch (1) { case e0: case e1: break; } }

20031031-1.c

/* PR/11640 */ int internal_insn_latency (int insn_code, int insn2_code) { switch (insn_code) { case 256: switch (insn2_code) { case 267: return 8; case 266: return 8; case

931102-1.c

char *e (); #define SET \ if (d > *b++) d |= a; \ if (b) b = e(b); xxx() { int a, d; char *b, *c; while (1) { while (1) { while (1) { if (a) { switch (a) { case 1: w

20010610-1.c

/* Origin: Kaveh R. Ghazi Boolean types were not accepted as array sizes nor as switch quantities. */ #include int main(void) { bool arr[(bool)1];

20050217-1.c

/* PR c++/20023 */ void f (void); typedef __SIZE_TYPE__ size_t; void g (void *a) { size_t b = (size_t) a; switch (b) { case 1: f (); break; } }