Home
last modified time | relevance | path

Searched refs:lo (Results 1 – 4 of 4) sorted by relevance

/device/google/contexthub/firmware/src/
DfloatRt.c128 uint32_t hi = v >> 32, lo = v; in floatFromUint64() local
131 return(float)lo; in floatFromUint64()
133 return ((float)hi) * 4294967296.0f + (float)lo; in floatFromUint64()
139 uint32_t hi = ((uint64_t)v) >> 32, lo = v; in floatFromInt64() local
141 …if ((hi == 0x00000000 && !(lo >> 31)) || (hi == 0xffffffff && (lo >> 31))) //this complex test is … in floatFromInt64()
142 return (float)(int32_t)lo; in floatFromInt64()
/device/google/contexthub/firmware/external/freebsd/lib/msun/src/
De_expf.c48 float y,hi=0.0,lo=0.0,c,t,twopk; in __ieee754_expf() local
69 hi = x-ln2HI[xsb]; lo=ln2LO[xsb]; k = 1-xsb-xsb; in __ieee754_expf()
74 lo = t*ln2LO[0]; in __ieee754_expf()
76 STRICT_ASSIGN(float, x, hi - lo); in __ieee754_expf()
91 else y = one-((lo-(x*c)/((float)2.0-c))-hi); in __ieee754_expf()
Dmath_private.h567 #define DOPRINT_END2(hi, lo) \ argument
569 (long double)(hi), (long double)(lo))
583 #define DOPRINT_END2(hi, lo) \ argument
585 (long double)(hi), (long double)(lo))
599 #define DOPRINT_END2(hi, lo) \ argument
601 (long double)(hi), (long double)(lo))
621 #define DOPRINT_END2(hi, lo) \ argument
623 (long double)(hi), (long double)(lo))
630 #define DOPRINT_END2(hi, lo) argument
653 RETURN2P((rp)->hi, (rp)->lo); \
[all …]
/device/google/accessory/demokit/app/src/com/google/android/DemoKit/
DDemoKitActivity.java251 private int composeInt(byte hi, byte lo) { in composeInt() argument
254 val += (int) lo & 0xff; in composeInt()