Searched refs:Size (Results 76 - 100 of 1042) sorted by relevance

1234567891011>>

/external/llvm/include/llvm/Support/
H A DAllocator.h44 /// \brief Allocate \a Size bytes of \a Alignment aligned memory. This method
46 void *Allocate(size_t Size, size_t Alignment) { argument
55 return static_cast<DerivedT *>(this)->Allocate(Size, Alignment);
58 /// \brief Deallocate \a Ptr to \a Size bytes of memory allocated by this
60 void Deallocate(const void *Ptr, size_t Size) { argument
69 return static_cast<DerivedT *>(this)->Deallocate(Ptr, Size);
93 LLVM_ATTRIBUTE_RETURNS_NONNULL void *Allocate(size_t Size, argument
95 return malloc(Size);
101 void Deallocate(const void *Ptr, size_t /*Size*/) {
207 Allocate(size_t Size, size_ argument
339 size_t Size = PtrAndSize.second; local
399 size_t Size = PtrAndSize.second; local
413 operator new(size_t Size, llvm::BumpPtrAllocatorImpl<AllocatorT, SlabSize, SizeThreshold> &Allocator) argument
[all...]
/external/llvm/lib/MC/
H A DMCRegisterInfo.cpp52 return SubRegIdxRanges[Idx].Size;
63 unsigned Size = isEH ? EHL2DwarfRegsSize : L2DwarfRegsSize;
66 const DwarfLLVMRegPair *I = std::lower_bound(M, M+Size, Key);
67 if (I == M+Size || I->FromReg != RegNum)
74 unsigned Size = isEH ? EHDwarf2LRegsSize : Dwarf2LRegsSize;
77 const DwarfLLVMRegPair *I = std::lower_bound(M, M+Size, Key);
78 assert(I != M+Size && I->FromReg == RegNum && "Invalid RegNum");
H A DConstantPools.cpp30 Streamer.EmitCodeAlignment(I->Size); // align naturally
32 Streamer.EmitValue(I->Value, I->Size);
39 unsigned Size) {
42 Entries.push_back(ConstantPoolEntry(CPEntryLabel, Value, Size));
94 unsigned Size) {
97 Size);
38 addEntry(const MCExpr *Value, MCContext &Context, unsigned Size) argument
92 addEntry(MCStreamer &Streamer, const MCExpr *Expr, unsigned Size) argument
/external/llvm/include/llvm/CodeGen/
H A DStackMaps.h137 unsigned Size; member in struct:llvm::StackMaps::Location
140 Location() : LocType(Unprocessed), Size(0), Reg(0), Offset(0) {}
141 Location(LocationType LocType, unsigned Size, unsigned Reg, int64_t Offset) argument
142 : LocType(LocType), Size(Size), Reg(Reg), Offset(Offset) {}
148 unsigned short Size; member in struct:llvm::StackMaps::LiveOutReg
150 LiveOutReg() : Reg(0), RegNo(0), Size(0) {}
151 LiveOutReg(unsigned short Reg, unsigned short RegNo, unsigned short Size) argument
152 : Reg(Reg), RegNo(RegNo), Size(Size) {}
[all...]
H A DCalcSpillWeights.h32 /// @param Size Size of live interval as returnexd by getSize()
35 static inline float normalizeSpillWeight(float UseDefFreq, unsigned Size, argument
42 return UseDefFreq / (Size + 25*SlotIndex::InstrDist);
/external/clang/include/clang/Lex/
H A DLexer.h448 static inline char getCharAndSizeNoWarn(const char *Ptr, unsigned &Size, argument
453 Size = 1;
457 Size = 0;
458 return getCharAndSizeSlowNoWarn(Ptr, Size, LangOpts);
531 unsigned Size = 0; local
532 char C = getCharAndSizeSlow(Ptr, Size, &Tok);
533 Ptr += Size;
541 const char *ConsumeChar(const char *Ptr, unsigned Size, Token &Tok) { argument
543 if (Size == 1)
544 return Ptr+Size;
557 getCharAndSize(const char *Ptr, unsigned &Size) argument
[all...]
/external/llvm/tools/dsymutil/
H A DDebugMap.h104 uint32_t Size; member in struct:llvm::dsymutil::DebugMapObject::SymbolMapping
105 SymbolMapping(uint64_t ObjectAddress, uint64_t BinaryAddress, uint32_t Size) argument
107 Size(Size) {}
116 uint64_t LinkedAddress, uint32_t Size);
/external/llvm/lib/Support/
H A Draw_ostream.cpp82 if (size_t Size = preferred_buffer_size())
83 SetBufferSize(Size);
89 void raw_ostream::SetBufferAndMode(char *BufferStart, size_t Size, argument
91 assert(((Mode == Unbuffered && !BufferStart && Size == 0) ||
92 (Mode != Unbuffered && BufferStart && Size != 0)) &&
101 OutBufEnd = OutBufStart+Size;
296 raw_ostream &raw_ostream::write(const char *Ptr, size_t Size) { argument
298 if (LLVM_UNLIKELY(size_t(OutBufEnd - OutBufCur) < Size)) {
301 write_impl(Ptr, Size);
306 return write(Ptr, Size);
339 copy_to_buffer(const char *Ptr, size_t Size) argument
566 write_impl(const char *Ptr, size_t Size) argument
633 pwrite(const char *Ptr, size_t Size, uint64_t Offset) argument
749 write_impl(const char *Ptr, size_t Size) argument
784 pwrite(const char *Ptr, size_t Size, uint64_t Offset) argument
806 write_impl(const char *Ptr, size_t Size) argument
843 write_impl(const char *Ptr, size_t Size) argument
850 pwrite(const char *Ptr, size_t Size, uint64_t Offset) argument
[all...]
H A DFoldingSet.cpp31 return static_cast<unsigned>(hash_combine_range(Data, Data+Size));
35 if (Size != RHS.Size) return false;
36 return memcmp(Data, RHS.Data, Size*sizeof(*Data)) == 0;
42 if (Size != RHS.Size)
43 return Size < RHS.Size;
44 return memcmp(Data, RHS.Data, Size*sizeof(*Data)) < 0;
88 unsigned Size local
[all...]
/external/lzma/CPP/7zip/Archive/7z/
H A D7zDecode.cpp20 for (i = 0; i < folder.BindPairs.Size(); i++)
28 for (i = 0; i < folder.Coders.Size(); i++)
40 for (i = 0; i < folder.PackStreams.Size(); i++)
59 if (a1.Coders.Size() != a2.Coders.Size())
62 for (i = 0; i < a1.Coders.Size(); i++)
65 if (a1.BindPairs.Size() != a2.BindPairs.Size())
67 for (i = 0; i < a1.BindPairs.Size(); i++)
70 for (i = 0; i < a1.CoderMethodIDs.Size();
[all...]
/external/lzma/CPP/7zip/UI/Common/
H A DExtract.cpp46 if (realIndices.Size() == 0)
97 result = archive->Extract(&realIndices.Front(), realIndices.Size(), testMode, extractCallbackSpec);
117 int numArcs = options.StdInMode ? 1 : arcPaths.Size();
122 fi.Size = 0;
131 archiveSizes.Add(fi.Size);
132 totalPackSize += fi.Size;
148 fi.Size = 0;
204 for (int v = 0; v < archiveLink.VolumePaths.Size(); v++)
213 numArcs = arcPaths.Size();
216 if (archiveLink.VolumePaths.Size() !
[all...]
/external/clang/lib/CodeGen/
H A DCGRecordLayout.h72 unsigned Size : 15; member in struct:clang::CodeGen::CGBitFieldInfo
85 : Offset(), Size(), IsSigned(), StorageSize(), StorageAlignment() {}
87 CGBitFieldInfo(unsigned Offset, unsigned Size, bool IsSigned, argument
89 : Offset(Offset), Size(Size), IsSigned(IsSigned),
100 uint64_t Offset, uint64_t Size,
/external/eigen/Eigen/src/Core/
H A DDenseStorage.h27 template<typename T, int Size> void check_static_allocation_size()
31 EIGEN_STATIC_ASSERT(Size * sizeof(T) <= EIGEN_STACK_ALLOCATION_LIMIT, OBJECT_ALLOCATED_ON_STACK_IS_TOO_BIG);
39 template <typename T, int Size, int MatrixOrArrayOptions,
41 : (((Size*sizeof(T))%16)==0) ? 16
45 T array[Size];
49 check_static_allocation_size<T,Size>();
54 check_static_allocation_size<T,Size>();
79 template <typename T, int Size, int MatrixOrArrayOptions>
80 struct plain_array<T, Size, MatrixOrArrayOptions, 16>
82 EIGEN_USER_ALIGN16 T array[Size];
[all...]
/external/eigen/unsupported/Eigen/src/SparseExtra/
H A DBlockOfDynamicSparseMatrix.h25 template<typename _Scalar, int _Options, typename _Index, int Size>
26 class SparseInnerVectorSet<DynamicSparseMatrix<_Scalar, _Options, _Index>, Size>
27 : public SparseMatrixBase<SparseInnerVectorSet<DynamicSparseMatrix<_Scalar, _Options, _Index>, Size> >
54 : m_matrix(matrix), m_outerStart(outer), m_outerSize(Size)
56 eigen_assert(Size!=Dynamic);
114 const internal::variable_if_dynamic<Index, Size> m_outerSize;
/external/llvm/include/llvm/MC/
H A DMCELFStreamer.h59 void EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
68 void EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size,
72 uint64_t Size = 0, unsigned ByteAlignment = 0) override;
74 uint64_t Size, unsigned ByteAlignment = 0) override;
75 void EmitValueImpl(const MCExpr *Value, unsigned Size,
105 uint64_t Size; member in struct:llvm::MCELFStreamer::LocalCommon
/external/llvm/lib/Target/AArch64/
H A DAArch64MachineFunctionInfo.h63 /// \brief Size of the varargs area for arguments passed in general purpose
71 /// \brief Size of the varargs area for arguments passed in floating-point
99 void setLocalStackSize(unsigned Size) { LocalStackSize = Size; } argument
114 void setVarArgsGPRSize(unsigned Size) { VarArgsGPRSize = Size; } argument
120 void setVarArgsFPRSize(unsigned Size) { VarArgsFPRSize = Size; } argument
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDIE.cpp153 << ", Size: " << Size << "\n"; local
160 O << "Size: " << Size << "\n"; local
209 unsigned Size = ~0U; local
218 case dwarf::DW_FORM_data1: Size = 1; break;
220 case dwarf::DW_FORM_data2: Size = 2; break;
224 case dwarf::DW_FORM_data4: Size = 4; break;
227 case dwarf::DW_FORM_data8: Size = 8; break;
233 Size
[all...]
/external/llvm/lib/Target/Mips/
H A DMipsAnalyzeImmediate.h28 const InstSeq &Analyze(uint64_t Imm, unsigned Size, bool LastInstrIsADDiu);
57 unsigned Size; member in class:llvm::MipsAnalyzeImmediate
/external/llvm/lib/Target/X86/
H A DX86SelectionDAGInfo.h38 SDValue Size, unsigned Align,
45 SDValue Size, unsigned Align,
/external/mesa3d/src/egl/main/
H A Deglarray.h44 EGLint Size; member in struct:_egl_array
81 return (array) ? array->Size : 0;
/external/mesa3d/src/mesa/vbo/
H A Dvbo_context.c61 /* Size will have to be determined at runtime:
63 cl->Size = check_size(ctx->Current.Attrib[i]);
70 cl->_ElementSize = cl->Size * sizeof(GLfloat);
90 cl->Size = 1;
97 cl->_ElementSize = cl->Size * sizeof(GLfloat);
121 /* Size is fixed for the material attributes, for others will
127 cl->Size = 1;
131 cl->Size = 3;
134 cl->Size = 4;
144 cl->_ElementSize = cl->Size * sizeo
[all...]
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_report.cc130 for (uptr i = 0; i < mset.Size(); i++) {
135 Printf(i == mset.Size() - 1 ? ")" : ",");
243 if (rep->mops.Size())
245 if (rep->stacks.Size())
247 if (rep->mutexes.Size())
249 if (rep->threads.Size())
282 for (uptr i = 0; i < rep->mutexes.Size(); i++)
285 CHECK_GT(rep->mutexes.Size(), 0U);
286 CHECK_EQ(rep->mutexes.Size() * (flags()->second_deadlock_stack ? 2 : 1),
287 rep->stacks.Size());
[all...]
/external/deqp/framework/common/
H A DtcuMatrixUtil.hpp33 template <typename T, int Size>
34 Matrix<T, Size+1, Size+1> translationMatrix (const Vector<T, Size>& translation);
H A DtcuVectorType.hpp35 template <typename T, int Size>
/external/eigen/test/
H A Dhessenberg.cpp14 template<typename Scalar,int Size> void hessenberg(int size = Size) argument
16 typedef Matrix<Scalar,Size,Size> MatrixType;

Completed in 656 milliseconds

1234567891011>>