Home
last modified time | relevance | path

Searched refs:current_bit (Results 1 – 8 of 8) sorted by relevance

/external/llvm-project/libc/utils/FPUtil/
DSqrtLongDoubleX86.h101 for (UIntType current_bit = One >> 1; current_bit; current_bit >>= 1) { variable
103 UIntType tmp = (y << 1) + current_bit; // 2*y(n - 1) + 2^(-n-1)
106 y += current_bit;
DSqrt.h147 for (UIntType current_bit = One >> 1; current_bit; current_bit >>= 1) { in sqrt() local
149 UIntType tmp = (y << 1) + current_bit; // 2*y(n - 1) + 2^(-n-1) in sqrt()
152 y += current_bit; in sqrt()
DHypot.h224 for (UIntType current_bit = leading_one >> 1; current_bit;
225 current_bit >>= 1) {
226 R = (R << 1) + ((tailBits & current_bit) ? 1 : 0);
227 UIntType tmp = (Y << 1) + current_bit; // 2*y(n - 1) + 2^(-n)
230 Y += current_bit;
/external/llvm-project/openmp/runtime/src/
Dkmp_utility.cpp70 unsigned current_bit; in __kmp_get_logical_id() local
78 for (current_bit = 1; log_per_phy != 0; current_bit <<= 1) { in __kmp_get_logical_id()
79 if (log_per_phy & current_bit) { in __kmp_get_logical_id()
80 log_per_phy &= ~current_bit; in __kmp_get_logical_id()
87 current_bit >>= 1; in __kmp_get_logical_id()
90 return ((int)((current_bit - 1) & apic_id)); in __kmp_get_logical_id()
/external/harfbuzz_ng/src/
Dgen-os2-unicode-ranges.py30 current_bit = 0 variable
37 current_bit = fields[0] variable
47 v = tuple((int(ranges[0], 16), int(ranges[1], 16), int(current_bit), name))
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dfold_spec_constant_op_and_composite_pass.cpp365 for (uint32_t current_bit = bits_per_word; current_bit < bit_width; in EncodeIntegerAsWords() local
366 current_bit += bits_per_word) { in EncodeIntegerAsWords()
/external/deqp-deps/SPIRV-Tools/source/opt/
Dfold_spec_constant_op_and_composite_pass.cpp365 for (uint32_t current_bit = bits_per_word; current_bit < bit_width; in EncodeIntegerAsWords() local
366 current_bit += bits_per_word) { in EncodeIntegerAsWords()
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/opt/
Dfold_spec_constant_op_and_composite_pass.cpp365 for (uint32_t current_bit = bits_per_word; current_bit < bit_width; in EncodeIntegerAsWords() local
366 current_bit += bits_per_word) { in EncodeIntegerAsWords()