/external/skia/src/animator/ |
SkTime.cpp | 75 s.set(wide.hi, wide.lo);
|
/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
real.h | 366 #define REAL_VALUE_FROM_INT(r, lo, hi, mode) \ 367 real_from_integer (&(r), mode, lo, hi, 0) 369 #define REAL_VALUE_FROM_UNSIGNED_INT(r, lo, hi, mode) \ 370 real_from_integer (&(r), mode, lo, hi, 1)
|
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
real.h | 366 #define REAL_VALUE_FROM_INT(r, lo, hi, mode) \ 367 real_from_integer (&(r), mode, lo, hi, 0) 369 #define REAL_VALUE_FROM_UNSIGNED_INT(r, lo, hi, mode) \ 370 real_from_integer (&(r), mode, lo, hi, 1)
|
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
real.h | 366 #define REAL_VALUE_FROM_INT(r, lo, hi, mode) \ 367 real_from_integer (&(r), mode, lo, hi, 0) 369 #define REAL_VALUE_FROM_UNSIGNED_INT(r, lo, hi, mode) \ 370 real_from_integer (&(r), mode, lo, hi, 1)
|
/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
real.h | 366 #define REAL_VALUE_FROM_INT(r, lo, hi, mode) \ 367 real_from_integer (&(r), mode, lo, hi, 0) 369 #define REAL_VALUE_FROM_UNSIGNED_INT(r, lo, hi, mode) \ 370 real_from_integer (&(r), mode, lo, hi, 1)
|
/system/core/libpixelflinger/ |
fixed.cpp | 260 uint32_t hi = ab>>32; local 265 if (hi >= c) { 268 } else if (hi == 0) { 273 uint32_t r = hi;
|
/external/chromium_org/third_party/re2/re2/ |
prog.h | 90 void InitByteRange(int lo, int hi, int foldcase, uint32 out); 104 int hi() { DCHECK_EQ(opcode(), kInstByteRange); return hi_; } function in class:re2::Prog::Inst 224 // lo-hi (inclusive) are treated as different from bytes outside the range. 227 void MarkByteRange(int lo, int hi);
|
/external/oprofile/libpp/ |
format_output.cpp | 781 size_t & detail_index, size_t const lo, size_t const hi) 783 if (!has_sample_counts(symb->sample.counts, lo, hi)) 793 for (size_t p = lo; p <= hi; ++p) { 837 symbol_entry const * symb, size_t lo, size_t hi, bool is_module) 846 for (size_t p = lo; p <= hi; ++p) { 876 string detail_str = output_symbol_details(symb, sd.index, lo, hi); 945 size_t lo, size_t hi, bool is_module, tag_t tag) 958 for (size_t p = lo; p <= hi; ++p) 1002 symbol_entry const * symb, size_t lo, size_t hi, bool is_module) 1009 for (size_t p = lo; p <= hi; ++p [all...] |
/external/regex-re2/re2/ |
prog.h | 90 void InitByteRange(int lo, int hi, int foldcase, uint32 out); 104 int hi() { DCHECK_EQ(opcode(), kInstByteRange); return hi_; } function in class:re2::Prog::Inst 224 // lo-hi (inclusive) are treated as different from bytes outside the range. 227 void MarkByteRange(int lo, int hi);
|
/frameworks/av/media/libstagefright/codecs/amrwb/src/ |
pvamrwb_math_op.cpp | 51 int16 hi, lo : L_32 = hi<<16 + lo<<1 (DPF - Double Precision Format) 560 * L_32 = hi<<16 + lo<<1 * 563 * hi and lo are 16 bit signed integers. * 584 * hi : b16 to b31 of L_32 585 * lo : (L_32 - hi<<16)>>1 589 void int32_to_dpf(int32 L_32, int16 *hi, int16 *lo) 591 *hi = (int16)(L_32 >> 16); 592 *lo = (int16)((L_32 - (*hi << 16)) >> 1); 609 * hi1 hi part of first numbe [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
mhlib.py | 825 for lo, hi in self.pairs: 826 if lo == hi: t = repr(lo) 827 else: t = repr(lo) + self.rng + repr(hi) 834 for lo, hi in self.pairs: 835 m = range(lo, hi+1) 855 for lo, hi in self.pairs: 856 if lo <= x <= hi: return True 861 lo, hi = self.pairs[i] 864 self.pairs[i] = (x, hi) 874 if x <= hi: # Already in se [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
mhlib.py | 825 for lo, hi in self.pairs: 826 if lo == hi: t = repr(lo) 827 else: t = repr(lo) + self.rng + repr(hi) 834 for lo, hi in self.pairs: 835 m = range(lo, hi+1) 855 for lo, hi in self.pairs: 856 if lo <= x <= hi: return True 861 lo, hi = self.pairs[i] 864 self.pairs[i] = (x, hi) 874 if x <= hi: # Already in se [all...] |
/external/chromium_org/third_party/skia/src/utils/ |
SkParseColor.cpp | 405 int hi = colorNameSize - 3; // back off to beginning of yellowgreen local 406 while (lo <= hi) { 407 int mid = (hi + lo) >> 1; 425 } else if (hi == mid) 428 hi = mid;
|
/external/libvorbis/lib/ |
sharedbook.c | 395 /* now fill in 'unused' entries in the firsttable with hi/lo search 399 long lo=0,hi=0; local 405 while( hi<n && word>=(c->codelist[hi]&mask))hi++; 412 unsigned long hival=n-hi;
|
/external/skia/src/utils/ |
SkParseColor.cpp | 405 int hi = colorNameSize - 3; // back off to beginning of yellowgreen local 406 while (lo <= hi) { 407 int mid = (hi + lo) >> 1; 425 } else if (hi == mid) 428 hi = mid;
|
/external/chromium_org/third_party/icu/source/common/ |
bmpset.cpp | 233 int32_t BMPSet::findCodePoint(UChar32 c, int32_t lo, int32_t hi) const { 250 if (lo >= hi || c >= list[hi-1]) 251 return hi; 253 // invariant: c < list[hi] 255 int32_t i = (lo + hi) >> 1; 259 hi = i; 264 return hi;
|
/external/chromium_org/v8/test/cctest/ |
test-strtod.cc | 431 static uint32_t hi = 0; local 436 if (hi == 0) hi = 0xbfe166e7; 440 hi = 36969 * (hi & 0xFFFF) + (hi >> 16); 442 return (hi << 16) + (lo & 0xFFFF);
|
/external/icu4c/common/ |
bmpset.cpp | 242 int32_t BMPSet::findCodePoint(UChar32 c, int32_t lo, int32_t hi) const { 259 if (lo >= hi || c >= list[hi-1]) 260 return hi; 262 // invariant: c < list[hi] 264 int32_t i = (lo + hi) >> 1; 268 hi = i; 273 return hi;
|
/external/v8/test/cctest/ |
test-strtod.cc | 406 static uint32_t hi = 0; local 411 if (hi == 0) hi = 0xbfe166e7; 415 hi = 36969 * (hi & 0xFFFF) + (hi >> 16); 417 return (hi << 16) + (lo & 0xFFFF);
|
/external/valgrind/main/VEX/priv/ |
guest_amd64_helpers.c | 413 DATA_UTYPE hi; \ 421 hi = NARROWtoU(rr >>/*u*/ DATA_BITS); \ 422 cf = (hi != 0); \ 439 DATA_STYPE hi; \ 447 hi = NARROWtoS(rr >>/*s*/ DATA_BITS); \ 448 cf = (hi != (lo >>/*s*/ (DATA_BITS-1))); \ 464 ULong lo, hi; \ 465 mullU64( (ULong)CC_DEP1, (ULong)CC_DEP2, &hi, &lo ); \ 466 cf = (hi != 0); \ 482 Long lo, hi; \ 2784 ULong hi, lo, tmp, A[16]; local [all...] |
/external/chromium_org/third_party/icu/source/tools/tzcode/ |
localtime.c | 1296 register int hi = sp->timecnt; local 1688 register time_t hi; local [all...] |
/external/icu4c/tools/tzcode/ |
localtime.c | 1296 register int hi = sp->timecnt; local 1688 register time_t hi; local [all...] |
/external/valgrind/main/exp-sgcheck/ |
pc_common.c | 148 Addr hi; member in struct:__anon30790::__anon30791::__anon30795 204 Addr lo, Addr hi, Seg* seglo, Seg* seghi ) 211 xe.XE.SysParam.hi = hi; 544 Addr hi = xe->XE.SysParam.hi; local 610 hi, hi-Seg__addr(seghi), Seg__size(seghi) ); 634 hi, hi-Seg__addr(seghi), Seg__size(seghi) ) [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/aes/asm/ |
aes-x86_64.pl | 64 sub hi() { my $r=shift; $r =~ s/%[er]([a-d])x/%\1h/; $r; } subroutine 102 movzb `&hi("$s1")`,$acc0 103 movzb `&hi("$s2")`,$acc1 109 movzb `&hi("$s3")`,$acc0 111 movzb `&hi("$s0")`,$acc2 127 movzb `&hi("$s3")`,$acc0 128 movzb `&hi("$s0")`,$acc1 135 movzb `&hi("$s1")`,$acc1 136 movzb `&hi("$s2")`,$acc2 162 movzb `&hi("$s1")`,$acc [all...] |
/external/openssl/crypto/aes/asm/ |
aes-x86_64.pl | 64 sub hi() { my $r=shift; $r =~ s/%[er]([a-d])x/%\1h/; $r; } subroutine 102 movzb `&hi("$s1")`,$acc0 103 movzb `&hi("$s2")`,$acc1 109 movzb `&hi("$s3")`,$acc0 111 movzb `&hi("$s0")`,$acc2 127 movzb `&hi("$s3")`,$acc0 128 movzb `&hi("$s0")`,$acc1 135 movzb `&hi("$s1")`,$acc1 136 movzb `&hi("$s2")`,$acc2 162 movzb `&hi("$s1")`,$acc [all...] |