Searched refs:hi_word (Results 1 - 6 of 6) sorted by relevance
/third_party/node/deps/v8/src/codegen/ppc/ |
H A D | assembler-ppc-inl.h | 388 int hi_word = static_cast<int>(offset >> 16); in PatchConstantPoolAccessInstruction() local 390 if (lo_word & 0x8000) hi_word++; in PatchConstantPoolAccessInstruction() 395 instr1 |= (hi_word & kImm16Mask); in PatchConstantPoolAccessInstruction() 493 int hi_word = itarget >> 16; in set_target_address_at() 495 instr1 |= hi_word; in set_target_address_at()
|
H A D | assembler-ppc.cc | 1403 int hi_word = static_cast<int>(hi_32 >> 16); in bitwise_mov() local 1405 lis(dst, Operand(SIGN_EXT_IMM16(hi_word))); in bitwise_mov() 1408 hi_word = static_cast<int>(((lo_32 >> 16) & 0xFFFF)); in bitwise_mov() 1410 oris(dst, dst, Operand(hi_word)); in bitwise_mov() 1413 int hi_word = static_cast<int>(value >> 16); in bitwise_mov() local 1415 lis(dst, Operand(SIGN_EXT_IMM16(hi_word))); in bitwise_mov() 1422 int hi_word = static_cast<int>(value >> 16); in bitwise_mov32() local 1424 lis(dst, Operand(SIGN_EXT_IMM16(hi_word))); in bitwise_mov32() 1434 int hi_word = static_cast<int>(value >> 16); in bitwise_add32() local 1436 if (lo_word & 0x8000) hi_word in bitwise_add32() [all...] |
H A D | macro-assembler-ppc.h | 905 inline void TestIfInt32(Register hi_word, Register lo_word, Register scratch, in TestIfInt32() argument 909 CmpS64(scratch, hi_word, cr); in TestIfInt32()
|
/third_party/skia/third_party/externals/spirv-tools/source/val/ |
H A D | validate_type.cpp | 39 const uint32_t hi_word = const_words[4]; // Must exist, per spec. in ConstantLiteralAsInt64() local 40 return static_cast<int64_t>(uint64_t(lo_word) | uint64_t(hi_word) << 32); in ConstantLiteralAsInt64()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/ |
H A D | validate_type.cpp | 39 const uint32_t hi_word = const_words[4]; // Must exist, per spec. in ConstantLiteralAsInt64() local 40 return static_cast<int64_t>(uint64_t(lo_word) | uint64_t(hi_word) << 32); in ConstantLiteralAsInt64()
|
/third_party/spirv-tools/source/val/ |
H A D | validate_type.cpp | 38 const uint32_t hi_word = const_words[4]; // Must exist, per spec. in ConstantLiteralAsInt64() local 39 return static_cast<int64_t>(uint64_t(lo_word) | uint64_t(hi_word) << 32); in ConstantLiteralAsInt64()
|
Completed in 11 milliseconds