HomeSort by relevance Sort by last modified time
    Searched defs:low (Results 101 - 125 of 167) sorted by null

1 2 3 45 6 7

  /bootable/recovery/minzip/
Zip.c 282 int low, high; local
284 low = 0;
286 while (low <= high) {
291 mid = low + ((high - low) / 2); // avoid overflow
304 low = mid + 1;
    [all...]
  /external/chromium/third_party/icu/source/test/perf/collperf/
collperf.cpp 408 int low = 0; local
414 guess = (high + low)/2;
425 low = guess;
  /external/grub/grub/
asmstub.c 483 /* low-level timing info */
725 /* low-level character I/O */
754 /* Low-level disk I/O. Our stubbed version just returns a file
896 /* low 4 bits */
897 int low = *ptr & 0xf; local
901 grub_printf ("%x%x", hi, low);
  /external/icu4c/common/
triedict.cpp 52 TernaryNode *low; // Less-than link member in struct:TernaryNode
68 low = NULL;
75 delete low;
129 p = p->low;
193 parent->low = newNode;
273 if (node->low != NULL) {
275 node = (TernaryNode *) fNodeStack.push(node->low, status);
515 int low = 0; local
519 while (high >= low) {
520 middle = (high+low)/2
    [all...]
ucnv2022.c 748 int32_t low = 0; local
    [all...]
  /external/icu4c/test/perf/collperf/
collperf.cpp 408 int low = 0; local
414 guess = (high + low)/2;
425 low = guess;
  /external/qemu/target-arm/
neon_helper.c 959 uint32_t low; local
960 low = x;
961 if (low > 0xffff) {
962 low = 0xffff;
970 return low | (high << 16);
975 int32_t low; local
977 low = x;
978 if (low != (int16_t)low) {
979 low = (low >> 31) ^ 0x7fff
1083 uint32_t low = a + (a >> 32); local
1109 uint32_t low, high; local
1281 uint32_t low = -x; local
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
compose.h 595 size_t low = 0; local
597 while (low < high) {
598 size_t mid = (low + high) / 2;
605 low = mid + 1;
608 for (size_t i = mid; i > low; --i) {
    [all...]
  /external/v8/src/
unicode.cc 75 unsigned int low = 0; local
77 while (high != low) {
78 unsigned int mid = low + ((high - low) >> 1);
85 low = mid;
88 low = mid + 1;
96 int32_t field = TableGet<kEntryDist>(table, low);
127 unsigned int low = 0; local
129 while (high != low) {
130 unsigned int mid = low + ((high - low) >> 1)
    [all...]
  /frameworks/base/core/java/android/text/
StaticLayout.java 951 int high = end + 1, low = start - 1, guess; local
1212 int low = -1; local
    [all...]
  /frameworks/base/opengl/libs/ETC1/
etc1.cpp 168 etc1_uint32 low, bool second, bool flipped) {
188 int offset = ((low >> k) & 1) | ((low >> (k + 15)) & 2);
202 etc1_uint32 low = (pIn[4] << 24) | (pIn[5] << 16) | (pIn[6] << 8) | pIn[7]; local
229 decode_subblock(pOut, r1, g1, b1, tableA, low, false, flipped);
230 decode_subblock(pOut, r2, g2, b2, tableB, low, true, flipped);
235 etc1_uint32 low; member in struct:__anon9480
350 &pCompressed->low, yy + x * 4, pModifierTable);
365 &pCompressed->low, y + xx * 4, pModifierTable);
437 pCompressed->low = 0
    [all...]
  /libcore/luni/src/main/java/org/apache/xml/serializer/
ToHTMLStream.java 1213 int low = (ch & 0x3F) | 0x80; local
1277 int low = (ch & 0x3F) | 0x80; local
    [all...]
  /system/core/libpixelflinger/codeflinger/
GGLAssembler.h 234 inline int low(int c) const { return format.c[c].l; } function in struct:android::GGLAssembler::pixel_t
235 inline int mask(int c) const { return ((1<<size(c))-1) << low(c); }
238 inline int component_size(int c) const { return hi(c) - low(c); }
  /dalvik/vm/
Jni.c 1550 const u1* low = (const u1*)SAVEAREA_FROM_FP(self->curFrame); local
1569 const u1* low = (const u1*)SAVEAREA_FROM_FP(self->curFrame); local
    [all...]
  /external/chromium/third_party/icu/source/common/
triedict.cpp 63 TernaryNode *low; // Less-than link member in struct:TernaryNode
79 low = NULL;
86 delete low;
151 p = p->low;
220 parent->low = newNode;
305 if (node->low != NULL) {
307 node = (TernaryNode *) fNodeStack.push(node->low, status);
657 int low = 0; local
660 while (high >= low) {
661 middle = (high+low)/2
    [all...]
ucnv2022.c 726 int32_t low = 0; local
    [all...]
unorm.cpp 1028 uint16_t high, low, h; local
1036 low=(uint16_t)c;
1038 /* each entry is a triplet { high(c), low(c), result } */
1042 if(high<h || (high==h && low<table[i+1])) {
1051 if(high==(h&0x1f) && low==table[start+1]) {
    [all...]
  /external/chromium/third_party/icu/source/test/intltest/
ssearch.cpp 696 void add(int32_t order, int32_t low, int32_t high);
723 int32_t order, low, high; local
744 low = ucol_getOffset(elems);
753 add(order, low, high);
765 void OrderList::add(int32_t order, int32_t low, int32_t high)
778 list[listSize].lowOffset = low;
990 int32_t order, low, high; local
993 low = iter->getOffset();
997 forwardList.add(order, low, high);
1008 low = iter->getOffset()
1114 int32_t low, high; local
    [all...]
  /external/emma/core/java12/com/vladium/emma/instr/
InstrVisitor.java 856 final int low = (code [++ scan] << 24) | ((0xFF & code [++ scan]) << 16) | ((0xFF & code [++ scan]) << 8) | (0xFF & code [++ scan]); local
1756 final int low = m_low; local
    [all...]
  /external/icu4c/test/intltest/
ssearch.cpp 689 void add(int32_t order, int32_t low, int32_t high);
716 int32_t order, low, high; local
737 low = ucol_getOffset(elems);
746 add(order, low, high);
758 void OrderList::add(int32_t order, int32_t low, int32_t high)
771 list[listSize].lowOffset = low;
983 int32_t order, low, high; local
986 low = iter->getOffset();
990 forwardList.add(order, low, high);
1001 low = iter->getOffset()
1109 int32_t low, high; local
    [all...]
  /external/libxml2/
xmlunicode.c 947 int low, high, mid, cmp; local
    [all...]
  /external/qemu/
arm-dis.c 2611 unsigned low, high; local
    [all...]
cpu-all.h 861 /* Flags stored in the low bits of the TLB virtual address. These are
964 uint32_t low,high; local
966 asm volatile("rdtsc" : "=a" (low), "=d" (high));
969 val |= low;
1013 uint32_t low;
1017 : "=r"(rval.i32.high), "=r"(rval.i32.low));
  /external/stlport/src/c_locale_win32/
c_locale_win32.c 1372 int low = 0; local
    [all...]
  /external/tcpdump/
print-snmp.c 337 u_int32_t low; member in struct:be::__anon7921::__anon7922
568 register u_int32_t high, low; local
571 high = 0, low = 0;
574 ((low & 0xFF000000) >> 24);
575 low = (low << 8) | *p;
578 elem->data.uns64.low = low;
743 printf("%u", elem->data.uns64.low);
748 d += elem->data.uns64.low;
    [all...]

Completed in 1172 milliseconds

1 2 3 45 6 7