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

1 2 3 4 5 6 7 8 91011>>

  /external/fec/
sumsq_sse2_assist.s 20 movaps low,%xmm3 # load mask
38 movd %xmm0,%eax # low 32 bits of sum
49 low: .byte 255,255,255,255,0,0,0,0,255,255,255,255,0,0,0,0 label
  /device/google/contexthub/firmware/lib/builtins/
aeabi_f2ulz.c 25 su_int low = da - (float)high * 4294967296.f; /* high * 0x1p32f; */ local
26 return ((du_int)high << 32) | low;
  /external/compiler-rt/lib/builtins/
fixunsdfdi.c 26 su_int low = a - (double)high * 4294967296.f; /* high * 0x1p32f; */ local
27 return ((du_int)high << 32) | low;
fixunssfdi.c 27 su_int low = da - (double)high * 4294967296.f; /* high * 0x1p32f; */ local
28 return ((du_int)high << 32) | low;
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.s.low = (su_int)a; /* mantissa-low */
floatundidf.c 40 union { uint64_t x; double d; } low = { .d = twop52 }; local
43 low.x |= a & UINT64_C(0x00000000ffffffff);
45 const double result = (high.d - twop84_plus_twop52) + low.d;
103 fb.u.s.low = (su_int)a; /* mantissa-low */
  /external/toybox/toys/other/
ascii.c 23 char *low="NULSOHSTXETXEOTENQACKBELBS HT LF VT FF CR SO SI DLEDC1DC2DC3DC4" local
35 if (i<32 || i==127) printf("%.3s ", (i==127) ? "DEL" : low+3*i);
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/m32r/
uppercase.s 11 low: label
12 or3 r0,r0,#LOW(low)
  /external/compiler-rt/lib/builtins/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;
  /external/strace/tests/
llseek.c 40 const unsigned long low = 0xdeadbeef; local
44 long rc = syscall(__NR__llseek, -1, high, low, &result, SEEK_SET);
  /external/strace/tests-m32/
llseek.c 40 const unsigned long low = 0xdeadbeef; local
44 long rc = syscall(__NR__llseek, -1, high, low, &result, SEEK_SET);
  /external/strace/tests-mx32/
llseek.c 40 const unsigned long low = 0xdeadbeef; local
44 long rc = syscall(__NR__llseek, -1, high, low, &result, SEEK_SET);
  /external/volley/src/test/java/com/android/volley/
RequestTest.java 31 TestRequest low = new TestRequest(Priority.LOW); local
32 low.setSequence(sequence++);
33 TestRequest low2 = new TestRequest(Priority.LOW);
40 // "Low" should sort higher because it's really processing order.
41 assertTrue(low.compareTo(high) > 0);
42 assertTrue(high.compareTo(low) < 0);
43 assertTrue(low.compareTo(low2) < 0);
44 assertTrue(low.compareTo(immediate) > 0);
  /external/clang/test/CodeGen/
2002-09-18-UnionProblem.c 5 char high, low; member in struct:DWstruct
  /external/elfutils/tests/
dwfl-bug-addr-overflow.c 51 Dwfl_Module *low = dwfl_report_module (dwfl, "low", local
54 assert (low);
66 assert (mod == low);
  /external/libmojo/mojo/common/
common_custom_types_struct_traits.cc 46 uint64_t low = data.low(); local
49 if (high == 0 && low == 0)
52 *out = base::UnguessableToken::Deserialize(high, low);
common_custom_types_struct_traits.h 57 static uint64_t low(const base::UnguessableToken& token) { function in struct:mojo::StructTraits
  /external/libvpx/libvpx/vpx_dsp/ppc/
bitdepth_conversion_vsx.h 39 const int32x4_t low = vec_mergel(even, odd); local
41 vec_vsx_st(low, c, s + 4);
  /external/syslinux/com32/hdt/
hdt-menu-dmi.c 275 uint32_t low = dmi->ipmi.base_address & 0xFFFF; local
278 high, (low & ~1));
280 high, (low & ~1));
  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
get_lsp_poly.c 46 int16_t high, low; local
68 low = (int16_t)((fPtr[-1] - ((int32_t)high << 16)) >> 1);
70 tmpW32 = ((high * *lspPtr) << 2) + (((low * *lspPtr) >> 15) << 2);
  /frameworks/base/tools/incident_report/
formatter.cpp 72 size_t low = 0; local
75 while (low <= high) {
76 size_t mid = (low + high) >> 1;
81 low = mid + 1;
  /toolchain/binutils/binutils-2.27/gas/
flonum.h 40 * Exponent is the place value of the low littlenum. E.g.: *
41 * If 0: low points to the units littlenum. *
42 * If 1: low points to the LITTLENUM_RADIX littlenum. *
43 * If -1: low points to the 1/LITTLENUM_RADIX littlenum. *
52 LITTLENUM_TYPE *low; /* low order littlenum of a bignum */ member in struct:FLONUM_STRUCT
55 /* If flonum is 0.0, leader==low-1 */
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-powerpc/
vle-reloc-def-2.s 31 .globl low
32 low: label
  /art/compiler/utils/arm/
managed_register_arm.cc 29 Register low = AsRegisterPairLow(); local
31 return ArmManagedRegister::FromCoreRegister(low).Overlaps(other) ||
37 SRegister low = AsOverlappingDRegisterLow(); local
40 return (low == other_sreg) || (high == other_sreg);
54 int low; local
57 low = (r * 2) + kNumberOfCoreRegIds; // Return a SRegister.
60 low = (r - kNumberOfDRegIds) * 2; // Return a Register.
61 if (low > 6) {
63 low = 1;
66 return low;
    [all...]

Completed in 759 milliseconds

1 2 3 4 5 6 7 8 91011>>