Home
last modified time | relevance | path

Searched refs:top12_bits (Results 1 – 3 of 3) sorted by relevance

/external/llvm-project/libc/src/math/
Dexp2f.cpp30 abstop = top12_bits(x) & 0x7ff; in LLVM_LIBC_ENTRYPOINT()
31 if (unlikely(abstop >= top12_bits(128.0f))) { in LLVM_LIBC_ENTRYPOINT()
35 if (abstop >= top12_bits(INFINITY)) in LLVM_LIBC_ENTRYPOINT()
Dexpf.cpp31 abstop = top12_bits(x) & 0x7ff; in LLVM_LIBC_ENTRYPOINT()
32 if (unlikely(abstop >= top12_bits(88.0f))) { in LLVM_LIBC_ENTRYPOINT()
36 if (abstop >= top12_bits(INFINITY)) in LLVM_LIBC_ENTRYPOINT()
Dmath_utils.h38 static inline uint32_t top12_bits(float x) { return as_uint32_bits(x) >> 20; } in top12_bits() function
40 static inline uint32_t top12_bits(double x) { return as_uint64_bits(x) >> 52; } in top12_bits() function