Searched defs:Mem (Results 26 - 34 of 34) sorted by relevance

12

/external/valgrind/main/VEX/priv/
H A Dhost_amd64_defs.h182 } Mem; member in union:__anon13022::__anon13023
244 } Mem; member in union:__anon13033::__anon13034
534 /* Mem fence. In short, an insn which flushes all preceding
H A Dhost_x86_defs.h166 } Mem; member in union:__anon13307::__anon13308
227 } Mem; member in union:__anon13318::__anon13319
486 /* Mem fence (not just sse2, but sse0 and 1 too). In short,
/external/clang/include/clang/Sema/
H A DDeclSpec.h1272 char Mem[sizeof(CXXScopeSpec)]; member in union:clang::DeclaratorChunk::MemberPointerTypeInfo::__anon3385
1275 return *reinterpret_cast<CXXScopeSpec*>(ScopeMem.Mem);
1278 return *reinterpret_cast<const CXXScopeSpec*>(ScopeMem.Mem);
1292 MemberPointerTypeInfo Mem; member in union:clang::DeclaratorChunk::__anon3386
1302 case DeclaratorChunk::MemberPointer: return Mem.destroy();
1402 I.Mem.TypeQuals = TypeQuals;
1403 I.Mem.AttrList = 0;
1404 new (I.Mem.ScopeMem.Mem) CXXScopeSpec(SS);
/external/clang/lib/AST/
H A DExpr.cpp355 void *Mem = Context.Allocate(Size, llvm::alignOf<DeclRefExpr>()); local
356 return new (Mem) DeclRefExpr(Context, QualifierLoc, TemplateKWLoc, D,
374 void *Mem = Context.Allocate(Size, llvm::alignOf<DeclRefExpr>()); local
375 return new (Mem) DeclRefExpr(EmptyShell());
652 void *Mem = C.Allocate(sizeof(StringLiteral)+ local
655 StringLiteral *SL = new (Mem) StringLiteral(Ty);
669 void *Mem = C.Allocate(sizeof(StringLiteral)+ local
672 StringLiteral *SL = new (Mem) StringLiteral(QualType());
1129 void *Mem = C.Allocate(sizeof(OffsetOfExpr) + local
1133 return new (Mem) OffsetOfExp
1139 void *Mem = C.Allocate(sizeof(OffsetOfExpr) + local
1202 void *Mem = C.Allocate(Size, llvm::alignOf<MemberExpr>()); local
3233 ObjCMessageExpr *Mem; local
3256 ObjCMessageExpr *Mem; local
3279 ObjCMessageExpr *Mem; local
3293 ObjCMessageExpr *Mem = alloc(Context, NumArgs, NumStoredSelLocs); local
3562 void *Mem = C.Allocate(sizeof(DesignatedInitExpr) + local
3571 void *Mem = C.Allocate(sizeof(DesignatedInitExpr) + local
3825 void *Mem = C.Allocate(sizeof(ObjCArrayLiteral) local
3833 void *Mem = C.Allocate(sizeof(ObjCArrayLiteral) local
3884 void *Mem = C.Allocate(sizeof(ObjCDictionaryLiteral) + local
3895 void *Mem = C.Allocate(sizeof(ObjCDictionaryLiteral) + local
3907 void *Mem = C.Allocate(sizeof(ObjCSubscriptRefExpr)); local
[all...]
H A DASTContext.cpp846 void *Mem = Allocate(sizeof(AttrVec)); local
847 Result = new (Mem) AttrVec;
2872 void *Mem = Allocate(sizeof(TemplateSpecializationType) + local
2877 = new (Mem) TemplateSpecializationType(Template, Args, NumArgs, CanonType,
2914 void *Mem = Allocate((sizeof(TemplateSpecializationType) + local
2917 Spec = new (Mem) TemplateSpecializationType(CanonTemplate,
3068 void *Mem = Allocate((sizeof(DependentTemplateSpecializationType) + local
3071 T = new (Mem) DependentTemplateSpecializationType(Keyword, NNS,
3188 void *Mem = Allocate(Size, TypeAlignment); local
3190 new (Mem) ObjCObjectTypeImp
3218 void *Mem = Allocate(sizeof(ObjCObjectPointerType), TypeAlignment); local
3244 void *Mem = Allocate(sizeof(ObjCInterfaceType), TypeAlignment); local
[all...]
/external/clang/lib/Analysis/
H A DCFG.cpp1580 void *Mem = cfg->getAllocator().Allocate(sizeof(DeclStmt), A);
1581 DeclStmt *DSNew = new (Mem) DeclStmt(DG, D->getLocation(), GetEndLoc(D));
3273 CFGBlock *Mem = getAllocator().Allocate<CFGBlock>(); local
3274 new (Mem) CFGBlock(NumBlockIDs++, BlkBVC, this);
3275 Blocks.push_back(Mem, BlkBVC);
/external/clang/lib/Sema/
H A DSemaDeclObjC.cpp2069 ObjCMethodList *Mem = BumpAlloc.Allocate<ObjCMethodList>(); local
2070 Previous->Next = new (Mem) ObjCMethodList(Method, 0);
/external/sqlite/dist/orig/
H A Dsqlite3.c3632 typedef struct Mem sqlite3_value;
8453 typedef struct Mem Mem; typedef in typeref:struct:Mem
8478 Mem *pMem; /* Used when p4type is P4_MEM */
8531 #define P4_MEM (-8) /* P4 is a pointer to a Mem* structure */
8553 ** The Vdbe.aColName array contains 5n Mem structures, where n is the
10335 Mem *aMem; /* Values */
12947 Mem *aMem; /* Array of memory cells for parent frame */
12962 #define VdbeFrameMem(p) ((Mem *)&((u8 *)p)[ROUND8(sizeof(VdbeFrame))])
12970 ** Internally, the vdbe manipulates nearly all SQL values as Mem
12974 struct Mem { struct
[all...]
/external/sqlite/dist/
H A Dsqlite3.c3632 typedef struct Mem sqlite3_value;
8453 typedef struct Mem Mem; typedef in typeref:struct:Mem
8478 Mem *pMem; /* Used when p4type is P4_MEM */
8531 #define P4_MEM (-8) /* P4 is a pointer to a Mem* structure */
8553 ** The Vdbe.aColName array contains 5n Mem structures, where n is the
10335 Mem *aMem; /* Values */
12947 Mem *aMem; /* Array of memory cells for parent frame */
12962 #define VdbeFrameMem(p) ((Mem *)&((u8 *)p)[ROUND8(sizeof(VdbeFrame))])
12970 ** Internally, the vdbe manipulates nearly all SQL values as Mem
12974 struct Mem { struct
[all...]

Completed in 1929 milliseconds

12