HomeSort by: relevance | last modified time | path
    Searched refs:Sz (Results 1 - 24 of 24) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
MemAlloc.h 25 LLVM_ATTRIBUTE_RETURNS_NONNULL inline void *safe_malloc(size_t Sz) {
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) {
53 void *Result = std::realloc(Ptr, Sz);
58 if (Sz == 0)
  /src/external/bsd/zstd/dist/tests/gzip/
z-suffix.sh 2 # Check that -Sz works.
23 gzip -Sz F || fail=1
  /src/external/mpl/bind/dist/bin/tests/system/digdelv/ns2/
sign.sh 23 "$SIGNER" -Sz -f example.db -o example example.db.in >/dev/null 2>&1
32 "$SIGNER" -Sz -f example.tld.db -o example.tld example.db.in >/dev/null 2>&1
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
ConstantPools.h 32 ConstantPoolEntry(MCSymbol *L, const MCExpr *Val, unsigned Sz, SMLoc Loc_)
33 : Label(L), Value(Val), Size(Sz), Loc(Loc_) {}
  /src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/
ThreadSafetyUtil.h 51 void *allocate(size_t Sz) {
52 return Allocator->Allocate(Sz, alignof(AlignmentType));
70 inline void *operator new(size_t Sz,
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; ++i)
    [all...]
ThreadSafetyTIL.h 174 ValueType(BaseType B, SizeType Sz, bool S, unsigned char VS)
175 : Base(B), Size(Sz), Signed(S), VectSize(VS) {}
  /src/external/apache2/llvm/dist/llvm/lib/Support/
SourceMgr.cpp 79 size_t Sz = Buffer->getBufferSize();
80 assert(Sz <= std::numeric_limits<T>::max());
82 for (size_t N = 0; N < Sz; ++N) {
111 size_t Sz = Buffer->getBufferSize();
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();
148 if (Sz <= std::numeric_limits<uint8_t>::max())
150 else if (Sz <= std::numeric_limits<uint16_t>::max()
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMMachineFunctionInfo.h 253 void setPromotedConstpoolIncrease(int Sz) {
254 PromotedGlobalsIncrease = Sz;
ARMISelLowering.cpp 3627 // multiple uses), and promoting it would increase the constant pool size (Sz
4374 // to 32 bits. Insert an assert[sz]ext to capture this, then
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);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
LoadStoreVectorizer.cpp 1009 unsigned Sz = DL.getTypeSizeInBits(StoreTy);
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);
1165 unsigned VF = VecRegSize / Sz;
1169 if (!isPowerOf2_32(Sz) || VF < 2 || ChainSize < 2)
    [all...]
SLPVectorizer.cpp 6560 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);
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerCorpus.h 146 Printf("%s sz=%zd ", Sha1ToString(II->Sha1).c_str(), II->U.size());
185 Printf(" [% 3zd %s] sz: % 5zd runs: % 5zd succ: % 5zd focus: %d\n", i,
193 if(size_t Sz = GetFeature(i))
194 Printf("[%zd: id %zd sz%zd] ", i, SmallestElementPerFeature[i], Sz);
233 Printf("ADD FEATURE %zd sz %d\n", Idx, NewSize);
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
DFAPacketizerEmitter.cpp 279 size_t Sz = V.size();
280 for (unsigned I = 0; I < Sz; ++I) {
  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
Program.cpp 49 unsigned Sz = Desc->getAllocSize();
50 auto *G = new (Allocator, Sz) Global(Desc, /*isStatic=*/true,
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
ThreadSafetyCommon.cpp 747 unsigned Sz = std::min(ESz, MSz);
749 for (unsigned i = 0; i < Sz; ++i) {
783 unsigned Sz = CurrentLVarMap.size();
786 for (unsigned i = 0; i < Sz; ++i)
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
CallEvent.cpp 201 unsigned Idx = 0, Sz = B->size();
202 for (; Idx < Sz; ++Idx)
206 assert(Idx < Sz);
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGOpenMPRuntime.cpp 4149 llvm::Value *Sz = CGF.EmitScalarExpr(SE);
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);
4382 Sz = CGF.Builder.CreateIntCast(Sz, CGF.SizeTy, /*isSigned=*/false);
4384 NumOfElements ? CGF.Builder.CreateNUWMul(NumOfElements, Sz) : Sz;
4871 llvm::Value *Sz = CGF.EmitScalarExpr(IE->getHelper(I).Upper)
    [all...]
CGStmtOpenMP.cpp 1624 CharUnits Sz = CGM.getContext().getTypeSizeInChars(CVD->getType());
1625 Size = CGM.getSize(Sz.alignTo(Align));
  /src/external/apache2/llvm/dist/llvm/lib/TableGen/
Record.cpp 80 BitsRecTy *BitsRecTy::get(unsigned Sz) {
82 if (Sz >= Shared.size())
83 Shared.resize(Sz + 1);
84 BitsRecTy *&Ty = Shared[Sz];
86 Ty = new(Allocator) BitsRecTy(Sz);
  /src/external/apache2/llvm/dist/llvm/include/llvm/TableGen/
Record.h 123 explicit BitsRecTy(unsigned Sz) : RecTy(BitsRecTyKind), Size(Sz) {}
130 static BitsRecTy *get(unsigned Sz);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
Reassociate.cpp 1518 unsigned Sz = Ops.size();
1519 if (Sz == 1)
1521 if (Sz == 0) {
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp 3611 // setcc ([sz]ext (setcc x, y, cc)), 0, setne) -> setcc (x, y, cc)
3612 // setcc ([sz]ext (setcc x, y, cc)), 0, seteq) -> setcc (x, y, inv(cc))
7231 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))
    [all...]
LegalizeDAG.cpp 2648 unsigned Sz = VT.getScalarSizeInBits();
2656 for (unsigned i = Log2_32_Ceil(Sz); i != 0;) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPULegalizerInfo.cpp 2327 auto Sz =
2329 B.buildIntToPtr(DstReg, Sz);

Completed in 123 milliseconds