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

1 2 3 4 5 6 7 8 91011>>

  /external/skia/src/gpu/
GrTBSearch.h 23 int low = 0; local
24 while (high > low) {
25 int index = (low + high) >> 1;
27 low = index + 1;
  /external/compiler-rt/lib/ppc/
floatditf.c 15 doublebits low = { .d = twop52 }; local
16 low.x |= a & UINT64_C(0x00000000ffffffff); /* 0x1.0p52 + low 32 bits of a. */
21 * high_addend and low.d, and we wish to return their sum
31 result.s.hi = high_addend + low.d;
32 result.s.lo = (high_addend - result.s.hi) + low.d;
floatunditf.c 19 doublebits low = { .d = twop52 }; local
22 low.x |= a & UINT64_C(0x00000000ffffffff); /* 0x1.0p52 + low 32 bits of a */
27 * high_addend and low.d, and we wish to return their sum
36 result.s.hi = high_addend + low.d;
37 result.s.lo = (high_addend - result.s.hi) + low.d;
  /frameworks/compile/libbcc/runtime/lib/ppc/
floatditf.c 16 doublebits low = { .d = twop52 }; local
17 low.x |= a & UINT64_C(0x00000000ffffffff); /* 0x1.0p52 + low 32 bits of a. */
22 * high_addend and low.d, and we wish to return their sum
32 result.s.hi = high_addend + low.d;
33 result.s.lo = (high_addend - result.s.hi) + low.d;
floatunditf.c 20 doublebits low = { .d = twop52 }; local
23 low.x |= a & UINT64_C(0x00000000ffffffff); /* 0x1.0p52 + low 32 bits of a */
28 * high_addend and low.d, and we wish to return their sum
37 result.s.hi = high_addend + low.d;
38 result.s.lo = (high_addend - result.s.hi) + low.d;
  /frameworks/support/volley/tests/src/com/android/volley/
RequestTest.java 34 TestRequest low = new TestRequest(Priority.LOW); local
35 low.setSequence(sequence++);
36 TestRequest low2 = new TestRequest(Priority.LOW);
43 // "Low" should sort higher because it's really processing order.
44 assertTrue(low.compareTo(high) > 0);
45 assertTrue(high.compareTo(low) < 0);
46 assertTrue(low.compareTo(low2) < 0);
47 assertTrue(low.compareTo(immediate) > 0);
  /external/clang/test/CodeGen/
2002-09-18-UnionProblem.c 5 char high, low; member in struct:DWstruct
2005-09-24-BitFieldCrash.c 8 unsigned long long low; member in struct:tree_int_cst::tree_int_cst_lowhi
  /external/elfutils/tests/
dwfl-bug-addr-overflow.c 59 Dwfl_Module *low = dwfl_report_module (dwfl, "low", local
62 assert (low);
74 assert (mod == low);
  /external/oprofile/module/ia64/
op_ia64_model.h 19 uint low; member in struct:op_saved_msr
  /bionic/libm/src/
e_hypot.c 70 u_int32_t low; local
72 GET_LOW_WORD(low,a);
73 if(((ha&0xfffff)|low)==0) w = a;
74 GET_LOW_WORD(low,b);
75 if(((hb^0x7ff00000)|low)==0) w = b;
85 u_int32_t low; local
86 GET_LOW_WORD(low,b);
87 if((hb|low)==0) return a;
s_atan.c 81 u_int32_t low; local
82 GET_LOW_WORD(low,x);
84 (ix==0x7ff00000&&(low!=0)))
s_cbrt.c 42 u_int32_t high,low; local
48 GET_LOW_WORD(low,x);
49 if((hx|low)==0)
  /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);
33 assertTrue(low >= 0 && low <= 100);
36 assertTrue(low <= mid && mid <= high);
40 int low = CameraProfile.getJpegEncodingQualityParameter(CameraProfile.QUALITY_LOW); local
43 checkQuality(low, mid, high);
49 int low = CameraProfile.getJpegEncodingQualityParameter(id, CameraProfile.QUALITY_LOW); local
52 checkQuality(low, mid, high)
    [all...]
  /external/compiler-rt/lib/
floatdidf.c 38 union { int64_t x; double d; } low = { .d = twop52 }; local
41 low.x |= a & INT64_C(0x00000000ffffffff);
43 const double result = (high - twop52) + low.d;
104 fb.u.low = (su_int)a; /* mantissa-low */
floatundidf.c 41 union { uint64_t x; double d; } low = { .d = twop52 }; local
44 low.x |= a & UINT64_C(0x00000000ffffffff);
46 const double result = (high.d - twop84_plus_twop52) + low.d;
104 fb.u.low = (su_int)a; /* mantissa-low */
  /external/e2fsprogs/e2fsck/
dx_dirinfo.c 83 int low, high, mid; local
85 low = 0;
89 if (ino == ctx->dx_dir_info[low].ino)
90 return &ctx->dx_dir_info[low];
94 while (low < high) {
95 mid = (low+high)/2;
96 if (mid == low || mid == high)
103 low = mid;
  /frameworks/av/media/libmedia/
autodetect.cpp 851 int low = 0; local
854 while (low < high) {
855 int i = (low + high) / 2;
860 low = i + 1;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
omxVCM4P2_DecodePadMV_PVOP.c 96 OMX_S16 high, low, range; local
135 low = ( (-32) * scaleFactor);
211 if ( pDstMVCurMB[iBlk].dx < low )
220 if ( pDstMVCurMB[iBlk].dy < low )
  /frameworks/compile/libbcc/runtime/lib/
floatdidf.c 38 union { int64_t x; double d; } low = { .d = twop52 }; local
41 low.x |= a & INT64_C(0x00000000ffffffff);
43 const double result = (high - twop52) + low.d;
104 fb.u.low = (su_int)a; /* mantissa-low */
floatundidf.c 41 union { uint64_t x; double d; } low = { .d = twop52 }; local
44 low.x |= a & UINT64_C(0x00000000ffffffff);
46 const double result = (high.d - twop84_plus_twop52) + low.d;
104 fb.u.low = (su_int)a; /* mantissa-low */
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
double-int.h 56 unsigned HOST_WIDE_INT low; member in struct:__anon20370
76 r.low = (unsigned HOST_WIDE_INT) cst;
98 r.low = cst;
154 return cst.low == 0 && cst.high == 0;
162 return cst.low == 1 && cst.high == 0;
170 return (cst.low == ALL_ONES && cst.high == -1);
178 return cst1.low == cst2.low && cst1.high == cst2.high;
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
double-int.h 56 unsigned HOST_WIDE_INT low; member in struct:__anon20755
72 r.low = (unsigned HOST_WIDE_INT) cst;
94 r.low = cst;
106 return (HOST_WIDE_INT) cst.low;
115 return cst.low;
163 a.low = ~a.low;
173 a.low |= b.low;
183 a.low &= b.low
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
double-int.h 56 unsigned HOST_WIDE_INT low; member in struct:__anon21599
72 r.low = (unsigned HOST_WIDE_INT) cst;
94 r.low = cst;
106 return (HOST_WIDE_INT) cst.low;
115 return cst.low;
163 a.low = ~a.low;
173 a.low |= b.low;
183 a.low &= b.low
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
double-int.h 56 unsigned HOST_WIDE_INT low; member in struct:__anon21992
72 r.low = (unsigned HOST_WIDE_INT) cst;
94 r.low = cst;
106 return (HOST_WIDE_INT) cst.low;
115 return cst.low;
163 a.low = ~a.low;
173 a.low |= b.low;
183 a.low &= b.low
    [all...]

Completed in 1080 milliseconds

1 2 3 4 5 6 7 8 91011>>