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

  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/gcc/
attributes.d 481 * @allocSize(0) extern(C) void* malloc(size_t size);
482 * @allocSize(2,1) extern(C) void* reallocarray(void *ptr, size_t nmemb,
484 * @allocSize(0,1) void* my_calloc(size_t element_size, size_t count,
488 auto allocSize(int sizeArgIdx, int numArgIdx = int.min)
493 auto allocSize(A...)(A arguments)
495 assert(false, "allocSize attribute argument value is not an integer constant");
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExprCXX.cpp 1409 ValueTy AllocSize;
1423 ValueTy AllocSize, bool PassAlignmentToPlacementDelete,
1427 OperatorDelete(OperatorDelete), Ptr(Ptr), AllocSize(AllocSize),
1460 DeleteArgs.add(Traits::get(CGF, AllocSize),
1489 llvm::Value *AllocSize,
1511 AllocSize,
1526 DominatingValue<RValue>::save(CGF, RValue::get(AllocSize));
1575 llvm::Value *allocSize =
1601 allocatorArgs.add(RValue::get(allocSize), getContext().getSizeType())
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/experimental/allocator/building_blocks/
bitmapped_block.d 1673 static void testAlloc(Allocator)(ref Allocator a, size_t allocSize)
1684 // Each threads allocates 'allocSize'
1687 void[] b = a.allocate(allocSize);
1688 assert(b.length == allocSize);
2069 int allocSize = numBlocks[uniform(0, 3, rnd)] * 16;
2073 if (event) buf[iter] = a.allocate(allocSize);
2074 else buf[iter] = a.allocateFresh(allocSize);
2078 assert(buf[iter].length == allocSize);
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/internal/gc/impl/conservative/
gc.d 3951 void setPointerBitmapSmall(void* p, size_t s, size_t allocSize, uint attr, const TypeInfo ti) nothrow
3954 setPointerBitmap(p, s, allocSize, ti, attr);
3958 void setPointerBitmap(void* p, size_t s, size_t allocSize, const TypeInfo ti, uint attr) nothrow
3973 s = allocSize;
4020 if (s < allocSize)
4023 is_pointer.clrRange(offset/(void*).sizeof, (allocSize - s)/(void*).sizeof);
4031 s = allocSize;

Completed in 34 milliseconds