Home
last modified time | relevance | path

Searched refs:es (Results 1 – 7 of 7) sorted by relevance

/bionic/libc/stdlib/
Dqsort.c53 #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/
Dsigcontext.h66 unsigned short es, __esh; member
Duser_32.h56 unsigned short ds, __ds, es, __es; member
Duser32.h55 unsigned short ds, __ds, es, __es; member
Dvm86.h82 unsigned short es, __esh; member
Dprocessor_32.h186 unsigned short es, __esh; member
/bionic/libc/upstream-netbsd/libc/regex/
Dengine.c362 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 …]