Searched refs:ByteSize (Results 1 – 9 of 9) sorted by relevance
| /NextBSD/contrib/llvm/lib/DebugInfo/PDB/DIA/ |
| HD | DIASourceFile.cpp | 40 DWORD ByteSize = 0; in getChecksum() local 41 HRESULT Result = SourceFile->get_checksum(0, &ByteSize, nullptr); in getChecksum() 42 if (ByteSize == 0) in getChecksum() 44 std::vector<BYTE> ChecksumBytes(ByteSize); in getChecksum() 45 Result = SourceFile->get_checksum(ByteSize, &ByteSize, &ChecksumBytes[0]); in getChecksum()
|
| /NextBSD/contrib/llvm/lib/Transforms/Instrumentation/ |
| HD | ThreadSanitizer.cpp | 145 const size_t ByteSize = 1 << i; in initializeCallbacks() local 146 const size_t BitSize = ByteSize * 8; in initializeCallbacks() 147 SmallString<32> ReadName("__tsan_read" + itostr(ByteSize)); in initializeCallbacks() 151 SmallString<32> WriteName("__tsan_write" + itostr(ByteSize)); in initializeCallbacks() 156 itostr(ByteSize)); in initializeCallbacks() 162 itostr(ByteSize)); in initializeCallbacks() 516 const size_t ByteSize = 1 << Idx; in instrumentAtomic() local 517 const size_t BitSize = ByteSize * 8; in instrumentAtomic() 530 const size_t ByteSize = 1 << Idx; in instrumentAtomic() local 531 const size_t BitSize = ByteSize * 8; in instrumentAtomic() [all …]
|
| /NextBSD/contrib/llvm/lib/IR/ |
| HD | ConstantFold.cpp | 212 unsigned ByteSize) { in ExtractConstantBytes() argument 217 assert(ByteSize && "Must be accessing some piece"); in ExtractConstantBytes() 218 assert(ByteStart+ByteSize <= CSize && "Extracting invalid piece from input"); in ExtractConstantBytes() 219 assert(ByteSize != CSize && "Should not extract everything"); in ExtractConstantBytes() 226 V = V.trunc(ByteSize*8); in ExtractConstantBytes() 238 Constant *RHS = ExtractConstantBytes(CE->getOperand(1), ByteStart,ByteSize); in ExtractConstantBytes() 247 Constant *LHS = ExtractConstantBytes(CE->getOperand(0), ByteStart,ByteSize); in ExtractConstantBytes() 253 Constant *RHS = ExtractConstantBytes(CE->getOperand(1), ByteStart,ByteSize); in ExtractConstantBytes() 261 Constant *LHS = ExtractConstantBytes(CE->getOperand(0), ByteStart,ByteSize); in ExtractConstantBytes() 279 ByteSize*8)); in ExtractConstantBytes() [all …]
|
| /NextBSD/contrib/llvm/lib/CodeGen/AsmPrinter/ |
| HD | DwarfExpression.cpp | 57 unsigned ByteSize = SizeInBits / SizeOfByte; in AddOpPiece() local 58 EmitUnsigned(ByteSize); in AddOpPiece()
|
| /NextBSD/contrib/llvm/lib/Target/PowerPC/ |
| HD | PPCISelLowering.h | 408 SDValue get_VSPLTI_elt(SDNode *N, unsigned ByteSize, SelectionDAG &DAG);
|
| HD | PPCISelLowering.cpp | 1479 SDValue PPC::get_VSPLTI_elt(SDNode *N, unsigned ByteSize, SelectionDAG &DAG) { in get_VSPLTI_elt() argument 1487 if (EltSize < ByteSize) { in get_VSPLTI_elt() 1488 unsigned Multiple = ByteSize/EltSize; // Number of BV entries per spltval. in get_VSPLTI_elt() 1561 if (ValSizeInBytes < ByteSize) return SDValue(); in get_VSPLTI_elt() 1565 if (!APInt(ValSizeInBytes * 8, Value).isSplat(ByteSize * 8)) in get_VSPLTI_elt() 1569 int MaskVal = SignExtend32(Value, ByteSize * 8); in get_VSPLTI_elt()
|
| /NextBSD/contrib/llvm/lib/CodeGen/SelectionDAG/ |
| HD | SelectionDAG.cpp | 1863 unsigned ByteSize = VT.getStoreSize(); in CreateStackTemporary() local 1868 int FrameIdx = FrameInfo->CreateStackObject(ByteSize, StackAlign, false); in CreateStackTemporary()
|
| /NextBSD/contrib/llvm/lib/Target/ARM/ |
| HD | ARMISelLowering.cpp | 6454 const uint64_t ByteSize = DL.getTypeAllocSize(RetTy); in LowerFSINCOS() local 6456 int FrameIdx = FrameInfo->CreateStackObject(ByteSize, StackAlign, false); in LowerFSINCOS()
|
| /NextBSD/contrib/llvm/lib/Target/X86/ |
| HD | X86ISelLowering.cpp | 11852 unsigned ByteSize = SrcVT.getSizeInBits()/8; in BuildFILD() local 11861 MachineMemOperand::MOLoad, ByteSize, ByteSize); in BuildFILD()
|