Searched refs:hi_word (Results 1 – 5 of 5) sorted by relevance
/external/v8/src/ppc/ |
D | assembler-ppc-inl.h | 393 int hi_word = static_cast<int>(offset >> 16); in PatchConstantPoolAccessInstruction() local 395 if (lo_word & 0x8000) hi_word++; in PatchConstantPoolAccessInstruction() 400 instr1 |= (hi_word & kImm16Mask); in PatchConstantPoolAccessInstruction() 500 int hi_word = itarget >> 16; in set_target_address_at() 502 instr1 |= hi_word; in set_target_address_at()
|
D | assembler-ppc.cc | 1404 int hi_word = static_cast<int>(hi_32 >> 16); in bitwise_mov() local 1406 lis(dst, Operand(SIGN_EXT_IMM16(hi_word))); in bitwise_mov() 1409 hi_word = static_cast<int>(((lo_32 >> 16) & 0xFFFF)); in bitwise_mov() 1411 oris(dst, dst, Operand(hi_word)); in bitwise_mov() 1414 int hi_word = static_cast<int>(value >> 16); in bitwise_mov() local 1416 lis(dst, Operand(SIGN_EXT_IMM16(hi_word))); in bitwise_mov() 1424 int hi_word = static_cast<int>(value >> 16); in bitwise_mov32() local 1426 lis(dst, Operand(SIGN_EXT_IMM16(hi_word))); in bitwise_mov32() 1437 int hi_word = static_cast<int>(value >> 16); in bitwise_add32() local 1439 if (lo_word & 0x8000) hi_word++; in bitwise_add32() [all …]
|
D | macro-assembler-ppc.h | 599 inline void TestIfInt32(Register hi_word, Register lo_word, Register scratch, 603 cmp(scratch, hi_word, cr);
|
/external/deqp-deps/SPIRV-Tools/source/val/ |
D | validate_type.cpp | 38 const uint32_t hi_word = const_words[4]; // Must exist, per spec. in AboveZero() local 39 if (is_signed && (hi_word >> 31)) return false; in AboveZero() 40 return (lo_word | hi_word) > 0; in AboveZero()
|
/external/swiftshader/third_party/SPIRV-Tools/source/val/ |
D | validate_type.cpp | 39 const uint32_t hi_word = const_words[4]; // Must exist, per spec. in AboveZero() local 40 if (is_signed && (hi_word >> 31)) return false; in AboveZero() 41 return (lo_word | hi_word) > 0; in AboveZero()
|