HomeSort by relevance Sort by last modified time
    Searched refs:AllocType (Results 1 - 12 of 12) sorted by null

  /external/webkit/Source/JavaScriptCore/wtf/wince/
FastMallocWinCE.h 86 enum AllocType { // Start with an unusual number instead of zero, because zero is common.
106 // the allocation memory which is assigned one of the AllocType
114 // Return the AllocType tag associated with the allocated block p.
115 inline AllocType fastMallocMatchValidationType(const void* p)
118 return static_cast<AllocType>(*type);
121 // Return the address of the AllocType tag associated with the allocated block p.
127 // Set the AllocType tag to be associaged with the allocated block p.
128 inline void setFastMallocMatchValidationType(void* p, AllocType allocType)
131 *type = static_cast<AllocAlignmentInteger>(allocType);
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
FastMalloc.h 97 enum AllocType { // Start with an unusual number instead of zero, because zero is common.
116 // the allocation memory which is assigned one of the AllocType
124 // Return the AllocType tag associated with the allocated block p.
125 inline AllocType fastMallocMatchValidationType(const void* p)
128 return static_cast<AllocType>(*type);
131 // Return the address of the AllocType tag associated with the allocated block p.
137 // Set the AllocType tag to be associaged with the allocated block p.
138 inline void setFastMallocMatchValidationType(void* p, AllocType allocType)
141 *type = static_cast<AllocAlignmentInteger>(allocType);
    [all...]
  /external/compiler-rt/lib/asan/
asan_report.h 39 AllocType alloc_type,
40 AllocType dealloc_type);
asan_allocator.h 32 enum AllocType {
206 AllocType alloc_type);
207 void asan_free(void *ptr, StackTrace *stack, AllocType alloc_type);
asan_allocator.cc 502 AllocType alloc_type) {
594 static void Deallocate(u8 *ptr, StackTrace *stack, AllocType alloc_type) {
617 (AllocType)m->alloc_type, (AllocType)alloc_type);
697 AllocType alloc_type) {
704 void asan_free(void *ptr, StackTrace *stack, AllocType alloc_type) {
asan_allocator2.cc 301 AllocType alloc_type) {
418 static void Deallocate(void *ptr, StackTrace *stack, AllocType alloc_type) {
436 (AllocType)m->alloc_type, (AllocType)alloc_type);
590 AllocType alloc_type) {
595 void asan_free(void *ptr, StackTrace *stack, AllocType alloc_type) {
asan_report.cc 525 AllocType alloc_type,
526 AllocType dealloc_type) {
  /external/clang/lib/Sema/
SemaExprCXX.cpp     [all...]
TreeTransform.h     [all...]
  /external/llvm/lib/Analysis/
MemoryBuiltins.cpp 33 enum AllocType {
44 AllocType AllocTy;
88 static const AllocFnsTy *getAllocationData(const Value *V, AllocType AllocTy,
  /external/clang/lib/CodeGen/
CGExprCXX.cpp 820 QualType AllocType, llvm::Value *NewPtr) {
822 CharUnits Alignment = CGF.getContext().getTypeAlignInChars(AllocType);
823 switch (CGF.getEvaluationKind(AllocType)) {
825 CGF.EmitScalarInit(Init, 0, CGF.MakeAddrLValue(NewPtr, AllocType,
830 CGF.EmitComplexExprIntoLValue(Init, CGF.MakeAddrLValue(NewPtr, AllocType,
    [all...]
  /external/clang/include/clang/Sema/
Sema.h     [all...]

Completed in 85 milliseconds