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

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/StdLib/LibC/Math/
s_fabs.c 28 u_int32_t high; local
29 GET_HIGH_WORD(high,x);
30 SET_HIGH_WORD(x,high&0x7fffffff);
s_modf.c 40 if(j0<20) { /* integer part in high x */
47 u_int32_t high; local
49 GET_HIGH_WORD(high,x);
50 INSERT_WORDS(x,high&0x80000000,0); /* return +-0 */
58 u_int32_t high; local
60 GET_HIGH_WORD(high,x);
61 INSERT_WORDS(x,high&0x80000000,0); /* return +-0 */
66 u_int32_t high; local
68 GET_HIGH_WORD(high,x);
69 INSERT_WORDS(x,high&0x80000000,0); /* return +-0 */
    [all...]
  /device/google/contexthub/firmware/lib/builtins/
aeabi_f2ulz.c 24 su_int high = da / 4294967296.f; /* da / 0x1p32f; */ local
25 su_int low = da - (float)high * 4294967296.f; /* high * 0x1p32f; */
26 return ((du_int)high << 32) | low;
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/m32r/
uppercase.s 7 high: label
8 seth r0,#HIGH(high)
  /external/compiler-rt/lib/builtins/
fixunssfdi.c 26 su_int high = da / 4294967296.f; /* da / 0x1p32f; */ local
27 su_int low = da - (double)high * 4294967296.f; /* high * 0x1p32f; */
28 return ((du_int)high << 32) | low;
floatdidf.c 40 const double high = (int32_t)(a >> 32) * twop32; local
43 const double result = (high - twop52) + low.d;
101 fb.u.s.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.s.high = ((e + 1023) << 20) | /* exponent */
102 ((su_int)(a >> 32) & 0x000FFFFF); /* mantissa-high */
  /external/strace/tests/
llseek.c 39 const unsigned long high = 0xfacefeed; local
44 long rc = syscall(__NR__llseek, -1, high, low, &result, SEEK_SET);
  /external/strace/tests-m32/
llseek.c 39 const unsigned long high = 0xfacefeed; local
44 long rc = syscall(__NR__llseek, -1, high, low, &result, SEEK_SET);
  /external/strace/tests-mx32/
llseek.c 39 const unsigned long high = 0xfacefeed; local
44 long rc = syscall(__NR__llseek, -1, high, low, &result, SEEK_SET);
  /bionic/libm/upstream-freebsd/lib/msun/src/
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...]
  /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;
  /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/elfutils/tests/
dwfl-bug-addr-overflow.c 47 Dwfl_Module *high = dwfl_report_module (dwfl, "high", local
50 assert (high);
64 assert (mod == high);
  /external/libmojo/mojo/common/
common_custom_types_struct_traits.cc 45 uint64_t high = data.high(); local
49 if (high == 0 && low == 0)
52 *out = base::UnguessableToken::Deserialize(high, low);
common_custom_types_struct_traits.h 53 static uint64_t high(const base::UnguessableToken& token) { function in struct:mojo::StructTraits
  /external/libvpx/libvpx/vpx_dsp/ppc/
bitdepth_conversion_vsx.h 38 const int32x4_t high = vec_mergeh(even, odd); local
40 vec_vsx_st(high, c, s);
  /external/syslinux/com32/hdt/
hdt-menu-dmi.c 274 uint32_t high = dmi->ipmi.base_address >> 32; 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
67 high = (int16_t)(fPtr[-1] >> 16);
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 73 size_t high = PROTO_FORMAT_FIELDS_LENGTH - 1; local
75 while (low <= high) {
76 size_t mid = (low + high) >> 1;
83 high = mid - 1;
  /toolchain/binutils/binutils-2.27/gas/
flonum.h 53 LITTLENUM_TYPE *high; /* high order littlenum of a bignum */ member in struct:FLONUM_STRUCT
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-powerpc/
vle-reloc-def-2.s 35 .globl high
36 high: label
  /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 79 int high = RegNo(); local
81 high += kNumberOfXRegIds + kNumberOfWRegIds;
83 return high;

Completed in 637 milliseconds

1 2 3 4 5 6 7 8 91011>>