/external/tensorflow/tensorflow/core/framework/ |
tracking_allocator_test.cc | 86 EXPECT_EQ(4, records[0].alloc_bytes); 87 EXPECT_EQ(12, records[1].alloc_bytes); 110 EXPECT_LE(4, records[0].alloc_bytes); 111 EXPECT_GE(-4, records[1].alloc_bytes); 112 EXPECT_LE(12, records[2].alloc_bytes); 113 EXPECT_GE(-12, records[3].alloc_bytes); 136 EXPECT_EQ(12, records[0].alloc_bytes); 137 EXPECT_EQ(-12, records[1].alloc_bytes); 138 EXPECT_EQ(4, records[2].alloc_bytes); 139 EXPECT_EQ(-4, records[3].alloc_bytes); [all...] |
tracking_allocator.h | 48 : alloc_bytes(a_btyes), alloc_micros(a_micros) {} 51 int64 alloc_bytes; member in struct:tensorflow::AllocRecord
|
/external/libchrome/base/debug/ |
thread_heap_usage_tracker.h | 28 uint64_t alloc_bytes; member in struct:base::debug::ThreadHeapUsage 41 // The maximal value of |alloc_bytes| - |free_bytes| seen for this thread.
|
/external/ltp/testcases/kernel/mem/mtest01/ |
mtest01.c | 82 unsigned long bytecount, alloc_bytes, max_pids; local 216 alloc_bytes = FIVE_HUNDRED_MB; 218 alloc_bytes = (unsigned long)maxbytes; 235 alloc_bytes = ONE_GB; 237 alloc_bytes = (unsigned long)maxbytes; 253 alloc_bytes = MIN(THREE_GB, maxbytes); 273 if (alloc_bytes && bytecount >= alloc_bytes)
|
/external/tensorflow/tensorflow/python/profiler/internal/ |
run_metadata_test.py | 146 self.assertGreater(mm_allocs[0].alloc_bytes, 0) 148 self.assertLess(mm_allocs[1].alloc_bytes, 0) 150 self.assertEqual(mm_allocs[0].alloc_bytes + mm_allocs[1].alloc_bytes, 0)
|
/external/libcups/cups/ |
string.c | 534 _cupsStrStatistics(size_t *alloc_bytes, /* O - Allocated bytes */ 571 if (alloc_bytes) 572 *alloc_bytes = abytes;
|
string-private.h | 196 extern size_t _cupsStrStatistics(size_t *alloc_bytes, size_t *total_bytes);
|
/art/tools/ahat/etc/ |
hprofdump.py | 183 alloc_bytes = readu8(hprof) 192 alloc_bytes = readu4(hprof)
|
/external/tensorflow/tensorflow/core/common_runtime/ |
step_stats_collector.cc | 191 r->set_alloc_bytes(record.alloc_bytes); 469 cur_bytes += r.alloc_bytes;
|
/external/tensorflow/tensorflow/core/profiler/internal/ |
tfprof_timeline.cc | 156 allocs[alloc.alloc_micros()] += alloc.alloc_bytes(); 157 dev.tracked_allocations[alloc.alloc_micros()] += alloc.alloc_bytes();
|