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

  /external/chromium_org/gpu/command_buffer/client/
transfer_buffer_unittest.cc 176 unsigned int size_allocated = 0; local
178 kTransferBufferSize + 1, &size_allocated);
180 EXPECT_EQ(kTransferBufferSize - kStartingOffset, size_allocated);
197 unsigned int size_allocated = 0; local
199 void* ptr = transfer_buffer_->AllocUpTo(8u, &size_allocated);
201 EXPECT_EQ(8u, size_allocated);
339 unsigned int size_allocated = 0; local
340 void* ptr = transfer_buffer_->AllocUpTo(kSize1, &size_allocated);
342 EXPECT_EQ(kSize1, size_allocated);
358 ptr = transfer_buffer_->AllocUpTo(kSize2, &size_allocated);
402 unsigned int size_allocated = 0; local
452 unsigned int size_allocated = 0; local
    [all...]
transfer_buffer.cc 129 unsigned int size, unsigned int* size_allocated) {
130 DCHECK(size_allocated);
139 *size_allocated = std::min(max_size, size);
140 bytes_since_last_flush_ += *size_allocated;
141 return ring_buffer_->Alloc(*size_allocated);
transfer_buffer.h 42 virtual void* AllocUpTo(unsigned int size, unsigned int* size_allocated) = 0;
73 unsigned int size, unsigned int* size_allocated) OVERRIDE;
gles2_implementation_unittest.cc 132 unsigned int size, unsigned int* size_allocated) OVERRIDE;
263 unsigned int size, unsigned int* size_allocated) {
264 EXPECT_TRUE(size_allocated != NULL);
277 *size_allocated = size;
    [all...]
  /external/compiler-rt/lib/asan/
asan_stats.h 71 uptr size_allocated; member in struct:__asan::AsanMallocStats
asan_stats.cc 118 malloc_stats->size_allocated = stats.mmaped;
  /external/chromium_org/third_party/tcmalloc/chromium/src/
libc_override_osx.h 183 stats->size_allocated = 0;
  /external/chromium_org/third_party/tcmalloc/vendor/src/
libc_override_osx.h 183 stats->size_allocated = 0;
  /external/valgrind/main/perf/
tinycc.c 2143 int size_allocated; member in struct:CString
    [all...]

Completed in 160 milliseconds