Home
last modified time | relevance | path

Searched refs:alloc_bytes (Results 1 – 10 of 10) sorted by relevance

/external/tensorflow/tensorflow/core/framework/
Dtracking_allocator_test.cc86 EXPECT_EQ(4, records[0].alloc_bytes); in TEST()
87 EXPECT_EQ(12, records[1].alloc_bytes); in TEST()
110 EXPECT_LE(4, records[0].alloc_bytes); in TEST()
111 EXPECT_GE(-4, records[1].alloc_bytes); in TEST()
112 EXPECT_LE(12, records[2].alloc_bytes); in TEST()
113 EXPECT_GE(-12, records[3].alloc_bytes); in TEST()
136 EXPECT_EQ(12, records[0].alloc_bytes); in TEST()
137 EXPECT_EQ(-12, records[1].alloc_bytes); in TEST()
138 EXPECT_EQ(4, records[2].alloc_bytes); in TEST()
139 EXPECT_EQ(-4, records[3].alloc_bytes); in TEST()
Dtracking_allocator.h48 : alloc_bytes(a_btyes), alloc_micros(a_micros) {} in AllocRecord()
51 int64 alloc_bytes; member
Dstep_stats.proto17 int64 alloc_bytes = 2; field
/external/ltp/testcases/kernel/mem/mtest01/
Dmtest01.c82 unsigned long bytecount, alloc_bytes, max_pids; in main() local
216 alloc_bytes = FIVE_HUNDRED_MB; in main()
218 alloc_bytes = (unsigned long)maxbytes; in main()
235 alloc_bytes = ONE_GB; in main()
237 alloc_bytes = (unsigned long)maxbytes; in main()
253 alloc_bytes = MIN(THREE_GB, maxbytes); in main()
273 if (alloc_bytes && bytecount >= alloc_bytes) in main()
/external/tensorflow/tensorflow/python/profiler/internal/
Drun_metadata_test.py146 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/
Dstring.c534 _cupsStrStatistics(size_t *alloc_bytes, /* O - Allocated bytes */ in _cupsStrStatistics() argument
571 if (alloc_bytes) in _cupsStrStatistics()
572 *alloc_bytes = abytes; in _cupsStrStatistics()
Dstring-private.h195 extern size_t _cupsStrStatistics(size_t *alloc_bytes, size_t *total_bytes);
/external/libchrome/base/debug/
Dthread_heap_usage_tracker.h28 uint64_t alloc_bytes; member
/external/tensorflow/tensorflow/core/profiler/internal/
Dtfprof_timeline.cc156 allocs[alloc.alloc_micros()] += alloc.alloc_bytes(); in TrackNode()
157 dev.tracked_allocations[alloc.alloc_micros()] += alloc.alloc_bytes(); in TrackNode()
/external/tensorflow/tensorflow/core/common_runtime/
Dstep_stats_collector.cc191 r->set_alloc_bytes(record.alloc_bytes); in Finalize()
469 cur_bytes += r.alloc_bytes; in ReportAllocsOnResourceExhausted()