HomeSort by relevance Sort by last modified time
    Searched defs:Alloc (Results 1 - 22 of 22) sorted by null

  /external/clang/test/CXX/temp/temp.decls/temp.alias/
p2.cpp 18 template<class T> struct Alloc {};
19 template<class T> using Vec = vector<T, Alloc<T>>;
27 void process(vector<T, Alloc<T>>& w) // expected-error {{redefinition of 'process'}}
34 void g(TT<int, Alloc<int>>);
42 // v's type is same as vector<int, Alloc<int>>.
43 using VTest = vector<int, Alloc<int>>;
  /external/skia/src/core/
SkRegionPriv.h 33 static RunHead* Alloc(int count)
36 //SkDEBUGF(("************** gRgnAllocCounter::alloc %d\n", gRgnAllocCounter));
70 // We need to alloc & copy the current region before we call
73 writable = Alloc(fRunCount);
SkMetaData.cpp 128 Rec* rec = Rec::Alloc(sizeof(Rec) + dataSize * count + len + 1);
338 SkMetaData::Rec* SkMetaData::Rec::Alloc(size_t size) {
SkPictureFlat.cpp 11 SkFlatData* SkFlatData::Alloc(SkChunkAlloc* heap, int32_t size, int index) {
25 SkFlatBitmap* result = (SkFlatBitmap*) INHERITED::Alloc(heap, size, index);
32 SkFlatMatrix* result = (SkFlatMatrix*) INHERITED::Alloc(heap, size, index);
93 SkFlatPaint* result = (SkFlatPaint*) INHERITED::Alloc(heap, size, index);
211 SkFlatRegion* result = (SkFlatRegion*) INHERITED::Alloc(heap, size, index);
SkBitmap.cpp 48 static MipMap* Alloc(int levelCount, size_t pixelSize) {
882 bool SkBitmap::copyTo(SkBitmap* dst, Config dstConfig, Allocator* alloc) const {
896 if (tmpSrc.config() == dstConfig && NULL == alloc) {
918 if (!tmpDst.allocPixels(alloc, ctable)) {
1127 MipMap* mm = MipMap::Alloc(maxLevels, size);
    [all...]
  /frameworks/base/media/libstagefright/codecs/common/include/
voMem.h 43 VO_U32 (VO_API * Alloc) (VO_S32 uID, VO_MEM_INFO * pMemInfo);
56 pMemOP->Alloc(ID, &voMemInfo); \
  /external/clang/include/clang/Lex/
PTHManager.h 42 /// Alloc - Allocator used for IdentifierInfo objects.
43 llvm::BumpPtrAllocator Alloc;
  /external/llvm/unittests/Support/
AllocatorTest.cpp 20 BumpPtrAllocator Alloc;
21 int *a = (int*)Alloc.Allocate(sizeof(int), 0);
22 int *b = (int*)Alloc.Allocate(sizeof(int) * 10, 0);
23 int *c = (int*)Alloc.Allocate(sizeof(int), 0);
32 EXPECT_EQ(1U, Alloc.GetNumSlabs());
37 BumpPtrAllocator Alloc(4096, 4096);
38 Alloc.Allocate(3000, 0);
39 EXPECT_EQ(1U, Alloc.GetNumSlabs());
40 Alloc.Allocate(3000, 0);
41 EXPECT_EQ(2U, Alloc.GetNumSlabs())
    [all...]
  /external/clang/test/CodeGenCXX/
new.cpp 152 struct Alloc{
156 ~Alloc();
164 delete[] new Alloc[10][20];
mangle.cpp 303 template<typename T, typename = Policy<P, true> > class Alloc
309 template class Alloc<char>;
  /external/skia/include/core/
SkDescriptor.h 30 static SkDescriptor* Alloc(size_t length)
99 SkDescriptor* desc = SkDescriptor::Alloc(fLength);
167 fDesc = SkDescriptor::Alloc(size);
  /external/clang/include/clang/Analysis/Support/
BumpVector.h 33 llvm::PointerIntPair<llvm::BumpPtrAllocator*, 1> Alloc;
37 BumpVectorContext() : Alloc(new llvm::BumpPtrAllocator(), 1) {}
42 BumpVectorContext(llvm::BumpPtrAllocator &A) : Alloc(&A, 0) {}
45 if (Alloc.getInt())
46 delete Alloc.getPointer();
49 llvm::BumpPtrAllocator &getAllocator() { return *Alloc.getPointer(); }
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ProgramState.h 429 llvm::BumpPtrAllocator &Alloc;
442 llvm::BumpPtrAllocator& alloc,
445 EnvMgr(alloc),
446 GDMFactory(alloc),
447 svalBuilder(createSimpleSValBuilder(alloc, Ctx, *this)),
448 Alloc(alloc) {
456 llvm::BumpPtrAllocator& alloc)
458 EnvMgr(alloc),
459 GDMFactory(alloc),
    [all...]
  /external/clang/lib/CodeGen/
CGDecl.cpp 790 llvm::AllocaInst *Alloc = CreateTempAlloca(LTy);
791 Alloc->setName(D.getNameAsString());
797 Alloc->setAlignment(allocaAlignment.getQuantity());
798 DeclPtr = Alloc;
    [all...]
CGExpr.cpp 64 llvm::AllocaInst *Alloc = CreateTempAlloca(ConvertType(Ty), Name);
67 Alloc->setAlignment(Align.getQuantity());
68 return Alloc;
73 llvm::AllocaInst *Alloc = CreateTempAlloca(ConvertTypeForMem(Ty), Name);
76 Alloc->setAlignment(Align.getQuantity());
77 return Alloc;
    [all...]
  /external/clang/lib/Sema/
SemaExprCXX.cpp     [all...]
  /prebuilt/darwin-x86/swt/
swt.jar 
  /prebuilt/darwin-x86_64/swt/
swt.jar 
  /prebuilt/linux-x86/swt/
swt.jar 
  /prebuilt/linux-x86_64/swt/
swt.jar 
  /prebuilt/windows/swt/
swt.jar 
  /prebuilt/windows-x86_64/swt/
swt.jar 

Completed in 333 milliseconds