/external/skia/src/core/ |
Sk64.cpp | 11 #define shift_left(hi, lo) \ 12 hi = (hi << 1) | (lo >> 31); \ 15 #define shift_left_bits(hi, lo, bits) \ 17 hi = (hi << (bits)) | (lo >> (32 - (bits))); \ 24 int32_t hi = fHi; local 28 if (hi < 0) 30 hi = -hi - Sk32ToBool(lo) 106 int32_t hi = fHi; local 194 int32_t hi = fHi; local 271 uint32_t hi = fHi; local [all...] |
SkBitmapProcState_filter.h | 33 uint32_t hi = ((a00 >> 8) & mask) * scale; local 37 hi += ((a01 >> 8) & mask) * scale; 41 hi += ((a10 >> 8) & mask) * scale; 44 hi += ((a11 >> 8) & mask) * xy; 46 *dstColor = ((lo >> 8) & mask) | (hi & ~mask); 63 uint32_t hi = ((a00 >> 8) & mask) * scale; local 67 hi += ((a01 >> 8) & mask) * scale; 71 hi += ((a10 >> 8) & mask) * scale; 74 hi += ((a11 >> 8) & mask) * xy; 77 hi = ((hi >> 8) & mask) * alphaScale 93 uint32_t hi = ((color0 >> 8) & mask) * scale; local 115 uint32_t hi = ((color0 >> 8) & mask) * scale; local [all...] |
SkTSearch.cpp | 28 int hi = count - 1; local 30 while (lo < hi) 32 int mid = (hi + lo) >> 1; 39 hi = mid; 44 const char* elem = index_into_base(base, hi, elemSize); 49 hi += 1; 50 hi = ~hi; 52 return hi;
|
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/ |
l_comp.cpp | 34 hi = 16 bit signed integer (Word16) whose value falls in 35 the range : 0x8000 <= hi <= 0x7fff. 41 L_out = 32-bit result of (hi<<16 + lo<<1). 56 format (DPF) numbers hi and lo by the following operation: 57 1. Deposit hi into the 16 MS bits of the 32 bit output L_out. 142 Word32 L_Comp(Word16 hi, Word16 lo, Flag *pOverflow) 154 L_32 = L_deposit_h(hi); 161 return (temp32); /* = hi<<16 + lo<<1 */
|
/frameworks/support/v4/java/android/support/v4/util/ |
ContainerHelpers.java | 47 int hi = size - 1; local 49 while (lo <= hi) { 50 int mid = (lo + hi) >>> 1; 56 hi = mid - 1; 66 int hi = size - 1; local 68 while (lo <= hi) { 69 final int mid = (lo + hi) >>> 1; 75 hi = mid - 1;
|
/external/chromium_org/third_party/skia/src/core/ |
SkBitmapProcState_filter.h | 33 uint32_t hi = ((a00 >> 8) & mask) * scale; local 37 hi += ((a01 >> 8) & mask) * scale; 41 hi += ((a10 >> 8) & mask) * scale; 44 hi += ((a11 >> 8) & mask) * xy; 46 *dstColor = ((lo >> 8) & mask) | (hi & ~mask); 63 uint32_t hi = ((a00 >> 8) & mask) * scale; local 67 hi += ((a01 >> 8) & mask) * scale; 71 hi += ((a10 >> 8) & mask) * scale; 74 hi += ((a11 >> 8) & mask) * xy; 77 hi = ((hi >> 8) & mask) * alphaScale 93 uint32_t hi = ((color0 >> 8) & mask) * scale; local 115 uint32_t hi = ((color0 >> 8) & mask) * scale; local [all...] |
SkTSearch.cpp | 28 int hi = count - 1; local 30 while (lo < hi) 32 int mid = (hi + lo) >> 1; 39 hi = mid; 44 const char* elem = index_into_base(base, hi, elemSize); 49 hi += 1; 50 hi = ~hi; 52 return hi;
|
/external/chromium_org/third_party/npapi/npspy/extern/nspr/ |
prlong.h | 83 #define LL_INIT(hi, lo) ((hi ## L << 32) + lo ## L) 85 #define LL_INIT(hi, lo) ((hi ## i64 << 32) + lo ## i64) 87 #define LL_INIT(hi, lo) ((hi ## LL << 32) + lo ## LL) 202 #define LL_INIT(hi, lo) {PR_INT32(lo), PR_INT32(hi)} 204 #define LL_INIT(hi, lo) {PR_INT32(hi), PR_INT32(lo) [all...] |
/bionic/libm/upstream-freebsd/lib/msun/src/ |
e_log10f.c | 36 float f,hfsq,hi,lo,r,y; local 66 hi = f - hfsq; 67 GET_FLOAT_WORD(hx,hi); 68 SET_FLOAT_WORD(hi,hx&0xfffff000); 69 lo = (f - hi) - hfsq + r; 70 return y*log10_2lo + (lo+hi)*ivln10lo + lo*ivln10hi + hi*ivln10hi +
|
e_log2f.c | 34 float f,hfsq,hi,lo,r,y; local 77 hi = f - hfsq; 78 GET_FLOAT_WORD(hx,hi); 79 SET_FLOAT_WORD(hi,hx&0xfffff000); 80 lo = (f - hi) - hfsq + r; 81 return (lo+hi)*ivln2lo + lo*ivln2hi + hi*ivln2hi + y;
|
/external/chromium_org/third_party/re2/util/ |
benchmark.h | 14 int hi; member in struct:testing::Benchmark 20 Benchmark(const char* name, void (*f)(int, int), int l, int h) { Clear(name); fnr = f; lo = l; hi = h; Register(); } 21 void Clear(const char* n) { name = n; fn = 0; fnr = 0; lo = 0; hi = 0; threadlo = 0; threadhi = 0; } 22 Benchmark* ThreadRange(int lo, int hi) { threadlo = lo; threadhi = hi; return this; } 37 #define BENCHMARK_RANGE(f, lo, hi) \ 39 (new ::testing::Benchmark(#f, f, lo, hi))
|
random.cc | 16 uint32 hi = A * (int32)((uint32)seed_ >> 16); local 17 lo += (hi & 0x7FFF) << 16; 22 lo += hi >> 15;
|
/external/regex-re2/util/ |
benchmark.h | 14 int hi; member in struct:testing::Benchmark 20 Benchmark(const char* name, void (*f)(int, int), int l, int h) { Clear(name); fnr = f; lo = l; hi = h; Register(); } 21 void Clear(const char* n) { name = n; fn = 0; fnr = 0; lo = 0; hi = 0; threadlo = 0; threadhi = 0; } 22 Benchmark* ThreadRange(int lo, int hi) { threadlo = lo; threadhi = hi; return this; } 37 #define BENCHMARK_RANGE(f, lo, hi) \ 39 (new ::testing::Benchmark(#f, f, lo, hi))
|
random.cc | 16 uint32 hi = A * (int32)((uint32)seed_ >> 16); local 17 lo += (hi & 0x7FFF) << 16; 22 lo += hi >> 15;
|
/external/srec/srec/cfront/ |
himul32.h | 104 asr_int32_t hi; 112 return result.pieces.hi; 127 asr_uint32_t hi, lo, mid; 154 hi = xhi * yhi; 158 // high part of mid to the low part of hi: 161 // xxxxxxxx xxxxxxxx hi 164 // xxxxxxxx xxxxxxxx hi 175 hi += carry + (mid >> 16); 184 hi = ~hi; [all...] |
/external/chromium_org/third_party/npapi/npspy/extern/java/ |
jri_md.h | 282 juint lo, hi; member in struct:__anon16199 284 juint hi, lo; 291 #define jlong_IS_ZERO(a) (((a).hi == 0) && ((a).lo == 0)) 292 #define jlong_EQ(a, b) (((a).hi == (b).hi) && ((a).lo == (b).lo)) 293 #define jlong_NE(a, b) (((a).hi != (b).hi) || ((a).lo != (b).lo)) 294 #define jlong_GE_ZERO(a) (((a).hi >> 31) == 0) 299 #define jlong_CMP(a, op, b) (((int32)(a).hi op (int32)(b).hi) || \ [all...] |
/external/chromium_org/third_party/skia/src/animator/ |
SkGetCondensedInfo.cpp | 24 int hi = count - 1; local 25 while (lo < hi) { 26 int mid = (hi + lo) >> 1; 30 hi = mid; 32 if (strcmp(&strings[lengths[hi << 2]], target) != 0) 34 return hi; 40 int hi = kTypeIDs - 1; local 41 while (lo < hi) { 42 int mid = (hi + lo) >> 1; 46 hi = mid [all...] |
/external/skia/src/animator/ |
SkGetCondensedInfo.cpp | 24 int hi = count - 1; local 25 while (lo < hi) { 26 int mid = (hi + lo) >> 1; 30 hi = mid; 32 if (strcmp(&strings[lengths[hi << 2]], target) != 0) 34 return hi; 40 int hi = kTypeIDs - 1; local 41 while (lo < hi) { 42 int mid = (hi + lo) >> 1; 46 hi = mid [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/ |
sync.h | 131 int hi; member in struct:_XSyncValue 226 #define _XSyncIntToValue(pv, i) ((pv)->hi=((i<0)?~0:0),(pv)->lo=(i)) 227 #define _XSyncIntsToValue(pv, l, h) ((pv)->lo = (l), (pv)->hi = (h)) 229 ((a).hi>(b).hi || ((a).hi==(b).hi && (a).lo>(b).lo)) 231 ((a).hi<(b).hi || ((a).hi==(b).hi && (a).lo<(b).lo) [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/ |
sync.h | 131 int hi; member in struct:_XSyncValue 226 #define _XSyncIntToValue(pv, i) ((pv)->hi=((i<0)?~0:0),(pv)->lo=(i)) 227 #define _XSyncIntsToValue(pv, l, h) ((pv)->lo = (l), (pv)->hi = (h)) 229 ((a).hi>(b).hi || ((a).hi==(b).hi && (a).lo>(b).lo)) 231 ((a).hi<(b).hi || ((a).hi==(b).hi && (a).lo<(b).lo) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/ |
sync.h | 131 int hi; member in struct:_XSyncValue 226 #define _XSyncIntToValue(pv, i) ((pv)->hi=((i<0)?~0:0),(pv)->lo=(i)) 227 #define _XSyncIntsToValue(pv, l, h) ((pv)->lo = (l), (pv)->hi = (h)) 229 ((a).hi>(b).hi || ((a).hi==(b).hi && (a).lo>(b).lo)) 231 ((a).hi<(b).hi || ((a).hi==(b).hi && (a).lo<(b).lo) [all...] |
/external/chromium_org/third_party/skia/include/core/ |
Sk64.h | 46 int32_t hi = fHi; local 48 hi += 1; 50 return (hi << 16) | (sum >> 16); 97 void set(int32_t hi, uint32_t lo) { fHi = hi; fLo = lo; } 131 int32_t hi = lo >> 31; // 0 or -1 local 134 fHi = fHi + hi + (sum < fLo); 139 void add(int32_t hi, uint32_t lo) { 142 fHi = fHi + hi + (sum < fLo); 176 /** return (this + Sk64(hi, lo) >> 16) as a 32bit result * [all...] |
/external/skia/include/core/ |
Sk64.h | 46 int32_t hi = fHi; local 48 hi += 1; 50 return (hi << 16) | (sum >> 16); 97 void set(int32_t hi, uint32_t lo) { fHi = hi; fLo = lo; } 131 int32_t hi = lo >> 31; // 0 or -1 local 134 fHi = fHi + hi + (sum < fLo); 139 void add(int32_t hi, uint32_t lo) { 142 fHi = fHi + hi + (sum < fLo); 176 /** return (this + Sk64(hi, lo) >> 16) as a 32bit result * [all...] |
/dalvik/vm/compiler/template/mips/ |
TEMPLATE_MUL_LONG.S | 25 addu rRESULT1,rRESULT1,t1 # v1= a3a0 + hi(a2a0) 26 addu rRESULT1,rRESULT1,t0 # v1= a3a0 + hi(a2a0) + a2a1;
|
/external/compiler-rt/lib/ |
fp_lib.h | 42 static inline void wideMultiply(rep_t a, rep_t b, rep_t *hi, rep_t *lo) { 44 *hi = product >> 32; 73 static inline void wideMultiply(rep_t a, rep_t b, rep_t *hi, rep_t *lo) { 83 // Sum terms contributing to hi with the carry from lo 84 *hi = hiWord(plohi) + hiWord(philo) + hiWord(r1) + phihi; 122 static inline void wideLeftShift(rep_t *hi, rep_t *lo, int count) { 123 *hi = *hi << count | *lo >> (typeWidth - count); 127 static inline void wideRightShiftWithSticky(rep_t *hi, rep_t *lo, unsigned int count) { 130 *lo = *hi << (typeWidth - count) | *lo >> count | sticky [all...] |