Searched refs:available_bytes (Results 1 - 5 of 5) sorted by relevance

/external/libchrome/base/
H A Dsys_info_posix.cc102 int64_t* available_bytes,
115 if (available_bytes) {
116 *available_bytes =
101 GetDiskSpaceInfo(const base::FilePath& path, int64_t* available_bytes, int64_t* total_bytes) argument
/external/tensorflow/tensorflow/core/common_runtime/
H A Dbfc_allocator.cc90 size_t available_bytes = memory_limit_ - total_region_allocated_bytes_; local
91 // Rounds available_bytes down to the nearest multiple of kMinAllocationSize.
92 available_bytes = (available_bytes / kMinAllocationSize) * kMinAllocationSize;
96 if (rounded_bytes > available_bytes) {
110 size_t bytes = std::min(curr_region_allocation_bytes_, available_bytes);
/external/squashfs-tools/kernel-2.4/fs/squashfs/
H A Dinode.c1514 int available_bytes = (bytes - byte_offset) > PAGE_CACHE_SIZE ? local
1517 TRACE("bytes %d, i %d, byte_offset %d, available_bytes %d\n",
1518 bytes, i, byte_offset, available_bytes);
1523 available_bytes);
1524 memset(pageaddr + available_bytes, 0,
1525 PAGE_CACHE_SIZE - available_bytes);
1535 available_bytes);
1536 memset(pageaddr + available_bytes, 0,
1537 PAGE_CACHE_SIZE - available_bytes);
/external/python/cpython2/Objects/
H A Dobmalloc.c1798 size_t available_bytes = 0; local
1890 available_bytes += f * size;
1910 total += printone("# bytes in available blocks", available_bytes);
/external/python/cpython3/Objects/
H A Dobmalloc.c2260 size_t available_bytes = 0; local
2353 available_bytes += f * size;
2373 total += printone(out, "# bytes in available blocks", available_bytes);

Completed in 554 milliseconds