Home
last modified time | relevance | path

Searched refs:ByteSize (Results 1 – 9 of 9) sorted by relevance

/NextBSD/contrib/llvm/lib/DebugInfo/PDB/DIA/
HDDIASourceFile.cpp40 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/
HDThreadSanitizer.cpp145 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/
HDConstantFold.cpp212 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/
HDDwarfExpression.cpp57 unsigned ByteSize = SizeInBits / SizeOfByte; in AddOpPiece() local
58 EmitUnsigned(ByteSize); in AddOpPiece()
/NextBSD/contrib/llvm/lib/Target/PowerPC/
HDPPCISelLowering.h408 SDValue get_VSPLTI_elt(SDNode *N, unsigned ByteSize, SelectionDAG &DAG);
HDPPCISelLowering.cpp1479 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/
HDSelectionDAG.cpp1863 unsigned ByteSize = VT.getStoreSize(); in CreateStackTemporary() local
1868 int FrameIdx = FrameInfo->CreateStackObject(ByteSize, StackAlign, false); in CreateStackTemporary()
/NextBSD/contrib/llvm/lib/Target/ARM/
HDARMISelLowering.cpp6454 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/
HDX86ISelLowering.cpp11852 unsigned ByteSize = SrcVT.getSizeInBits()/8; in BuildFILD() local
11861 MachineMemOperand::MOLoad, ByteSize, ByteSize); in BuildFILD()