Searched defs:lo (Results 101 - 125 of 308) sorted by relevance

1234567891011>>

/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
H A Dftcalc.c49 FT_UInt32 lo; member in struct:FT_Int64_
279 FT_UInt32 lo1, hi1, lo2, hi2, lo, hi, i1, i2; local
285 lo = lo1 * lo2;
297 /* Check carry overflow of i1 + lo */
298 lo += i1;
299 hi += ( lo < i1 );
301 z->lo = lo;
308 FT_UInt32 lo,
326 r |= lo >> 3
307 ft_div64by32( FT_UInt32 hi, FT_UInt32 lo, FT_UInt32 y ) argument
345 register FT_UInt32 lo, hi; local
[all...]
/external/regex-re2/re2/
H A Dprog.cc23 void Prog::Inst::InitByteRange(int lo, int hi, int foldcase, uint32 out) { argument
26 lo_ = lo & 0xFF;
151 int lo = 0; local
154 StringAppendF(&map, "\t%d. [%02x-%02x]\n", i, lo, unbytemap_[i]);
155 lo = unbytemap_[i] + 1;
223 j->lo() == 0x00 && j->hi() == 0xFF &&
230 k->lo() == 0x00 && k->hi() == 0xFF) {
297 void Prog::MarkByteRange(int lo, int hi) { argument
298 CHECK_GE(lo, 0);
300 CHECK_LE(lo, 25
[all...]
/external/skia/src/utils/
H A DSkParseColor.cpp404 int lo = 0; local
406 while (lo <= hi) {
407 int mid = (hi + lo) >> 1;
422 lo = mid + 2; // skip color
423 while ((int) gColorNames[lo] >= 0)
424 ++lo;
/external/srec/srec/cfront/
H A Dspec_anl.c325 int lo, hi; local
337 lo = (((freq[ii] - spread[ii]) * 2 * freqobj->fft.size) + freqobj->samplerate / 2) / freqobj->samplerate;
341 for (jj = lo; jj <= hi;jj++)
/external/srec/srec/clib/
H A Dvoc_read.c206 const char* lo; local
207 for (lo = low - 2; *lo != '\n'; lo--) ;
208 lo++;
209 if (kompare(label, lo)) break;
210 low = lo;
/external/valgrind/main/VEX/priv/
H A Dguest_ppc_helpers.c73 UInt lo, hi1, hi2; local
79 : "=r" (hi1), "=r" (lo), "=r" (hi2)
84 res |= (ULong)lo;
/external/valgrind/main/coregrind/
H A Dm_xarray.c232 Word lo, mid, hi, cres; local
236 lo = 0;
239 /* current unsearched space is from lo to hi, inclusive. */
240 if (lo > hi) return False; /* not found */
241 mid = (lo + hi) / 2;
245 if (cres > 0) { lo = mid+1; continue; }
247 vg_assert(cmpFn( key, VG_(indexXA)(xa, lo) ) >= 0);
/external/chromium_org/crypto/third_party/nss/
H A Dsha512.cc438 PRUint32 hi, lo; local
444 lo = (ctx->sizeLo << 3);
450 W[15] = SHA_HTONL(lo);
453 W[15] = lo;
541 #define ULLC(hi,lo) 0x ## hi ## lo ## UL
543 #define ULLC(hi,lo) 0x ## hi ## lo ## ui64
545 #define ULLC(hi,lo) 0x ## hi ## lo ## UL
[all...]
/external/chromium_org/third_party/angle/src/common/
H A Dmathutil.h74 SrcT lo = static_cast<SrcT>(std::numeric_limits<DestT>::min()); local
76 return static_cast<DestT>(value > lo ? (value > hi ? hi : value) : lo);
510 Range(T lo, T hi) : start(lo), end(hi) { ASSERT(lo <= hi); }
/external/chromium_org/third_party/libxslt/libexslt/
H A Dcrypto.c62 unsigned char lo, hi; local
65 lo = bin[i] & 0xf;
68 hex[pos++] = bin2hex[lo];
87 unsigned char lo, hi, result, tmp; local
90 hi = lo = 0;
100 lo = tmp - '0';
102 lo = 10 + (tmp - 'a');
105 result += lo;
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_conv.c420 LLVMValueRef lo, hi; local
428 lo = lp_build_pack2(gallivm, int32_type, int16_type, tmp[0], tmp[1]);
430 dst[i] = lp_build_pack2(gallivm, int16_type, dst_type, lo, hi);
475 LLVMValueRef lo, hi, a, b; local
489 lo = lp_build_pack2(gallivm, int32_type, int16_type, tmp[0], tmp[1]);
491 dst[i] = lp_build_pack2(gallivm, int16_type, dst_type, lo, hi);
H A Dlp_bld_pack.c237 * This differs to lp_build_interleave2 as that function would do the following (for lo):
247 * So interleave-lo would result in:
366 * lo = l0 __ l1 __ l2 __.. __ ln __
381 LLVMValueRef lo,
431 res = lp_build_intrinsic_binary(builder, intrinsic, intr_vec_type, lo, hi);
451 lo, i*nlen*2, nlen);
453 lo, i*nlen*2 + nlen, nlen);
480 lo = LLVMBuildBitCast(builder, lo, dst_vec_type, "");
485 res = LLVMBuildShuffleVector(builder, lo, h
378 lp_build_pack2(struct gallivm_state *gallivm, struct lp_type src_type, struct lp_type dst_type, LLVMValueRef lo, LLVMValueRef hi) argument
499 lp_build_packs2(struct gallivm_state *gallivm, struct lp_type src_type, struct lp_type dst_type, LLVMValueRef lo, LLVMValueRef hi) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/glx/
H A Ddri2.c556 vals_to_card64(CARD32 lo, CARD32 hi) argument
558 return (CARD64)hi << 32 | lo;
/external/chromium_org/third_party/npapi/npspy/extern/nspr/
H A Dprtypes.h358 PRUint32 lo, hi; member in struct:__anon14672
360 PRUint32 hi, lo;
/external/chromium_org/third_party/re2/re2/
H A Donepass.cc465 for (int c = ip->lo(); c <= ip->hi(); c++) {
483 Rune lo = max<Rune>(ip->lo(), 'a') + 'A' - 'a'; local
485 for (int c = lo; c <= hi; c++) {
565 int lo = i; local
568 StringAppendF(&dump, "\t%d: %#x-%#x\n", b, lo, i - 1);
/external/chromium_org/third_party/skia/src/core/
H A DSkFilterProc.cpp54 #define COMBINE(lo, hi) (((lo) & ~0xFF00) | (((hi) & ~0xFF00) << 8))
62 uint32_t lo = (3 * LO_PAIR(c00) + LO_PAIR(c01)) >> 2; local
64 return COMBINE(lo, hi);
67 uint32_t lo = (LO_PAIR(c00) + LO_PAIR(c01)) >> 1; local
69 return COMBINE(lo, hi);
72 uint32_t lo = (LO_PAIR(c00) + 3 * LO_PAIR(c01)) >> 2; local
74 return COMBINE(lo, hi);
78 uint32_t lo = (3 * LO_PAIR(c00) + LO_PAIR(c10)) >> 2; local
80 return COMBINE(lo, h
83 uint32_t lo = (9 * LO_PAIR(c00) + 3 * (LO_PAIR(c01) + LO_PAIR(c10)) + LO_PAIR(c11)) >> 4; local
88 uint32_t lo = (3 * (LO_PAIR(c00) + LO_PAIR(c01)) + LO_PAIR(c10) + LO_PAIR(c11)) >> 3; local
93 uint32_t lo = (9 * LO_PAIR(c01) + 3 * (LO_PAIR(c00) + LO_PAIR(c11)) + LO_PAIR(c10)) >> 4; local
99 uint32_t lo = (LO_PAIR(c00) + LO_PAIR(c10)) >> 1; local
104 uint32_t lo = (3 * (LO_PAIR(c00) + LO_PAIR(c10)) + LO_PAIR(c01) + LO_PAIR(c11)) >> 3; local
109 uint32_t lo = (LO_PAIR(c00) + LO_PAIR(c01) + LO_PAIR(c10) + LO_PAIR(c11)) >> 2; local
114 uint32_t lo = (3 * (LO_PAIR(c01) + LO_PAIR(c11)) + LO_PAIR(c00) + LO_PAIR(c10)) >> 3; local
120 uint32_t lo = (LO_PAIR(c00) + 3 * LO_PAIR(c10)) >> 2; local
125 uint32_t lo = (9 * LO_PAIR(c10) + 3 * (LO_PAIR(c00) + LO_PAIR(c11)) + LO_PAIR(c01)) >> 4; local
130 uint32_t lo = (3 * (LO_PAIR(c10) + LO_PAIR(c11)) + LO_PAIR(c00) + LO_PAIR(c01)) >> 3; local
135 uint32_t lo = (9 * LO_PAIR(c11) + 3 * (LO_PAIR(c01) + LO_PAIR(c10)) + LO_PAIR(c00)) >> 4; local
160 uint32_t lo = (3 * LO_PAIR(c00) + LO_PAIR(c01)) >> 2; local
167 uint32_t lo = (LO_PAIR(c00) + LO_PAIR(c01)) >> 1; local
174 uint32_t lo = (LO_PAIR(c00) + 3 * LO_PAIR(c01)) >> 2; local
182 uint32_t lo = (3 * LO_PAIR(c00) + LO_PAIR(c10)) >> 2; local
191 uint32_t lo = (9 * LO_PAIR(c00) + 3 * (LO_PAIR(c01) + LO_PAIR(c10)) + LO_PAIR(c11)) >> 4; local
200 uint32_t lo = (3 * (LO_PAIR(c00) + LO_PAIR(c01)) + LO_PAIR(c10) + LO_PAIR(c11)) >> 3; local
209 uint32_t lo = (9 * LO_PAIR(c01) + 3 * (LO_PAIR(c00) + LO_PAIR(c11)) + LO_PAIR(c10)) >> 4; local
217 uint32_t lo = (LO_PAIR(c00) + LO_PAIR(c10)) >> 1; local
226 uint32_t lo = (3 * (LO_PAIR(c00) + LO_PAIR(c10)) + LO_PAIR(c01) + LO_PAIR(c11)) >> 3; local
235 uint32_t lo = (LO_PAIR(c00) + LO_PAIR(c01) + LO_PAIR(c10) + LO_PAIR(c11)) >> 2; local
244 uint32_t lo = (3 * (LO_PAIR(c01) + LO_PAIR(c11)) + LO_PAIR(c00) + LO_PAIR(c10)) >> 3; local
252 uint32_t lo = (LO_PAIR(c00) + 3 * LO_PAIR(c10)) >> 2; local
261 uint32_t lo = (9 * LO_PAIR(c10) + 3 * (LO_PAIR(c00) + LO_PAIR(c11)) + LO_PAIR(c01)) >> 4; local
270 uint32_t lo = (3 * (LO_PAIR(c10) + LO_PAIR(c11)) + LO_PAIR(c00) + LO_PAIR(c01)) >> 3; local
279 uint32_t lo = (9 * LO_PAIR(c11) + 3 * (LO_PAIR(c01) + LO_PAIR(c10)) + LO_PAIR(c00)) >> 4; local
[all...]
/external/libunwind/src/ia64/
H A DGtables.c91 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
[all...]
/external/libvorbis/lib/
H A Dsharedbook.c395 /* now fill in 'unused' entries in the firsttable with hi/lo search
399 long lo=0,hi=0; local
404 while((lo+1)<n && c->codelist[lo+1]<=word)lo++;
411 unsigned long loval=lo;
/external/llvm/lib/Target/Mips/
H A DMips16InstrInfo.cpp317 // lo = offset & 0xFFFF
318 // hi = ((offset >> 16) + (lo >> 15)) & 0xFFFF;
326 int32_t lo = Imm & 0xFFFF; local
327 NewImm = lo;
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_conv.c420 LLVMValueRef lo, hi; local
428 lo = lp_build_pack2(gallivm, int32_type, int16_type, tmp[0], tmp[1]);
430 dst[i] = lp_build_pack2(gallivm, int16_type, dst_type, lo, hi);
475 LLVMValueRef lo, hi, a, b; local
489 lo = lp_build_pack2(gallivm, int32_type, int16_type, tmp[0], tmp[1]);
491 dst[i] = lp_build_pack2(gallivm, int16_type, dst_type, lo, hi);
H A Dlp_bld_pack.c237 * This differs to lp_build_interleave2 as that function would do the following (for lo):
247 * So interleave-lo would result in:
366 * lo = l0 __ l1 __ l2 __.. __ ln __
381 LLVMValueRef lo,
431 res = lp_build_intrinsic_binary(builder, intrinsic, intr_vec_type, lo, hi);
451 lo, i*nlen*2, nlen);
453 lo, i*nlen*2 + nlen, nlen);
480 lo = LLVMBuildBitCast(builder, lo, dst_vec_type, "");
485 res = LLVMBuildShuffleVector(builder, lo, h
378 lp_build_pack2(struct gallivm_state *gallivm, struct lp_type src_type, struct lp_type dst_type, LLVMValueRef lo, LLVMValueRef hi) argument
499 lp_build_packs2(struct gallivm_state *gallivm, struct lp_type src_type, struct lp_type dst_type, LLVMValueRef lo, LLVMValueRef hi) argument
[all...]
/external/mesa3d/src/glx/
H A Ddri2.c556 vals_to_card64(CARD32 lo, CARD32 hi) argument
558 return (CARD64)hi << 32 | lo;
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmssamp.c378 cmsFloat64Number lo, hi; local
526 lo = 0.1;
532 lo = 0.03;
542 if (ff >= lo && ff < hi) {
/external/qemu/distrib/sdl-1.2.15/src/video/Xext/extensions/
H A Dxf86vmode.h132 float lo; member in struct:__anon29535
/external/qemu/distrib/sdl-1.2.15/test/
H A Dtestblitspeed.c23 static int randRange(int lo, int hi) argument
25 return(lo + (int) (((double) hi)*rand()/(RAND_MAX+1.0)));

Completed in 3394 milliseconds

1234567891011>>