Home
last modified time | relevance | path

Searched refs:hi (Results 1 – 5 of 5) sorted by relevance

/device/google/contexthub/firmware/src/
DfloatRt.c128 uint32_t hi = v >> 32, lo = v; in floatFromUint64() local
130 if (!hi) //this is very fast for cases where we fit into a uint32_t 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()
143 …else if (hi >> 31) //the case of 0x8000000000000000 is handled here, as negated it remains the sa… 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()
73 hi = x - t*ln2HI[0]; /* t*ln2HI is exact here */ 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
652 RETURNP((rp)->hi); \
[all …]
/device/google/contexthub/firmware/src/cpu/cortexm4f/
Dcpu.c208 uint32_t i, hi; in logHardFault() local
219 cpuPackSrBits(&dbx->sr_hfsr_cfsr_lo, &hi, excRegs[7], SCB->HFSR, SCB->CFSR); in logHardFault()
220 dbx->magic |= HARD_FAULT_DROPBOX_MAGIC_HAVE_DROP | (hi & HARD_FAULT_DROPBOX_MAGIC_DATA_MASK); in logHardFault()
/device/google/accessory/demokit/app/src/com/google/android/DemoKit/
DDemoKitActivity.java251 private int composeInt(byte hi, byte lo) { in composeInt() argument
252 int val = (int) hi & 0xff; in composeInt()