Home
last modified time | relevance | path

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

/netbsd-src/sys/external/bsd/gnu-efi/dist/lib/
H A Dmisc.c248 OUT UINTN *VarSize in LibGetVariableAndSize() argument
279 *VarSize = BufferSize; in LibGetVariableAndSize()
281 *VarSize = 0; in LibGetVariableAndSize()
292 UINTN VarSize; in LibGetVariable() local
294 return LibGetVariableAndSize (Name, VendorGuid, &VarSize); in LibGetVariable()
378 UINTN VarSize; in LibInsertToTailOfBootOrder() local
382 BootOptionArray = LibGetVariableAndSize (VarBootOrder, &EfiGlobalVariable, &VarSize); in LibInsertToTailOfBootOrder()
383 if (VarSize != 0 && OnlyInsertIfEmpty) { in LibInsertToTailOfBootOrder()
390 VarSize += sizeof(UINT16); in LibInsertToTailOfBootOrder()
391 NewBootOptionArray = AllocatePool (VarSize); in LibInsertToTailOfBootOrder()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGOpenMPRuntime.h639 CharUnits VarSize; variable
649 unsigned Order, llvm::Constant *Addr, CharUnits VarSize, in OffloadEntryInfoDeviceGlobalVar() argument
653 VarSize(VarSize), Linkage(Linkage) { in OffloadEntryInfoDeviceGlobalVar()
657 CharUnits getVarSize() const { return VarSize; } in getVarSize()
658 void setVarSize(CharUnits Size) { VarSize = Size; } in setVarSize()
674 CharUnits VarSize,
H A DCGCUDANV.cpp582 uint64_t VarSize = in makeRegisterGlobalsFn() local
604 llvm::ConstantInt::get(VarSizeTy, VarSize), in makeRegisterGlobalsFn()
615 llvm::ConstantInt::get(VarSizeTy, VarSize), in makeRegisterGlobalsFn()
H A DCGOpenMPRuntime.cpp3064 CharUnits VarSize, in registerDeviceGlobalVarEntryInfo() argument
3074 Entry.setVarSize(VarSize); in registerDeviceGlobalVarEntryInfo()
3079 Entry.setVarSize(VarSize); in registerDeviceGlobalVarEntryInfo()
3088 Entry.setVarSize(VarSize); in registerDeviceGlobalVarEntryInfo()
3094 VarName, OffloadingEntriesNum, Addr, VarSize, Flags, Linkage); in registerDeviceGlobalVarEntryInfo()
10598 CharUnits VarSize = CGM.getContext().getTypeSizeInChars(Ty); in registerTargetFirstprivateCopy() local
10601 VarName, Addr, VarSize, in registerTargetFirstprivateCopy()
10632 CharUnits VarSize; in registerTargetGlobalVariable() local
10640 VarSize = CGM.getContext().getTypeSizeInChars(VD->getType()); in registerTargetGlobalVariable()
10641 assert(!VarSize.isZero() && "Expected non-zero size of the variable"); in registerTargetGlobalVariable()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp477 uint64_t VarSize) { in transferSRADebugInfo() argument
485 if (FragmentSizeInBits < VarSize) { in transferSRADebugInfo()
510 uint64_t VarSize = DL.getTypeSizeInBits(Ty); in SRAGlobal() local
566 transferSRADebugInfo(GV, NGV, FragmentOffsetInBits, Size, VarSize); in SRAGlobal()
579 FragmentSizeInBits, VarSize); in SRAGlobal()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DSROA.cpp4548 auto VarSize = DbgDeclare->getVariable()->getSizeInBits(); in splitAlloca() local
4549 if (VarSize) { in splitAlloca()
4550 if (Size > *VarSize) in splitAlloca()
4551 Size = *VarSize; in splitAlloca()
4552 if (Size == 0 || Start + Size > *VarSize) in splitAlloca()
4557 if (!VarSize || *VarSize != Size) { in splitAlloca()
/netbsd-src/sys/external/bsd/gnu-efi/dist/inc/
H A Defilib.h699 OUT UINTN *VarSize
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DVerifier.cpp5559 auto VarSize = V.getSizeInBits(); in verifyFragmentExpression() local
5560 if (!VarSize) in verifyFragmentExpression()
5565 AssertDI(FragSize + FragOffset <= *VarSize, in verifyFragmentExpression()
5567 AssertDI(FragSize != *VarSize, "fragment covers entire variable", Desc, &V); in verifyFragmentExpression()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp1398 if (auto VarSize = Var->getSizeInBits()) in handleDebugValue() local
1399 BitsToDescribe = *VarSize; in handleDebugValue()