Searched refs:Sz (Results 1 - 23 of 23) sorted by relevance

/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DMemAlloc.h25 LLVM_ATTRIBUTE_RETURNS_NONNULL inline void *safe_malloc(size_t Sz) { argument
26 void *Result = std::malloc(Sz);
31 if (Sz == 0)
39 size_t Sz) {
40 void *Result = std::calloc(Count, Sz);
45 if (Count == 0 || Sz == 0)
52 LLVM_ATTRIBUTE_RETURNS_NONNULL inline void *safe_realloc(void *Ptr, size_t Sz) { argument
53 void *Result = std::realloc(Ptr, Sz);
58 if (Sz == 0)
38 safe_calloc(size_t Count, size_t Sz) argument
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/MC/
H A DConstantPools.h32 ConstantPoolEntry(MCSymbol *L, const MCExpr *Val, unsigned Sz, SMLoc Loc_) argument
33 : Label(L), Value(Val), Size(Sz), Loc(Loc_) {}
/netbsd-current/external/mpl/bind/dist/bin/tests/system/digdelv/ns2/
H A Dsign.sh23 "$SIGNER" -Sz -f example.db -o example example.db.in >/dev/null 2>&1
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyUtil.h51 void *allocate(size_t Sz) { argument
52 return Allocator->Allocate(Sz, alignof(AlignmentType));
70 inline void *operator new(size_t Sz, argument
72 return R.allocate(Sz);
87 SimpleArray(T *Dat, size_t Cp, size_t Sz = 0)
88 : Data(Dat), Size(Sz), Capacity(Cp) {}
189 void setValues(unsigned Sz, const T& C) {
190 assert(Sz <= Capacity);
191 Size = Sz;
192 for (unsigned i = 0; i < Sz;
[all...]
H A DThreadSafetyTIL.h174 ValueType(BaseType B, SizeType Sz, bool S, unsigned char VS) argument
175 : Base(B), Size(Sz), Signed(S), VectSize(VS) {}
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Support/
H A DSourceMgr.cpp79 size_t Sz = Buffer->getBufferSize(); local
80 assert(Sz <= std::numeric_limits<T>::max());
82 for (size_t N = 0; N < Sz; ++N) {
111 size_t Sz = Buffer->getBufferSize(); local
112 if (Sz <= std::numeric_limits<uint8_t>::max())
114 else if (Sz <= std::numeric_limits<uint16_t>::max())
116 else if (Sz <= std::numeric_limits<uint32_t>::max())
147 size_t Sz = Buffer->getBufferSize(); local
148 if (Sz <= std::numeric_limits<uint8_t>::max())
150 else if (Sz <
166 size_t Sz = Buffer->getBufferSize(); local
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/ARM/
H A DARMMachineFunctionInfo.h253 void setPromotedConstpoolIncrease(int Sz) { argument
254 PromotedGlobalsIncrease = Sz;
H A DARMISelLowering.cpp3627 // multiple uses), and promoting it would increase the constant pool size (Sz
18895 for (unsigned Sz = SrcSz; Sz <= 32 && Sz < DstSz; Sz *= 2) {
18896 bool Supported = (Sz == 16 ? Subtarget->hasFP16() : Subtarget->hasFP64());
18897 MVT SrcVT = (Sz == 16 ? MVT::f16 : MVT::f32);
18898 MVT DstVT = (Sz == 16 ? MVT::f32 : MVT::f64);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
H A DLoadStoreVectorizer.cpp1009 unsigned Sz = DL.getTypeSizeInBits(StoreTy); local
1012 unsigned VF = VecRegSize / Sz;
1016 if (!isPowerOf2_32(Sz) || VF < 2 || ChainSize < 2) {
1039 unsigned EltSzInBytes = Sz / 8;
1052 unsigned TargetVF = TTI.getStoreVectorFactor(VF, Sz, SzInBytes, VecTy);
1074 auto Chains = splitOddVectorElts(Chain, Sz);
1089 auto Chains = splitOddVectorElts(Chain, Sz);
1162 unsigned Sz = DL.getTypeSizeInBits(LoadTy); local
1165 unsigned VF = VecRegSize / Sz;
1169 if (!isPowerOf2_32(Sz) || V
[all...]
H A DSLPVectorizer.cpp6560 const unsigned Sz = R.getVectorElementSize(Chain[0]);
6561 const unsigned MinVF = R.getMinVecRegSize() / Sz;
6564 if (!isPowerOf2_32(Sz) || !isPowerOf2_32(VF) || VF < 2 || VF < MinVF)
6815 unsigned Sz = R.getVectorElementSize(I0);
6816 unsigned MinVF = std::max(2U, R.getMinVecRegSize() / Sz);
6818 MaxVF = std::min(R.getMaximumVF(Sz, S.getOpcode()), MaxVF);
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
H A DFuzzerCorpus.h193 if(size_t Sz = GetFeature(i))
194 Printf("[%zd: id %zd sz%zd] ", i, SmallestElementPerFeature[i], Sz);
/netbsd-current/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DDFAPacketizerEmitter.cpp279 size_t Sz = V.size();
280 for (unsigned I = 0; I < Sz; ++I) {
/netbsd-current/external/apache2/llvm/dist/clang/lib/AST/Interp/
H A DProgram.cpp49 unsigned Sz = Desc->getAllocSize(); local
50 auto *G = new (Allocator, Sz) Global(Desc, /*isStatic=*/true,
/netbsd-current/external/apache2/llvm/dist/clang/lib/Analysis/
H A DThreadSafetyCommon.cpp747 unsigned Sz = std::min(ESz, MSz); local
749 for (unsigned i = 0; i < Sz; ++i) {
783 unsigned Sz = CurrentLVarMap.size(); local
786 for (unsigned i = 0; i < Sz; ++i)
/netbsd-current/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DCallEvent.cpp201 unsigned Idx = 0, Sz = B->size(); local
202 for (; Idx < Sz; ++Idx)
206 assert(Idx < Sz);
/netbsd-current/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGOpenMPRuntime.cpp4149 llvm::Value *Sz = CGF.EmitScalarExpr(SE); local
4150 Sz = CGF.EmitScalarConversion(
4151 Sz, SE->getType(), CGF.getContext().getSizeType(), SE->getExprLoc());
4152 SizeVal = CGF.Builder.CreateNUWMul(SizeVal, Sz);
4381 llvm::Value *Sz = CGF.EmitScalarExpr(IE->getHelper(I).Upper); local
4382 Sz = CGF.Builder.CreateIntCast(Sz, CGF.SizeTy, /*isSigned=*/false);
4384 NumOfElements ? CGF.Builder.CreateNUWMul(NumOfElements, Sz) : Sz;
4871 llvm::Value *Sz local
4977 llvm::Value *Sz = CGF.EmitScalarExpr(IE->getHelper(I).Upper); local
4993 CharUnits Sz = C.getTypeSizeInChars(KmpDependInfoArrayTy); local
7275 llvm::Value *Sz = CGF.EmitScalarExpr(SE); local
11994 CharUnits Sz = CGM.getContext().getTypeSizeInChars(CVD->getType()); local
[all...]
H A DCGStmtOpenMP.cpp1624 CharUnits Sz = CGM.getContext().getTypeSizeInChars(CVD->getType()); local
1625 Size = CGM.getSize(Sz.alignTo(Align));
/netbsd-current/external/apache2/llvm/dist/llvm/lib/TableGen/
H A DRecord.cpp80 BitsRecTy *BitsRecTy::get(unsigned Sz) { argument
82 if (Sz >= Shared.size())
83 Shared.resize(Sz + 1);
84 BitsRecTy *&Ty = Shared[Sz];
86 Ty = new(Allocator) BitsRecTy(Sz);
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/TableGen/
H A DRecord.h123 explicit BitsRecTy(unsigned Sz) : RecTy(BitsRecTyKind), Size(Sz) {} argument
130 static BitsRecTy *get(unsigned Sz);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DReassociate.cpp1518 unsigned Sz = Ops.size();
1519 if (Sz == 1)
1521 if (Sz == 0) {
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp7231 unsigned Sz = VT.getScalarSizeInBits();
7238 if (Sz >= 8 && isPowerOf2_32(Sz)) {
7240 APInt MaskHi4 = APInt::getSplat(Sz, APInt(8, 0xF0));
7241 APInt MaskHi2 = APInt::getSplat(Sz, APInt(8, 0xCC));
7242 APInt MaskHi1 = APInt::getSplat(Sz, APInt(8, 0xAA));
7243 APInt MaskLo4 = APInt::getSplat(Sz, APInt(8, 0x0F));
7244 APInt MaskLo2 = APInt::getSplat(Sz, APInt(8, 0x33));
7245 APInt MaskLo1 = APInt::getSplat(Sz, APInt(8, 0x55));
7248 Tmp = (Sz >
[all...]
H A DLegalizeDAG.cpp2648 unsigned Sz = VT.getScalarSizeInBits();
2656 for (unsigned i = Log2_32_Ceil(Sz); i != 0;) {
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DAMDGPULegalizerInfo.cpp2327 auto Sz =
2329 B.buildIntToPtr(DstReg, Sz);

Completed in 837 milliseconds