HomeSort by relevance Sort by last modified time
    Searched defs:allocationSize (Results 1 - 25 of 138) sorted by null

1 2 3 4 5 6

  /external/caliper/caliper/src/main/java/com/google/caliper/worker/
AggregateAllocationsRecorder.java 32 private final AtomicLong allocationSize = new AtomicLong();
40 allocationSize.getAndAdd(size);
52 allocationSize.set(0);
59 return new AllocationStats(allocationCount.get(), allocationSize.get(), reps);
AllocationStats.java 38 private final long allocationSize;
44 * ({@code allocationCount}), cumulative size of the allocations ({@code allocationSize}) and the
47 AllocationStats(int allocationCount, long allocationSize, int reps) {
48 this(allocationCount, allocationSize, reps, ImmutableMultiset.<Allocation>of());
60 private AllocationStats(int allocationCount, long allocationSize, int reps,
64 checkArgument(allocationSize >= 0, "allocationSize (%s) was negative", allocationSize);
65 this.allocationSize = allocationSize;
    [all...]
  /external/skia/src/core/
SkArenaAlloc.cpp 131 uint32_t allocationSize = std::max(objSizeAndOverhead, minAllocationSize);
136 uint32_t mask = allocationSize > (1 << 15) ? (1 << 12) - 1 : 16 - 1;
137 SkASSERT_RELEASE(allocationSize <= maxSize - mask);
138 allocationSize = (allocationSize + mask) & ~mask;
141 char* newBlock = new char[allocationSize];
144 fTotalAlloc += allocationSize;
151 fEnd = fCursor + allocationSize;
SkString.cpp 194 size_t allocationSize = safe.add(len, SizeOfRec() + sizeof(char));
196 allocationSize = safe.alignUp(allocationSize, 4);
200 void* storage = ::operator new (allocationSize);
  /external/skqp/src/core/
SkArenaAlloc.cpp 131 uint32_t allocationSize = std::max(objSizeAndOverhead, minAllocationSize);
136 uint32_t mask = allocationSize > (1 << 15) ? (1 << 12) - 1 : 16 - 1;
137 SkASSERT_RELEASE(allocationSize <= maxSize - mask);
138 allocationSize = (allocationSize + mask) & ~mask;
141 char* newBlock = new char[allocationSize];
144 fTotalAlloc += allocationSize;
151 fEnd = fCursor + allocationSize;
  /external/swiftshader/src/OpenGL/compiler/
PoolAlloc.cpp 250 // much memory the caller asked for. allocationSize is the total
253 size_t allocationSize = TAllocation::allocationSize(numBytes);
255 if (allocationSize < numBytes)
262 if (allocationSize <= pageSize - currentPageOffset) {
267 currentPageOffset += allocationSize;
273 if (allocationSize > pageSize - headerSkip) {
278 size_t numBytesToAlloc = allocationSize + headerSkip;
280 if (numBytesToAlloc < allocationSize)
315 currentPageOffset = (headerSkip + allocationSize + alignmentMask) & ~alignmentMask
    [all...]
PoolAlloc.h 76 inline static size_t allocationSize(size_t size) {
  /frameworks/native/vulkan/include/vulkan/
vulkan_android.h 71 VkDeviceSize allocationSize;
vulkan_core.h     [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/
PoolAlloc.cpp 267 // much memory the caller asked for. allocationSize is the total
270 size_t allocationSize = TAllocation::allocationSize(numBytes);
282 if (currentPageOffset + allocationSize <= pageSize) {
287 currentPageOffset += allocationSize;
293 if (allocationSize + headerSkip > pageSize) {
298 size_t numBytesToAlloc = allocationSize + headerSkip;
331 currentPageOffset = (headerSkip + allocationSize + alignmentMask) & ~alignmentMask;
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/glslang/Include/
PoolAlloc.h 100 inline static size_t allocationSize(size_t size) {
  /external/deqp/external/vulkancts/modules/vulkan/memory/
vktMemoryAllocationTests.cpp 268 const VkDeviceSize allocationSize = (m_config.memorySize ? *m_config.memorySize : (VkDeviceSize)(*m_config.memoryPercentage * (float)memoryHeap.size));
280 if (allocationSize * m_config.memoryAllocationCount * 8 > memoryHeap.size)
287 allocationSize * m_config.memoryAllocationCount >= 1610612736)
314 allocationSize, // allocationSize
352 allocationSize, // allocationSize
603 const VkDeviceSize allocationSize = 1 + (m_rng.getUint64() % maxAllocSize);
605 if ((allocationSize > (deUint64)(heap.maxMemoryUsage - heap.memoryUsage)) && (allocationSize != 1)
    [all...]
  /external/clang/lib/CodeGen/
CGExprCXX.cpp 629 // care because it only overflows if allocationSize does, too, and
636 llvm::APInt allocationSize
644 sizeWithoutCookie = llvm::ConstantInt::get(CGF.SizeTy, allocationSize);
646 allocationSize = allocationSize.uadd_ov(cookieSize, overflow);
654 size = llvm::ConstantInt::get(CGF.SizeTy, allocationSize);
    [all...]
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/
vkrenderframework.cpp     [all...]
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/build-android/generated/include/
vk_safe_struct.h 144 VkDeviceSize allocationSize;
    [all...]
  /external/guice/extensions/persist/lib/
ejb3-persistence.jar 
  /external/mesa3d/include/vulkan/
vulkan.h     [all...]
  /external/skia/third_party/vulkan/vulkan/
vulkan.h     [all...]
  /external/skqp/third_party/vulkan/vulkan/
vulkan.h     [all...]
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/include/vulkan/
vulkan.h     [all...]
vulkan.hpp     [all...]
  /external/vulkan-validation-layers/include/vulkan/
vulkan.h     [all...]
vulkan.hpp     [all...]
  /prebuilts/devtools/tools/lib/
ddmlib-26.0.0.jar 
ddmlib.jar 

Completed in 1685 milliseconds

1 2 3 4 5 6