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

1 2 3 45 6 7 8 91011

  /external/icu4c/i18n/
bmsearch.cpp 176 int32_t low = -1, high = -1; local
189 low = ucol_getOffset(elements);
194 //high = low = -1;
215 ceb[offset].lowOffset = low;
226 int32_t low = -1, high = -1; local
241 low = ucol_getOffset(elements);
266 ceb[offset].lowOffset = low;
734 int32_t low = cei->lowOffset; local
737 if (high == 0 || (low < high && low <= tOffset))
    [all...]
ucol_bld.cpp 447 uint32_t high, low, count=1; local
451 low = UCOL_COMMON_TOP2<<24;
455 low = UCOL_BYTE_COMMON << 24; //0x05000000;
464 g->noOfRanges = ucol_allocWeights(low, high, count, maxByte, g->ranges);
475 uint32_t low = lows[fStrength*3+strength]; local
488 if(low >= high && strength > UCOL_PRIMARY) {
494 if (low < UCOL_COMMON_TOP2<<24 ) {
495 // Override if low range is less than UCOL_COMMON_TOP2.
496 low = UCOL_COMMON_TOP2<<24;
500 // Override if low range is less than UCOL_COMMON_BOT3
    [all...]
  /external/bison/src/
lalr.c 147 goto_number low; local
151 low = goto_map[sym - ntokens];
156 assert (low <= high);
157 middle = (low + high) / 2;
162 low = middle + 1;
  /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...]
usc_impl.c 278 * in the text, see if it's followed by a low surrogate
281 UChar low = scriptRun->textArray[scriptRun->scriptLimit + 1]; local
284 * if it is followed by a low surrogate,
287 if (low >= 0xDC00 && low <= 0xDFFF) {
288 ch = (high - 0xD800) * 0x0400 + low - 0xDC00 + 0x10000;
  /external/kernel-headers/original/asm-x86/
paravirt.h 99 int entrynum, u32 low, u32 high);
101 int entrynum, u32 low, u32 high);
103 int entrynum, u32 low, u32 high);
362 * in low,high order.
564 static inline int paravirt_write_msr(unsigned msr, unsigned low, unsigned high)
566 return PVOP_CALL3(int, pv_cpu_ops.write_msr, msr, low, high);
603 #define rdtscl(low) do { \
605 low = (int)_l; \
623 #define rdpmc(counter,low,high) do { \
625 low = (u32)_l;
    [all...]
  /frameworks/base/core/java/android/text/
Layout.java 700 int high = getLineCount(), low = -1, guess; local
702 while (high - low > 1) {
703 guess = (high + low) / 2;
708 low = guess;
711 if (low < 0)
714 return low;
723 int high = getLineCount(), low = -1, guess; local
725 while (high - low > 1) {
726 guess = (high + low) / 2;
731 low = guess
763 int high = there - 1 + 1, low = here + 1 - 1, guess; local
    [all...]
  /dalvik/libcore/luni/src/main/java/java/lang/
Long.java 493 int low = (int) (n % 1000000000); // Extract low-order 9 digits local
494 int cursor = intIntoCharArray(buf, bufLen, low);
496 // Zero-pad Low order part to 9 digits
501 * The remaining digits are (n - low) / 1,000,000,000. This
505 n = ((n - low) >>> 9) * 0x8E47CE423A2E9C6DL;
510 * low-order digit, put it in buf, and then call intIntoCharArray
777 int low = (int) v; local
778 return low !=0 ? Integer.numberOfTrailingZeros(low)
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
SwitchData.java 211 long low = cases.get(0); local
213 long result = ((high - low + 1)) * 2 + 4;
  /dalvik/vm/compiler/codegen/arm/
Ralloc.h 116 int low, int high);
119 int low, int high);
  /dalvik/vm/mterp/armv5te/
OP_CMP_LONG.S 38 bhi .L${opcode}_greater @ unsigned compare on low part
OP_CONST_STRING_JUMBO.S 6 FETCH(r0, 1) @ r0<- bbbb (low)
OP_MUL_LONG.S 12 * The low word of the result holds ZX, the high word holds
14 * it doesn't fit in the low 64 bits.
32 add r10, r2, r10 @ r10<- r10 + low(ZxW + (YxX))
  /external/qemu/
translate-all.c 191 env->icount_decr.u16.low += tb->icount;
215 env->icount_decr.u16.low -= gen_opc_icount[j];
elf_ops.h 188 uint64_t addr, low = (uint64_t)-1, high = 0; local
252 if (addr < low)
253 low = addr;
263 *lowaddr = (uint64_t)(elf_sword)low;
  /hardware/msm7k/librpc/
rpc.c 54 if (!XDR_SEND_UINT32(xdr, &accreply->u.versions.low))
86 if (!XDR_SEND_UINT32(xdr, &rejreply->u.versions.low))
  /external/icu4c/tools/tzcode/
icuzdump.cpp 199 void dumpZone(ostream& out, const char* linesep, UnicodeString tzid, int32_t low, int32_t high) {
288 int32_t low = 1902; local
316 << "\t values are 1902(low) and 2038(high)." << endl;
342 low = atoi(options[kOptCutover].value);
348 dumper.setLowYear(low);
  /external/qemu/slirp-android/
ip_icmp.c 142 int low = so->so_faddr_ip & 0xff; local
144 if (low >= CTL_DNS && low < CTL_DNS + dns_addr_count)
145 addr_ip = dns_addr[low - CTL_DNS];
  /bionic/libm/src/
e_rem_pio2.c 81 u_int32_t low; local
154 GET_LOW_WORD(low,x);
155 SET_LOW_WORD(z,low);
  /external/sonivox/arm-hybrid-22k/lib_src/
ARM-E_filter_gnu.s 5 @ Implements a 2-pole low-pass filter with resonanance
100 MOV z1, tmp0, ASR #14 @ shift result to low word
113 MOV z1, tmp1, ASR #14 @ shift result to low word
  /external/sonivox/arm-wt-22k/lib_src/
ARM-E_filter_gnu.s 5 @ Implements a 2-pole low-pass filter with resonanance
100 MOV z1, tmp0, ASR #14 @ shift result to low word
113 MOV z1, tmp1, ASR #14 @ shift result to low word
  /external/webkit/WebCore/platform/graphics/
WidthIterator.cpp 105 // Make sure we have another character and it's a low surrogate.
108 UChar low = cp[1]; local
109 if (!U16_IS_TRAIL(low))
111 c = U16_GET_SUPPLEMENTARY(c, low);
  /external/webkit/WebCore/platform/text/mac/
TextCodecMac.cpp 307 UniChar low = CFStringGetCharacterAtIndex(cfs.get(), startPos + charactersConverted); local
308 if ((low & 0xFC00) == 0xDC00) { // is low surrogate
310 badChar += low;
  /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...]
  /sdk/emulator/qtools/
trace_reader.h 721 // The address of thumb functions seem to have the low bit set,
1045 int low = -1; local
1069 int low = -1; local
1094 int low = -1; local
    [all...]

Completed in 1100 milliseconds

1 2 3 45 6 7 8 91011