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

  /external/chromium_org/third_party/tcmalloc/chromium/src/
profiledata.h 147 static const int kBufferLength = 1 << 18; // For eviction buffer
profiledata.cc 57 const int ProfileData::kBufferLength;
68 if (num_evicted_ + nslots > kBufferLength) {
71 assert(nslots <= kBufferLength);
114 evict_ = new Slot[kBufferLength];
179 if (num_evicted_ + 3 > kBufferLength) {
  /external/chromium_org/third_party/tcmalloc/vendor/src/
profiledata.h 147 static const int kBufferLength = 1 << 18; // For eviction buffer
profiledata.cc 57 const int ProfileData::kBufferLength;
68 if (num_evicted_ + nslots > kBufferLength) {
71 assert(nslots <= kBufferLength);
114 evict_ = new Slot[kBufferLength];
179 if (num_evicted_ + 3 > kBufferLength) {
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io_test/
mount_test.cc 225 const int kBufferLength = 100;
226 char buffer[kBufferLength];
227 EXPECT_EQ(0, dev_null->Read(0, &buffer[0], kBufferLength, &result_bytes));
247 const int kBufferLength = 100;
248 char buffer[kBufferLength];
250 memset(&buffer[0], 0x1, kBufferLength);
251 EXPECT_EQ(0, dev_zero->Read(0, &buffer[0], kBufferLength, &result_bytes));
252 EXPECT_EQ(kBufferLength, result_bytes);
254 char zero_buffer[kBufferLength];
255 memset(&zero_buffer[0], 0, kBufferLength);
    [all...]

Completed in 546 milliseconds