HomeSort by: relevance | last modified time | path
    Searched refs:AllocType (Results 1 - 25 of 25) sorted by relevancy

  /src/sys/external/bsd/gnu-efi/dist/apps/
AllocPages.c 118 INTN AllocType = -1;
151 AllocType = xtoi(argv[1]);
156 if ( (AllocType < 0) || (AllocType > 2)) {
157 Print(L"Invalid AllocType\n");
176 Print(L"AllocatPage(%d,%d,%d,%lx)\n", AllocType, MemType, NumPages, Addr);
178 efi_status = uefi_call_wrapper(BS->AllocatePages, 4, AllocType, MemType, NumPages, &Addr);
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_allocator.h 26 enum AllocType {
69 AllocType GetAllocType() const;
221 AllocType alloc_type);
222 void asan_free(void *ptr, BufferedStackTrace *stack, AllocType alloc_type);
224 BufferedStackTrace *stack, AllocType alloc_type);
asan_report.h 59 AllocType alloc_type,
60 AllocType dealloc_type);
asan_allocator.cc 400 AllocType alloc_type, bool can_fill) {
611 BufferedStackTrace *stack, AllocType alloc_type) {
635 ReportAllocTypeMismatch((uptr)ptr, stack, (AllocType)m->alloc_type,
636 (AllocType)alloc_type);
816 AllocType AsanChunkView::GetAllocType() const {
817 return (AllocType)chunk_->alloc_type;
866 void asan_free(void *ptr, BufferedStackTrace *stack, AllocType alloc_type) {
871 BufferedStackTrace *stack, AllocType alloc_type) {
917 AllocType alloc_type) {
asan_errors.h 113 AllocType alloc_type, dealloc_type;
118 AllocType alloc_type_, AllocType dealloc_type_)
asan_report.cc 239 AllocType alloc_type,
240 AllocType dealloc_type) {
  /src/external/gpl3/gcc.old/dist/libsanitizer/asan/
asan_allocator.h 26 enum AllocType {
67 AllocType GetAllocType() const;
207 AllocType alloc_type);
208 void asan_free(void *ptr, BufferedStackTrace *stack, AllocType alloc_type);
210 BufferedStackTrace *stack, AllocType alloc_type);
asan_report.h 58 AllocType alloc_type,
59 AllocType dealloc_type);
asan_allocator.cpp 484 AllocType alloc_type, bool can_fill) {
676 BufferedStackTrace *stack, AllocType alloc_type) {
700 ReportAllocTypeMismatch((uptr)ptr, stack, (AllocType)m->alloc_type,
701 (AllocType)alloc_type);
906 AllocType AsanChunkView::GetAllocType() const {
907 return (AllocType)chunk_->alloc_type;
954 void asan_free(void *ptr, BufferedStackTrace *stack, AllocType alloc_type) {
959 BufferedStackTrace *stack, AllocType alloc_type) {
1016 AllocType alloc_type) {
asan_errors.h 113 AllocType alloc_type, dealloc_type;
118 AllocType alloc_type_, AllocType dealloc_type_)
asan_report.cpp 242 AllocType alloc_type,
243 AllocType dealloc_type) {
  /src/external/gpl3/gcc/dist/libsanitizer/asan/
asan_allocator.h 26 enum AllocType {
67 AllocType GetAllocType() const;
271 AllocType alloc_type);
272 void asan_free(void *ptr, BufferedStackTrace *stack, AllocType alloc_type);
274 BufferedStackTrace *stack, AllocType alloc_type);
asan_report.h 59 AllocType alloc_type,
60 AllocType dealloc_type);
asan_allocator.cpp 529 AllocType alloc_type, bool can_fill) {
704 BufferedStackTrace *stack, AllocType alloc_type) {
728 ReportAllocTypeMismatch((uptr)ptr, stack, (AllocType)m->alloc_type,
729 (AllocType)alloc_type);
942 AllocType AsanChunkView::GetAllocType() const {
943 return (AllocType)chunk_->alloc_type;
990 void asan_free(void *ptr, BufferedStackTrace *stack, AllocType alloc_type) {
995 BufferedStackTrace *stack, AllocType alloc_type) {
1052 AllocType alloc_type) {
asan_errors.h 113 AllocType alloc_type, dealloc_type;
118 AllocType alloc_type_, AllocType dealloc_type_)
asan_report.cpp 244 AllocType alloc_type,
245 AllocType dealloc_type) {
  /src/external/apache2/llvm/dist/llvm/lib/Support/Windows/
Memory.inc 111 DWORD AllocType = MEM_RESERVE | MEM_COMMIT;
116 AllocType |= MEM_LARGE_PAGES;
136 AllocSize, AllocType, Protect);
  /src/sys/external/bsd/acpica/dist/utilities/
uttrack.c 74 UINT8 AllocType,
392 * AllocType - MEM_MALLOC or MEM_CALLOC
407 UINT8 AllocType,
448 Allocation->AllocType = AllocType;
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExprCXX.cpp 1676 static bool hasNewExtendedAlignment(Sema &S, QualType AllocType) {
1678 S.getASTContext().getTypeAlignIfKnown(AllocType) >
1723 QualType allocType) {
1725 allocType->getBaseElementTypeUnsafe()->getAs<RecordType>();
1750 /*WantAlign*/hasNewExtendedAlignment(S, allocType));
1828 QualType AllocType = TInfo->getType();
1838 TypeIdParens, AllocType, TInfo, ArraySize, DirectInitRange,
1899 QualType AllocType,
1949 auto *Deduced = AllocType->getContainedDeducedType();
1959 = InitializedEntity::InitializeNew(StartLoc, AllocType);
    [all...]
TreeTransform.h 11788 QualType AllocType = AllocTypeInfo->getType();
11795 const ArrayType *ArrayT = SemaRef.Context.getAsArrayType(AllocType);
11803 AllocType = ConsArrayT->getElementType();
11808 AllocType = DepArrayT->getElementType();
11816 /*FIXME:*/ E->getBeginLoc(), E->getTypeIdParens(), AllocType,
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
MemoryBuiltins.cpp 52 enum AllocType : uint8_t {
65 AllocType AllocTy;
141 getAllocationDataForFunction(const Function *Callee, AllocType AllocTy,
178 static Optional<AllocFnsTy> getAllocationData(const Value *V, AllocType AllocTy,
190 getAllocationData(const Value *V, AllocType AllocTy,
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExprCXX.cpp 954 QualType AllocType, Address NewPtr,
957 switch (CGF.getEvaluationKind(AllocType)) {
960 CGF.MakeAddrLValue(NewPtr, AllocType), false);
963 CGF.EmitComplexExprIntoLValue(Init, CGF.MakeAddrLValue(NewPtr, AllocType),
968 = AggValueSlot::forAddr(NewPtr, AllocType.getQualifiers(),
1074 QualType AllocType = E->getAllocatedType();
1076 AllocType->getAsArrayTypeUnsafe())) {
1077 ElementTy = ConvertTypeForMem(AllocType);
1556 QualType allocType = getContext().getBaseElementType(E->getAllocatedType());
1578 CharUnits allocAlign = getContext().getPreferredTypeAlignInChars(allocType);
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
ExprConstant.cpp 3396 QualType AllocType = QualType()) {
3398 AllocType.isNull() ? S->getType() : AllocType);
6623 QualType AllocType = Info.Ctx.getConstantArrayType(ElemType, Size, nullptr,
6625 APValue *Val = Info.createHeapAlloc(E, AllocType, Result);
6627 Result.addArray(Info, E, cast<ConstantArrayType>(AllocType));
6672 QualType AllocType = Pointer.Base.getDynamicAllocType();
6675 << DeallocKind << (*Alloc)->getKind() << AllocType;
9318 QualType AllocType);
9322 QualType AllocType);
    [all...]
  /src/sys/external/bsd/acpica/dist/include/
aclocal.h 1496 UINT8 AllocType;
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Sema.h 6218 QualType AllocType,
6233 bool CheckAllocatedType(QualType AllocType, SourceLocation Loc,
6253 QualType AllocType, bool IsArray,

Completed in 103 milliseconds