HomeSort by relevance Sort by last modified time
    Searched defs:high (Results 1 - 25 of 526) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libm/upstream-freebsd/lib/msun/src/
s_fabs.c 27 u_int32_t high; local
28 GET_HIGH_WORD(high,x);
29 SET_HIGH_WORD(x,high&0x7fffffff);
s_cbrtf.c 37 u_int32_t high; local
50 GET_FLOAT_WORD(high,t);
51 SET_FLOAT_WORD(t,sign|((high&0x7fffffff)/3+B2));
s_modf.c 39 if(j0<20) { /* integer part in high x */
46 u_int32_t high; local
48 GET_HIGH_WORD(high,x);
49 INSERT_WORDS(x,high&0x80000000,0); /* return +-0 */
57 u_int32_t high; local
63 GET_HIGH_WORD(high,x);
64 INSERT_WORDS(x,high&0x80000000,0); /* return +-0 */
69 u_int32_t high; local
71 GET_HIGH_WORD(high,x);
72 INSERT_WORDS(x,high&0x80000000,0); /* return +-0 *
    [all...]
e_hypot.c 121 u_int32_t high; local
123 GET_HIGH_WORD(high,t1);
124 SET_HIGH_WORD(t1,high+(k<<20));
  /external/chromium_org/third_party/skia/src/gpu/
GrTBSearch.h 21 int high = count - 1; local
23 while (high > low) {
24 int index = (low + high) >> 1;
28 high = index;
33 if (EQ(array[high], target)) {
34 return high;
38 if (LT(array[high], target)) {
39 high += 1;
41 return ~high;
  /external/skia/src/gpu/
GrTBSearch.h 21 int high = count - 1; local
23 while (high > low) {
24 int index = (low + high) >> 1;
28 high = index;
33 if (EQ(array[high], target)) {
34 return high;
38 if (LT(array[high], target)) {
39 high += 1;
41 return ~high;
  /external/arduino/hardware/arduino/cores/arduino/
wiring_analog.c 42 uint8_t low, high; local
52 // 0 to 7 (MUX5 low) or 8 to 15 (MUX5 high).
56 // set the analog reference (high two bits of ADMUX) and select the
78 high = ADCH;
82 high = 0;
86 return (high << 8) | low;
107 digitalWrite(pin, HIGH);
255 digitalWrite(pin, HIGH);
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
get_lsp_poly.c 46 int16_t high, low; local
67 high = (int16_t)WEBRTC_SPL_RSHIFT_W32(fPtr[-1], 16);
68 low = (int16_t)WEBRTC_SPL_RSHIFT_W32(fPtr[-1]-WEBRTC_SPL_LSHIFT_W32(((int32_t)high),16), 1);
70 tmpW32 = WEBRTC_SPL_LSHIFT_W32(WEBRTC_SPL_MUL_16_16(high, (*lspPtr)), 2) +
  /external/clang/test/CodeGen/
2002-09-18-UnionProblem.c 5 char high, low; member in struct:DWstruct
18 rr.s.high = n1;
22 rr.s.high = bm;
2005-09-24-BitFieldCrash.c 9 long long high; member in struct:tree_int_cst::tree_int_cst_lowhi
  /external/compiler-rt/lib/builtins/
floatdidf.c 40 const double high = (int32_t)(a >> 32) * twop32; local
43 const double result = (high - twop52) + low.d;
101 fb.u.high = ((su_int)s & 0x80000000) | /* sign */
103 ((su_int)(a >> 32) & 0x000FFFFF); /* mantissa-high */
floatundidf.c 39 union { uint64_t x; double d; } high = { .d = twop84 }; local
42 high.x |= a >> 32;
45 const double result = (high.d - twop84_plus_twop52) + low.d;
101 fb.u.high = ((e + 1023) << 20) | /* exponent */
102 ((su_int)(a >> 32) & 0x000FFFFF); /* mantissa-high */
  /external/compiler-rt/lib/builtins/ppc/
floatunditf.c 18 doublebits high = { .d = twop84 }; local
21 high.x |= a >> 32; /* 0x1.0p84 + high 32 bits of a */
24 const double high_addend = high.d - twop84_plus_twop52;
  /external/oprofile/module/ia64/
op_ia64_model.h 18 uint high; member in struct:op_saved_msr
  /art/compiler/utils/arm/
managed_register_arm.cc 30 Register high = AsRegisterPairHigh(); local
32 ArmManagedRegister::FromCoreRegister(high).Overlaps(other);
38 SRegister high = AsOverlappingDRegisterHigh(); local
40 return (low == other_sreg) || (high == other_sreg);
  /art/compiler/utils/arm64/
managed_register_arm64.cc 87 int high = RegNo(); local
89 high += kNumberOfCoreRegIds + kNumberOfWRegIds;
91 return high;
  /art/compiler/utils/mips/
managed_register_mips.cc 31 Register high = AsRegisterPairHigh(); local
33 MipsManagedRegister::FromCoreRegister(high).Overlaps(other);
39 FRegister high = AsOverlappingDRegisterHigh(); local
41 return (low == other_freg) || (high == other_freg);
  /art/compiler/utils/x86/
managed_register_x86.cc 43 Register high; member in struct:art::x86::RegisterPairDescriptor
48 #define REGISTER_PAIR_ENUMERATION(low, high) { low##_##high, low, high },
65 Register high = AsRegisterPairHigh(); local
67 X86ManagedRegister::FromCpuRegister(high).Overlaps(other);
90 return kRegisterPairs[r].high;
  /art/compiler/utils/x86_64/
managed_register_x86_64.cc 42 Register high; member in struct:art::x86_64::RegisterPairDescriptor
47 #define REGISTER_PAIR_ENUMERATION(low, high) { low##_##high, low, high },
64 Register high = AsRegisterPairHigh().AsRegister(); local
66 X86_64ManagedRegister::FromCpuRegister(high).Overlaps(other);
89 return kRegisterPairs[r].high;
  /cts/tests/tests/media/src/android/media/cts/
CameraProfileTest.java 31 private void checkQuality(int low, int mid, int high) {
32 Log.v(TAG, "low = " + low + ", mid = " + mid + ", high = " + high);
35 assertTrue(high >= 0 && high <= 100);
36 assertTrue(low <= mid && mid <= high);
42 int high = CameraProfile.getJpegEncodingQualityParameter(CameraProfile.QUALITY_HIGH); local
43 checkQuality(low, mid, high);
51 int high = CameraProfile.getJpegEncodingQualityParameter(id, CameraProfile.QUALITY_HIGH); local
52 checkQuality(low, mid, high);
    [all...]
  /external/e2fsprogs/e2fsck/
dx_dirinfo.c 83 int low, high, mid; local
86 high = ctx->dx_dir_info_count-1;
91 if (ino == ctx->dx_dir_info[high].ino)
92 return &ctx->dx_dir_info[high];
94 while (low < high) {
95 mid = (low+high)/2;
96 if (mid == low || mid == high)
101 high = mid;
  /external/e2fsprogs/lib/uuid/
uuid_time.c 60 uint32_t high; local
65 high = uuid.time_mid | ((uuid.time_hi_and_version & 0xFFF) << 16);
66 clock_reg = uuid.time_low | ((uint64_t) high << 32);
  /external/qemu/util/
host-utils.c 39 uint32_t high, low; member in struct:__anon13946::__anon13947
41 uint32_t low, high;
52 rm.ll = (uint64_t)a0.l.low * b0.l.high;
53 rn.ll = (uint64_t)a0.l.high * b0.l.low;
54 rh.ll = (uint64_t)a0.l.high * b0.l.high;
56 c = (uint64_t)rl.l.high + rm.l.low + rn.l.low;
57 rl.l.high = c;
59 c = c + rm.l.high + rn.l.high + rh.l.low
    [all...]
  /external/valgrind/main/memcheck/tests/s390x/
cds.c 5 uint64_t high; member in struct:__anon16757
35 val.high = 0;
49 op3.high = op3.low = 0xdeadbeefdeadbabeull;
58 op1.high = op1.low = 42;
60 op3.high = op3.low = 0xdeadbeefdeadbabeull;
69 op1.high = op1.low = 42;
cdsg.c 5 uint64_t high; member in struct:__anon16758
37 op2.high = op2.low = 42;
38 op3.high = op3.low = 0xdeadbeefdeadbabeull;
46 op1.high = op1.low = 42;
48 op3.high = op3.low = 0xdeadbeefdeadbabeull;
56 op1.high = op1.low = 42;

Completed in 705 milliseconds

1 2 3 4 5 6 7 8 91011>>