Searched refs:endBit (Results 1 – 5 of 5) sorted by relevance
/external/fonttools/Lib/fontTools/ttLib/tables/ |
D | E_B_D_T_.py | 527 endBit = min(curBit+8, bitRange[1]) 528 numBits = endBit - curBit 531 secondByteLoc = endBit // 8 535 numBitsCut = endBit - curBit 566 endBit = min(curBit+8, bitRange[1]) 569 secondByteLoc = endBit // 8 573 numBitsCut = endBit - curBit
|
/external/v8/src/s390/ |
D | macro-assembler-s390.cc | 361 const Operand& startBit, const Operand& endBit, in RotateInsertSelectBits() argument 366 Operand(static_cast<intptr_t>(endBit.immediate() | 0x80)), shiftAmt); in RotateInsertSelectBits() 368 risbg(dst, src, startBit, endBit, shiftAmt); in RotateInsertSelectBits() 3029 int endBit = 63 - trailing_zeros; in AndP() local 3031 RotateInsertSelectBits(dst, src, Operand(startBit), Operand(endBit), in AndP() 3037 int endBit = 63 - trailing_zeros; in AndP() local 3038 RotateInsertSelectBits(dst, src, Operand::Zero(), Operand(endBit), in AndP() 4255 int endBit = 63 - numBitsToClear; in ClearRightImm() local 4256 RotateInsertSelectBits(dst, src, Operand::Zero(), Operand(endBit), in ClearRightImm()
|
D | macro-assembler-s390.h | 221 const Operand& startBit, const Operand& endBit, 906 int endBit = 63; // End is always LSB after shifting. in ExtractBitRange() local 908 RotateInsertSelectBits(dst, src, Operand(startBit), Operand(endBit), in ExtractBitRange()
|
D | assembler-s390.h | 1231 const Operand& endBit, const Operand& shiftAmt) { \ 1233 DCHECK(is_uint8(endBit.immediate())); \ 1236 endBit.immediate(), shiftAmt.immediate()); \
|
/external/v8/src/compiler/s390/ |
D | code-generator-s390.cc | 1811 int endBit = 63 - shiftAmount; in AssembleArchInstruction() local 1814 Operand(startBit), Operand(endBit), Operand(shiftAmount), true); in AssembleArchInstruction() 1828 int endBit = 63; in AssembleArchInstruction() local 1831 Operand(startBit), Operand(endBit), Operand(shiftAmount), true); in AssembleArchInstruction() 1843 int endBit = 63 - i.InputInt32(2); in AssembleArchInstruction() local 1846 Operand(startBit), Operand(endBit), Operand(shiftAmount), true); in AssembleArchInstruction()
|