Searched defs:Sz (Results 1 - 17 of 17) sorted by relevance

/external/libcxx/test/std/iterators/iterator.container/
H A Dsize.pass.cpp60 template<typename T, size_t Sz>
61 void test_const_array( const T (&array)[Sz] )
64 assert ( std::size(array) == Sz ); variable
/external/libcxx/test/std/iterators/iterator.range/
H A Dbegin-end.pass.cpp125 template<typename T, size_t Sz>
126 void test_const_array( const T (&array)[Sz] ) {
130 assert ( std::end(array) == array + Sz); variable
135 assert ( std::cend(array) == array + Sz); variable
/external/llvm/include/llvm/MC/
H A DConstantPools.h30 ConstantPoolEntry(MCSymbol *L, const MCExpr *Val, unsigned Sz, SMLoc Loc_) argument
31 : Label(L), Value(Val), Size(Sz), Loc(Loc_) {}
/external/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyUtil.h47 void *allocate(size_t Sz) { argument
48 return Allocator->Allocate(Sz, llvm::AlignOf<AlignmentType>::Alignment);
65 inline void *operator new(size_t Sz, argument
67 return R.allocate(Sz);
85 SimpleArray(T *Dat, size_t Cp, size_t Sz = 0)
86 : Data(Dat), Size(Sz), Capacity(Cp) {}
181 void setValues(unsigned Sz, const T& C) {
182 assert(Sz <= Capacity);
183 Size = Sz;
184 for (unsigned i = 0; i < Sz;
[all...]
H A DThreadSafetyTIL.h157 ValueType(BaseType B, SizeType Sz, bool S, unsigned char VS) argument
158 : Base(B), Size(Sz), Signed(S), VectSize(VS)
/external/compiler-rt/lib/profile/
H A DInstrProfilingWriter.c124 uint32_t Sz = local
129 SiteCountArray[I] = (uint8_t *)COMPILER_RT_ALLOCA(Sz);
130 memset(SiteCountArray[I], 0, Sz);
/external/llvm/lib/Target/Mips/
H A DMips16InstrInfo.cpp502 char *EStr; int Sz; local
503 Sz = strtol(Str+6, &EStr, 10);
506 DEBUG(dbgs() << "parsed .space " << Sz << '\n');
507 return Sz;
/external/clang/lib/Analysis/
H A DThreadSafetyCommon.cpp724 unsigned Sz = std::min(ESz, MSz); local
726 for (unsigned i=0; i<Sz; ++i) {
760 unsigned Sz = CurrentLVarMap.size(); local
763 for (unsigned i=0; i < Sz; ++i) {
/external/llvm/include/llvm/CodeGen/
H A DMachineFrameInfo.h131 StackObject(uint64_t Sz, unsigned Al, int64_t SP, bool IM, argument
133 : SPOffset(SP), Size(Sz), Alignment(Al), isImmutable(IM),
/external/llvm/lib/Transforms/Vectorize/
H A DLoadStoreVectorizer.cpp681 unsigned Sz = DL.getTypeSizeInBits(StoreTy); local
684 unsigned VF = VecRegSize / Sz;
687 if (!isPowerOf2_32(Sz) || VF < 2 || ChainSize < 2) {
712 unsigned SzInBytes = (Sz / 8) * ChainSize;
720 auto Chains = splitOddVectorElts(Chain, Sz);
836 unsigned Sz = DL.getTypeSizeInBits(LoadTy); local
839 unsigned VF = VecRegSize / Sz;
842 if (!isPowerOf2_32(Sz) || VF < 2 || ChainSize < 2) {
867 unsigned SzInBytes = (Sz / 8) * ChainSize;
874 auto Chains = splitOddVectorElts(Chain, Sz);
[all...]
H A DSLPVectorizer.cpp3588 unsigned Sz = R.getVectorElementSize(Chain[0]); local
3589 unsigned VF = VecRegSize / Sz;
3591 if (!isPowerOf2_32(Sz) || VF < 2)
3760 unsigned Sz = R.getVectorElementSize(I0); local
3761 unsigned VF = R.getMinVecRegSize() / Sz;
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
H A DMachineFrameInfo.h110 StackObject(uint64_t Sz, unsigned Al, int64_t SP, bool IM, argument
112 : SPOffset(SP), Size(Sz), Alignment(Al), isImmutable(IM),
/external/swiftshader/third_party/LLVM/include/llvm/TableGen/
H A DRecord.h180 explicit BitsRecTy(unsigned Sz) : Size(Sz) {} argument
182 static BitsRecTy *get(unsigned Sz);
/external/llvm/include/llvm/TableGen/
H A DRecord.h104 explicit BitsRecTy(unsigned Sz) : RecTy(BitsRecTyKind), Size(Sz) {} argument
111 static BitsRecTy *get(unsigned Sz);
/external/llvm/lib/TableGen/
H A DRecord.cpp111 BitsRecTy *BitsRecTy::get(unsigned Sz) { argument
113 if (Sz >= Shared.size())
114 Shared.resize(Sz + 1);
115 std::unique_ptr<BitsRecTy> &Ty = Shared[Sz];
117 Ty.reset(new BitsRecTy(Sz));
/external/swiftshader/third_party/LLVM/lib/TableGen/
H A DRecord.cpp114 BitsRecTy *BitsRecTy::get(unsigned Sz) { argument
116 if (Sz >= Shared.size())
117 Shared.resize(Sz + 1);
118 BitsRecTy *&Ty = Shared[Sz];
120 Ty = new BitsRecTy(Sz);
/external/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp3462 unsigned Sz = ObjectVT.getSimpleVT().SimpleTy == MVT::v4f32 ? 16 : 32; local
3480 ArgOffset += Sz;

Completed in 400 milliseconds