/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/StdLib/ |
H A D | Bsearch.c | 91 int cmp; local 96 cmp = (*compar)(key, p); 97 if (cmp == 0) 99 if (cmp > 0) { /* key > p: move right */
|
H A D | Qsort.c | 104 med3(char *a, char *b, char *c, cmp_t *cmp ) 106 return cmp(a, b) < 0 ? 107 (cmp(b, c) < 0 ? b : (cmp(a, c) < 0 ? c : a )) 108 :(cmp(b, c) > 0 ? b : (cmp(a, c) < 0 ? a : c )); 125 qsort(void *a, size_t n, size_t es, cmp_t *cmp) argument 137 pl > (char *)a && cmp(pl - es, pl) > 0; 148 pl = med3(pl, pl + d, pl + 2 * d, cmp); 149 pm = med3(pm - d, pm, pm + d, cmp); [all...] |
/vbox/src/libs/xpcom18a4/xpcom/ds/ |
H A D | nsQuickSort.cpp | 91 med3(char *a, char *b, char *c, cmp_t* cmp, void *data) argument 93 return cmp(a, b, data) < 0 ? 94 (cmp(b, c, data) < 0 ? b : (cmp(a, c, data) < 0 ? c : a )) 95 :(cmp(b, c, data) > 0 ? b : (cmp(a, c, data) < 0 ? a : c )); 102 cmp_t *cmp, 113 for (pl = pm; pl > (char *)a && cmp(pl - es, pl, data) > 0; 124 pl = med3(pl, pl + d, pl + 2 * d, cmp, data); 125 pm = med3(pm - d, pm, pm + d, cmp, dat 98 NS_QuickSort( void *a, unsigned int n, unsigned int es, cmp_t *cmp, void *data ) argument [all...] |
/vbox/src/libs/zlib-1.2.6/contrib/inflate86/ |
H A D | inffas86.c | 358 " movl 92(%%rsp), %%eax\n" /* eax = wsize, prepare for dist cmp */ 814 cmp [esp+24], edi 816 cmp [esp+12], esi local 820 cmp bl, 15 858 cmp bl, cl 881 cmp bl, 15 909 cmp bl, cl 936 cmp eax, ebp 963 cmp ebp, 1 /* if dist 1, is a memset */ 965 cmp [es local [all...] |
/vbox/src/VBox/Devices/PC/ipxe/src/net/udp/ |
H A D | dns.c | 171 int i, cmp; local 182 cmp = dns_name_cmp ( dns, reply, p ); 185 if ( cmp == 0 )
|
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/gdtoa/ |
H A D | misc.c | 514 cmp function 528 Bug("cmp called with a->x[a->wds-1] == 0"); 530 Bug("cmp called with b->x[b->wds-1] == 0"); 567 i = cmp(a,b);
|
H A D | gdtoaimp.h | 532 #define cmp __cmp_D2A macro 584 extern int cmp (Bigint*, Bigint*);
|
/vbox/src/VBox/Devices/EFI/Firmware/VBoxPkg/VBoxFsDxe/ |
H A D | fsw_hfs.c | 491 int cmp = 0; local 517 cmp = compare_keys (currkey, key); 518 //fprintf(stderr, "rec=%d cmp=%d kind=%d \n", rec, cmp, node->kind); 523 if (cmp == 0) 537 if (cmp > 0) 548 if (node->kind == kBTLeafNode && cmp < 0 && node->fLink) 562 fsw_s32 cmp = -1; local 577 cmp = compare_keys (currkey, key); 578 if (cmp < [all...] |
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/windows/ |
H A D | w95io.c | 601 PRTime cmp; /* for comparison */ local 625 cmp = PR_ImplodeTime(&etm); 631 PR_ASSERT((cmp / PR_USEC_PER_MSEC) == (*prtm / PR_USEC_PER_MSEC));
|
H A D | ntio.c | 2854 PRTime cmp; /* for comparison */ local 2878 cmp = PR_ImplodeTime(&etm); 2884 PR_ASSERT((cmp / PR_USEC_PER_MSEC) == (*prtm / PR_USEC_PER_MSEC));
|
/vbox/src/VBox/GuestHost/OpenGL/util/ |
H A D | blitter.cpp | 1966 int cmp = pTex->pScaledCache->Tex.width - width; local 1967 if (cmp <= 0) 1968 cmp = pTex->pScaledCache->Tex.height - height; 1970 if (!cmp) 1972 else if (cmp < 0) /* current cache is "less" than the requested */ 1984 else /* cmp > 0 */
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/misc/ |
H A D | prdtoa.c | 1060 cmp function 1074 Bug("cmp called with a->x[a->wds-1] == 0"); 1076 Bug("cmp called with b->x[b->wds-1] == 0"); 1113 i = cmp(a,b); 2107 i = cmp(delta, bs); 2137 if (cmp(delta, bs) <= 0) 2226 if (cmp(delta, bs) > 0) 2570 if (cmp(b, S) >= 0) { 3208 if (cmp(b,S) < 0) { 3217 if (ilim < 0 || cmp( [all...] |
/vbox/src/libs/libxml2-2.6.31/ |
H A D | xmlunicode.c | 947 int low, high, mid, cmp; local 957 if ((cmp=strcmp(tname, sptr[mid].rangename)) == 0) 959 if (cmp < 0)
|
H A D | parser.c | 2826 register const xmlChar *cmp = other; local 2833 while (*in != 0 && *in == *cmp) { 2835 ++cmp; 2838 if (*cmp == 0 && (*in == '>' || IS_BLANK_CH (*in))) { 7824 const xmlChar *cmp = name; local 7834 cmp = prefix; 7835 while (*in != 0 && *in == *cmp) { 7837 ++cmp; 7839 if ((*cmp == 0) && (*in == ':')) { 7841 cmp [all...] |
/vbox/src/VBox/Devices/Graphics/shaderlib/ |
H A D | glsl_shader.c | 2661 /* Splitting the cmp instruction up in multiple lines imposes a problem: 5136 int cmp; local 5147 if (k->vshader && (cmp = memcmp(&k->vs_args, &prog->vs_args, sizeof(prog->vs_args)))) return cmp; 5148 if (k->pshader && (cmp = memcmp(&k->ps_args, &prog->ps_args, sizeof(prog->ps_args)))) return cmp;
|
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/ |
H A D | glsl_shader.c | 2538 /* Splitting the cmp instruction up in multiple lines imposes a problem: 5005 int cmp; local 5016 if (k->vshader && (cmp = memcmp(&k->vs_args, &prog->vs_args, sizeof(prog->vs_args)))) return cmp; 5017 if (k->pshader && (cmp = memcmp(&k->ps_args, &prog->ps_args, sizeof(prog->ps_args)))) return cmp;
|
/vbox/src/VBox/Main/webservice/jaxlibs/ |
H A D | jaxb-xjc.jar | META-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/com. ... |