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

/freebsd-11.0-release/contrib/llvm/lib/DebugInfo/PDB/DIA/
H A DDIASourceFile.cpp40 DWORD ByteSize = 0; local
41 HRESULT Result = SourceFile->get_checksum(0, &ByteSize, nullptr);
42 if (ByteSize == 0)
44 std::vector<BYTE> ChecksumBytes(ByteSize);
45 Result = SourceFile->get_checksum(ByteSize, &ByteSize, &ChecksumBytes[0]);
/freebsd-11.0-release/contrib/llvm/lib/Transforms/Instrumentation/
H A DThreadSanitizer.cpp145 const unsigned ByteSize = 1U << i; local
146 const unsigned BitSize = ByteSize * 8;
147 std::string ByteSizeStr = utostr(ByteSize);
514 const unsigned ByteSize = 1U << Idx; local
515 const unsigned BitSize = ByteSize * 8;
528 const unsigned ByteSize = 1U << Idx; local
529 const unsigned BitSize = ByteSize * 8;
545 const unsigned ByteSize = 1U << Idx; local
546 const unsigned BitSize = ByteSize * 8;
559 const unsigned ByteSize local
[all...]
/freebsd-11.0-release/contrib/llvm/lib/IR/
H A DConstantFold.cpp204 /// first byte used, counting from the least significant byte) and ByteSize,
212 unsigned ByteSize) {
217 assert(ByteSize && "Must be accessing some piece");
218 assert(ByteStart+ByteSize <= CSize && "Extracting invalid piece from input");
219 assert(ByteSize != CSize && "Should not extract everything");
226 V = V.trunc(ByteSize*8);
238 Constant *RHS = ExtractConstantBytes(CE->getOperand(1), ByteStart,ByteSize);
247 Constant *LHS = ExtractConstantBytes(CE->getOperand(0), ByteStart,ByteSize);
253 Constant *RHS = ExtractConstantBytes(CE->getOperand(1), ByteStart,ByteSize);
261 Constant *LHS = ExtractConstantBytes(CE->getOperand(0), ByteStart,ByteSize);
211 ExtractConstantBytes(Constant *C, unsigned ByteStart, unsigned ByteSize) argument
[all...]
/freebsd-11.0-release/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfExpression.cpp57 unsigned ByteSize = SizeInBits / SizeOfByte; local
58 EmitUnsigned(ByteSize);
/freebsd-11.0-release/contrib/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.h411 /// size, return the constant being splatted. The ByteSize field indicates
413 SDValue get_VSPLTI_elt(SDNode *N, unsigned ByteSize, SelectionDAG &DAG);
H A DPPCISelLowering.cpp1497 /// the constant being splatted. The ByteSize field indicates the number of
1499 SDValue PPC::get_VSPLTI_elt(SDNode *N, unsigned ByteSize, SelectionDAG &DAG) { argument
1502 // If ByteSize of the splat is bigger than the element size of the
1507 if (EltSize < ByteSize) {
1508 unsigned Multiple = ByteSize/EltSize; // Number of BV entries per spltval.
1581 if (ValSizeInBytes < ByteSize) return SDValue();
1584 // of a repeated bit pattern of size ByteSize.
1585 if (!APInt(ValSizeInBytes * 8, Value).isSplat(ByteSize * 8))
1589 int MaskVal = SignExtend32(Value, ByteSize * 8);
/freebsd-11.0-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp1884 unsigned ByteSize = VT.getStoreSize(); local
1889 int FrameIdx = FrameInfo->CreateStackObject(ByteSize, StackAlign, false);
/freebsd-11.0-release/contrib/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp6737 const uint64_t ByteSize = DL.getTypeAllocSize(RetTy); local
6739 int FrameIdx = FrameInfo->CreateStackObject(ByteSize, StackAlign, false);
/freebsd-11.0-release/contrib/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp12750 unsigned ByteSize = SrcVT.getSizeInBits()/8;
12758 MachineMemOperand::MOLoad, ByteSize, ByteSize);
[all...]

Completed in 323 milliseconds