HomeSort by relevance Sort by last modified time
    Searched refs:total_memory (Results 1 - 25 of 38) sorted by null

1 2

  /external/libmojo/base/android/
java_runtime.h 19 static void GetMemoryUsage(long* total_memory, long* free_memory);
java_runtime.cc 12 void JavaRuntime::GetMemoryUsage(long* total_memory, long* free_memory) {
16 *total_memory = JNI_Runtime::Java_Runtime_totalMemory(env, runtime);
  /external/tensorflow/tensorflow/core/common_runtime/gpu/
gpu_bfc_allocator.cc 25 GPUBFCAllocator::GPUBFCAllocator(CudaGpuId cuda_gpu_id, size_t total_memory,
27 : GPUBFCAllocator(cuda_gpu_id, total_memory, GPUOptions(), name) {}
29 GPUBFCAllocator::GPUBFCAllocator(CudaGpuId cuda_gpu_id, size_t total_memory,
35 total_memory, gpu_options.allow_growth(), name) {}
gpu_bfc_allocator.h 42 GPUBFCAllocator(CudaGpuId cuda_gpu_id, size_t total_memory,
44 GPUBFCAllocator(CudaGpuId cuda_gpu_id, size_t total_memory,
  /external/autotest/client/site_tests/performance_Tracker/
performance_Tracker.py 47 total_memory = utils.get_mem_total()
48 return (total_memory - utils.get_mem_free()) * 100 / total_memory
  /external/autotest/client/site_tests/enterprise_KioskPerf/
enterprise_KioskPerf.py 45 total_memory = utils.get_mem_total()
46 return (total_memory - utils.get_mem_free()) * 100 / total_memory
  /external/tensorflow/tensorflow/core/grappler/
devices.cc 63 int64 total_memory, available_memory; local
64 CHECK(se->DeviceMemoryUsage(&available_memory, &total_memory));
  /external/perf_data_converter/src/quipper/
perf_data_structures.h 41 uint64_t total_memory; member in struct:quipper::PerfNodeTopologyMetadata
  /external/autotest/client/common_lib/cros/
system_metrics_collector.py 59 total_memory = self.system_facade.get_mem_total()
61 used_memory = total_memory - free_memory
62 usage_percent = (used_memory * 100) / total_memory
  /external/autotest/server/site_tests/enterprise_LongevityTrackerServer/
enterprise_longevity_helper.py 43 total_memory = system_facade.get_mem_total()
44 return ((total_memory - system_facade.get_mem_free())
45 * 100 / total_memory)
  /bionic/libc/malloc_debug/tests/
malloc_debug_unit_tests.cpp 998 size_t total_memory; local
1029 size_t total_memory; local
1052 size_t total_memory; local
1093 size_t total_memory; local
1174 size_t total_memory; local
1210 size_t total_memory; local
1501 size_t total_memory; local
1590 size_t total_memory; local
1652 size_t total_memory; local
1715 size_t total_memory; local
1777 size_t total_memory; local
1867 size_t total_memory; local
    [all...]
  /bionic/libc/kernel/uapi/video/
uvesafb.h 58 __u16 total_memory; member in struct:vbe_ib
  /external/kernel-headers/original/uapi/video/
uvesafb.h 51 __u16 total_memory; member in struct:vbe_ib
  /external/syslinux/com32/hdt/
hdt-dump-vesa.c 46 snprintf(buffer,sizeof(buffer),"%d KB",hardware->vesa.total_memory*64);
hdt-menu-vesa.c 76 hardware->vesa.total_memory * 64);
78 hardware->vesa.total_memory * 64);
hdt-cli-vesa.c 51 more_printf(" Memory (KB) : %d\n", hardware->vesa.total_memory * 64);
  /external/syslinux/com32/mboot/
vesa.h 41 uint16_t total_memory; member in struct:vesa_general_info
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/video/
uvesafb.h 50 __u16 total_memory; member in struct:vbe_ib
  /external/syslinux/com32/lib/sys/vesa/
vesa.h 42 uint16_t total_memory; member in struct:vesa_general_info
  /test/vts/testcases/vts_selftest/test_framework/base_test/
VtsSelfTestBaseTest.py 85 '''Test AndroidDevice class total_memory getter function'''
86 asserts.assertTrue(self.dut.total_memory > 0,
  /bionic/libc/malloc_hooks/
malloc_hooks.cpp 54 uint8_t** info, size_t* overall_size, size_t* info_size, size_t* total_memory,
110 size_t* info_size, size_t* total_memory, size_t* backtrace_size) {
114 *total_memory = 0;
  /bionic/libc/malloc_debug/
PointerData.cpp 452 size_t* total_memory, size_t* backtrace_size) {
475 *total_memory = 0;
478 *total_memory += list_info.size * list_info.num_allocations;
504 size_t total_memory = 0; local
506 total_memory += info.size * info.num_allocations;
509 fprintf(fp, "Total memory: %zu\n", total_memory);
  /bionic/libc/malloc_hooks/tests/
malloc_hooks_tests.cpp 203 size_t total_memory = 300; local
205 get_malloc_leak_info(&info, &overall_size, &info_size, &total_memory, &backtrace_size);
209 EXPECT_EQ(0U, total_memory);
  /external/tensorflow/tensorflow/core/common_runtime/
bfc_allocator.cc 32 BFCAllocator::BFCAllocator(SubAllocator* sub_allocator, size_t total_memory,
42 RoundedBytes(std::min(total_memory, size_t{1048576}));
44 curr_region_allocation_bytes_ = RoundedBytes(total_memory);
48 memory_limit_ = total_memory;
49 stats_.bytes_limit = static_cast<int64>(total_memory);
  /external/autotest/client/site_tests/longevity_Tracker/
longevity_Tracker.py 77 total_memory = utils.get_mem_total()
79 return ((total_memory - free_memory) / total_memory) * 100

Completed in 437 milliseconds

1 2