Searched refs:es (Results 1 – 7 of 7) sorted by relevance
/bionic/libc/stdlib/ |
D | qsort.c | 53 #define SWAPINIT(a, es) swaptype = ((char *)a - (char *)0) % sizeof(long) || \ argument 54 es % sizeof(long) ? 2 : es == sizeof(long)? 0 : 1; 71 swapfunc(a, b, es, swaptype) 84 qsort(void *aa, size_t n, size_t es, int (*cmp)(const void *, const void *)) in qsort() argument 90 loop: SWAPINIT(a, es); in qsort() 93 for (pm = (char *)a + es; pm < (char *) a + n * es; pm += es) in qsort() 94 for (pl = pm; pl > (char *) a && cmp(pl - es, pl) > 0; in qsort() 95 pl -= es) in qsort() 96 swap(pl, pl - es); in qsort() 99 pm = (char *)a + (n / 2) * es; in qsort() [all …]
|
/bionic/libc/kernel/arch-x86/asm/ |
D | sigcontext.h | 66 unsigned short es, __esh; member
|
D | user_32.h | 56 unsigned short ds, __ds, es, __es; member
|
D | user32.h | 55 unsigned short ds, __ds, es, __es; member
|
D | vm86.h | 82 unsigned short es, __esh; member
|
D | processor_32.h | 186 unsigned short es, __esh; member
|
/bionic/libc/upstream-netbsd/libc/regex/ |
D | engine.c | 362 sopno es; /* end sop of current subRE */ in dissect() local 382 for (ss = startst; ss < stopst; ss = es) { in dissect() 384 es = ss; in dissect() 385 switch (OP(m->g->strip[es])) { in dissect() 388 es += OPND(m->g->strip[es]); in dissect() 391 while (OP(m->g->strip[es]) != O_CH) in dissect() 392 es += OPND(m->g->strip[es]); in dissect() 395 es++; in dissect() 423 rest = slow(m, sp, stp, ss, es); in dissect() 426 tail = slow(m, rest, stop, es, stopst); in dissect() [all …]
|