/third_party/node/deps/v8/src/codegen/arm64/ |
H A D | instructions-arm64.h | 186 uint32_t bit6 = (bits >> 6) & 0x1; in Imm8ToFP32() local 188 uint32_t result = (bit7 << 31) | ((32 - bit6) << 25) | (bit5_to_0 << 19); in Imm8ToFP32() 200 uint64_t bit6 = (bits >> 6) & 0x1; in Imm8ToFP64() local 202 uint64_t result = (bit7 << 63) | ((256 - bit6) << 54) | (bit5_to_0 << 48); in Imm8ToFP64()
|
H A D | assembler-arm64.cc | 3576 // bit6: 0b00.0000 in FPToImm8() 3577 uint64_t bit6 = ((bits >> 61) & 0x1) << 6; in FPToImm8() local 3581 return static_cast<uint32_t>(bit7 | bit6 | bit5_to_0); in FPToImm8()
|
/third_party/vixl/src/aarch64/ |
H A D | instructions-aarch64.cc | 778 uint16_t bit6 = (bits >> 6) & 0x1; in Imm8ToFloat16() local 780 uint16_t result = (bit7 << 15) | ((4 - bit6) << 12) | (bit5_to_0 << 6); in Imm8ToFloat16() 791 uint32_t bit6 = (bits >> 6) & 0x1; in Imm8ToFP32() local 793 uint32_t result = (bit7 << 31) | ((32 - bit6) << 25) | (bit5_to_0 << 19); in Imm8ToFP32() 812 uint64_t bit6 = (bits >> 6) & 0x1; in Imm8ToFP64() local 814 uint64_t result = (bit7 << 63) | ((256 - bit6) << 54) | (bit5_to_0 << 48); in Imm8ToFP64()
|
H A D | assembler-aarch64.cc | 5837 // bit6: 0b00.0000 5838 uint16_t bit6 = ((bits >> 13) & 0x1) << 6; 5841 uint32_t result = static_cast<uint32_t>(bit7 | bit6 | bit5_to_0); 5857 // bit6: 0b00.0000 5858 uint32_t bit6 = ((bits >> 29) & 0x1) << 6; 5862 return bit7 | bit6 | bit5_to_0; 5876 // bit6: 0b00.0000 5877 uint64_t bit6 = ((bits >> 61) & 0x1) << 6; 5881 return static_cast<uint32_t>(bit7 | bit6 | bit5_to_0);
|
/third_party/astc-encoder/Source/ |
H A D | astcenc_color_unquantize.cpp | 333 int bit6 = (v3 >> 5) & 1; in hdr_rgbo_unpack() local 347 scale |= bit6 << 5; in hdr_rgbo_unpack() 371 red |= bit6 << 9; in hdr_rgbo_unpack()
|
H A D | astcenc_color_quantize.cpp | 1157 int bit6; in quantize_hdr_rgbo() local 1161 bit6 = (r_intval >> 9) & 1; in quantize_hdr_rgbo() 1164 bit6 = (s_intval >> 5) & 1; in quantize_hdr_rgbo() 1191 s_lowbits |= bit6 << 5; in quantize_hdr_rgbo()
|
/third_party/vixl/src/ |
H A D | utils-vixl.h | 841 // bit6: 0b00.0000 842 uint32_t bit6 = ((bits >> 29) & 0x1) << 6; 845 return static_cast<uint32_t>(bit7 | bit6 | bit5_to_0); 853 // bit6: 0b00.0000 854 uint64_t bit6 = ((bits >> 61) & 0x1) << 6; 858 return static_cast<uint32_t>(bit7 | bit6 | bit5_to_0); 866 uint32_t bit6 = (bits >> 6) & 0x1; 868 uint32_t result = (bit7 << 31) | ((32 - bit6) << 25) | (bit5_to_0 << 19); 879 uint64_t bit6 = (bits >> 6) & 0x1; 881 uint64_t result = (bit7 << 63) | ((256 - bit6) << 5 [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/astc-encoder/Source/ |
H A D | astc_color_unquantize.cpp | 396 int bit6 = (v3 >> 5) & 1; in hdr_rgbo_unpack3() local 410 scale |= bit6 << 5; in hdr_rgbo_unpack3() 434 red |= bit6 << 9; in hdr_rgbo_unpack3()
|
/third_party/node/deps/v8/src/codegen/mips/ |
H A D | assembler-mips.cc | 1203 int32_t offset9, int bit6, in GenInstrImmediate() 1206 is_uint1(bit6)); in GenInstrImmediate() 1208 ((offset9 << kImm9Shift) & kImm9Mask) | bit6 << kBit6Shift | in GenInstrImmediate() 1202 GenInstrImmediate(Opcode opcode, Register base, Register rt, int32_t offset9, int bit6, SecondaryField func) GenInstrImmediate() argument
|
H A D | assembler-mips.h | 1711 int32_t offset9, int bit6, SecondaryField func);
|
/third_party/node/deps/v8/src/codegen/mips64/ |
H A D | assembler-mips64.cc | 1132 int32_t offset9, int bit6, in GenInstrImmediate() 1135 is_uint1(bit6)); in GenInstrImmediate() 1137 ((offset9 << kImm9Shift) & kImm9Mask) | bit6 << kBit6Shift | in GenInstrImmediate() 1131 GenInstrImmediate(Opcode opcode, Register base, Register rt, int32_t offset9, int bit6, SecondaryField func) GenInstrImmediate() argument
|
H A D | assembler-mips64.h | 1747 int32_t offset9, int bit6, SecondaryField func);
|
/third_party/node/deps/simdutf/ |
H A D | simdutf.cpp | 19199 __mmask64 bit6 = _mm512_cmpeq_epi8_mask(highbits, one); 19201 _mm512_mask_sub_epi8(input, (bit6 << 1) | *next_bit6_ptr, input, minus64); 19202 *next_bit6_ptr = bit6 >> 63; 19285 __mmask64 bit6 = _mm512_cmpeq_epi8_mask(highbits, one); 19287 _mm512_mask_sub_epi8(input, (bit6 << 1) | *next_bit6_ptr, input, minus64); 19288 *next_bit6_ptr = bit6 >> 63; [all...] |