HomeSort by relevance Sort by last modified time
    Searched refs:lo (Results 551 - 575 of 1501) sorted by null

<<21222324252627282930>>

  /external/valgrind/coregrind/
m_rangemap.c 166 Word lo = 0; local
169 /* The unsearched space is lo .. hi inclusive */
170 if (lo > hi) {
176 Word mid = (lo + hi) / 2;
181 if (key > key_mid_max) { lo = mid+1; continue; }
  /external/valgrind/exp-sgcheck/
pc_common.h 48 Addr lo, Addr hi, Seg* seglo, Seg* seghi );
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
pvamrwb_math_op.h 115 void int32_to_dpf(int32 L_32, int16 *hi, int16 *lo);
  /libcore/ojluni/src/main/java/java/util/
Spliterators.java 934 int lo = index, mid = (lo + fence) >>> 1; local
1019 int lo = index, mid = (lo + fence) >>> 1; local
1102 int lo = index, mid = (lo + fence) >>> 1; local
1185 int lo = index, mid = (lo + fence) >>> 1; local
    [all...]
  /prebuilts/go/darwin-x86/src/math/rand/
gen_cooked.go 33 lo := x % q
34 x = a*lo - r*hi
rng.go 192 lo := x % _Q
193 x = _A*lo - _R*hi
  /prebuilts/go/darwin-x86/src/regexp/syntax/
regexp.go 146 lo, hi := re.Rune[i]+1, re.Rune[i+1]-1
147 escape(b, lo, lo == '-')
148 if lo != hi {
155 lo, hi := re.Rune[i], re.Rune[i+1]
156 escape(b, lo, lo == '-')
157 if lo != hi {
  /prebuilts/go/darwin-x86/test/bench/garbage/
stats.go 42 func tukey5(raw []uint64) (lo, q1, q2, q3, hi uint64) {
46 lo = x[0]
  /prebuilts/go/linux-x86/src/math/rand/
gen_cooked.go 33 lo := x % q
34 x = a*lo - r*hi
rng.go 192 lo := x % _Q
193 x = _A*lo - _R*hi
  /prebuilts/go/linux-x86/src/regexp/syntax/
regexp.go 146 lo, hi := re.Rune[i]+1, re.Rune[i+1]-1
147 escape(b, lo, lo == '-')
148 if lo != hi {
155 lo, hi := re.Rune[i], re.Rune[i+1]
156 escape(b, lo, lo == '-')
157 if lo != hi {
  /prebuilts/go/linux-x86/test/bench/garbage/
stats.go 42 func tukey5(raw []uint64) (lo, q1, q2, q3, hi uint64) {
46 lo = x[0]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arc/
branch.s 19 @OC@lo text_label
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/m68hc11/
insns.s 54 anda #%lo(test2)
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/
jr-to-b-1.s 34 addiu $25,$25,%lo(s)
jr-to-b-2.s 34 addiu $25,$25,%lo(s)
vxworks1-lib.s 9 lw $28,%lo(__GOTT_BASE__)($28)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
mactoolboxglue.c 314 /* Convert wide to/from Python int or (hi, lo) tuple. XXXX Should use Python longs */
320 rv->lo = PyInt_AsLong(v);
321 if( rv->lo & 0x80000000 )
325 return PyArg_Parse(v, "(kk)", &rv->hi, &rv->lo);
332 if ( (w->hi == 0 && (w->lo & 0x80000000) == 0) ||
333 (w->hi == -1 && (w->lo & 0x80000000) ) )
334 return PyInt_FromLong(w->lo);
335 return Py_BuildValue("(ll)", w->hi, w->lo);
  /external/python/cpython2/Python/
mactoolboxglue.c 314 /* Convert wide to/from Python int or (hi, lo) tuple. XXXX Should use Python longs */
320 rv->lo = PyInt_AsLong(v);
321 if( rv->lo & 0x80000000 )
325 return PyArg_Parse(v, "(kk)", &rv->hi, &rv->lo);
332 if ( (w->hi == 0 && (w->lo & 0x80000000) == 0) ||
333 (w->hi == -1 && (w->lo & 0x80000000) ) )
334 return PyInt_FromLong(w->lo);
335 return Py_BuildValue("(ll)", w->hi, w->lo);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
listobject.c 964 /* Reverse a slice of a list in place, from lo up to (exclusive) hi. */
966 reverse_slice(PyObject **lo, PyObject **hi)
968 assert(lo && hi);
971 while (lo < hi) {
972 PyObject *t = *lo;
973 *lo = *hi;
975 ++lo;
1043 [lo, hi) is a contiguous slice of a list, and is sorted via
1045 On entry, must have lo <= start <= hi, and that [lo, start) is already
2047 PyObject **lo, **hi; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
sre_compile.py 113 lo, hi = av[1].getwidth()
114 if lo != hi:
116 emit(lo) # look behind
356 lo, hi = av[2].getwidth()
357 if lo == 0 and hi == MAXREPEAT:
359 return lo == hi == 1 and av[2][0][0] != SUBPATTERN
365 lo, hi = pattern.getwidth()
366 if lo == 0:
442 if lo < MAXCODE:
443 emit(lo)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
listobject.c 964 /* Reverse a slice of a list in place, from lo up to (exclusive) hi. */
966 reverse_slice(PyObject **lo, PyObject **hi)
968 assert(lo && hi);
971 while (lo < hi) {
972 PyObject *t = *lo;
973 *lo = *hi;
975 ++lo;
1043 [lo, hi) is a contiguous slice of a list, and is sorted via
1045 On entry, must have lo <= start <= hi, and that [lo, start) is already
2046 PyObject **lo, **hi; local
    [all...]
  /external/curl/lib/
md5.c 222 MD5_u32plus lo, hi; member in struct:__anon16364
395 ctx->lo = 0;
404 saved_lo = ctx->lo;
405 if((ctx->lo = (saved_lo + size) & 0x1fffffff) < saved_lo)
437 used = ctx->lo & 0x3f;
452 ctx->lo <<= 3;
453 ctx->buffer[56] = curlx_ultouc((ctx->lo)&0xff);
454 ctx->buffer[57] = curlx_ultouc((ctx->lo >> 8)&0xff);
455 ctx->buffer[58] = curlx_ultouc((ctx->lo >> 16)&0xff);
456 ctx->buffer[59] = curlx_ultouc(ctx->lo >> 24)
    [all...]
  /external/libunwind/src/ia64/
Gtables.c 91 unsigned long lo, hi, mid; local
95 for (lo = 0, hi = table_size / sizeof (struct ia64_table_entry); lo < hi;)
97 mid = (lo + hi) / 2;
110 lo = mid + 1;
231 unsigned long lo, hi, mid; local
234 for (lo = 0, hi = table_size / sizeof (struct ia64_table_entry); lo < hi;)
236 mid = (lo + hi) / 2;
241 lo = mid + 1
    [all...]
  /external/python/cpython2/Objects/
listobject.c 967 /* Reverse a slice of a list in place, from lo up to (exclusive) hi. */
969 reverse_slice(PyObject **lo, PyObject **hi)
971 assert(lo && hi);
974 while (lo < hi) {
975 PyObject *t = *lo;
976 *lo = *hi;
978 ++lo;
1046 [lo, hi) is a contiguous slice of a list, and is sorted via
1048 On entry, must have lo <= start <= hi, and that [lo, start) is alread
2050 PyObject **lo, **hi; local
    [all...]

Completed in 953 milliseconds

<<21222324252627282930>>