Searched defs:total_size (Results 1 - 25 of 147) sorted by relevance

123456

/external/chromium_org/third_party/brotli/src/brotli/dec/
H A Dsafe_malloc.c27 const uint64_t total_size = nmemb * size; local
30 if (total_size != (size_t)total_size) return 0;
H A Dhuffman.c81 int total_size; /* sum of root table size and 2nd level table sizes */ local
112 total_size = table_size;
118 for (key = 0; key < total_size; ++key) {
122 return total_size;
138 mask = total_size - 1;
146 total_size += table_size;
159 return total_size;
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/d3d1xshader/src/
H A Ddxbc_assemble.cpp37 size_t total_size = sizeof(dxbc_container_header) + data_size; local
38 dxbc_container_header* header = (dxbc_container_header*)malloc(total_size);
45 header->total_size = bswap_le32(total_size);
58 return std::make_pair((void*)header, total_size);
/external/mesa3d/src/gallium/state_trackers/d3d1x/d3d1xshader/src/
H A Ddxbc_assemble.cpp37 size_t total_size = sizeof(dxbc_container_header) + data_size; local
38 dxbc_container_header* header = (dxbc_container_header*)malloc(total_size);
45 header->total_size = bswap_le32(total_size);
58 return std::make_pair((void*)header, total_size);
/external/chromium_org/v8/src/
H A Dpreparse-data.cc65 int total_size = PreparseDataConstants::kHeaderSize + function_size; local
66 unsigned* data = NewArray<unsigned>(total_size);
75 total_size * sizeof(unsigned));
/external/blktrace/btt/
H A Dmmap.c37 static off_t cur_min, cur, cur_max, total_size; variable
87 len = min_len(DEF_LEN, total_size - cur_min);
117 total_size = buf.st_size;
149 return 100.0 * ((double)cur / (double)total_size);
/external/chromium_org/cc/resources/
H A Dtile.cc94 size_t total_size = 0; local
96 total_size += managed_state_.tile_versions[mode].GPUMemoryUsageInBytes();
97 return total_size;
/external/chromium_org/chrome/browser/extensions/api/image_writer_private/
H A Doperation_chromeos.cc119 int64 total_size) {
120 int progress = kProgressComplete * num_bytes_burnt / total_size;
117 OnBurnProgress(const std::string& target_path, int64 num_bytes_burnt, int64 total_size) argument
/external/chromium_org/chromeos/dbus/
H A Dimage_burner_client.cc106 int64 total_size; local
109 !reader.PopInt64(&total_size)) {
115 total_size);
/external/chromium_org/net/server/
H A Dhttp_connection.h95 int total_size() const { return total_size_; } function in class:net::HttpConnection::QueuedWriteIOBuffer
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A Dsvga_screen_cache.h123 unsigned total_size; member in struct:svga_host_surface_cache
H A Dsvga_screen_cache.c46 unsigned bw, bh, bpb, total_size, i; local
60 total_size = 0;
67 total_size += img_size;
70 total_size *= key->numFaces;
72 return total_size;
135 assert(surf_size <= cache->total_size);
136 if (surf_size > cache->total_size)
137 cache->total_size = 0; /* should never happen, but be safe */
139 cache->total_size -= surf_size;
179 cache->total_size
[all...]
/external/chromium_org/tools/cygprofile/
H A Dpatch_orderfile.py106 total_size = 0 variable
109 total_size = total_size + size variable
117 sys.stderr.write ("total_size: " + str(total_size) + "\n")
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_screen_cache.h123 unsigned total_size; member in struct:svga_host_surface_cache
/external/qemu/include/hw/
H A Delf_ops.h186 int size, i, total_size; local
232 total_size = 0;
251 total_size += mem_size;
266 return total_size;
/external/chromium_org/chrome/utility/media_galleries/
H A Dipc_data_source.cc13 IPCDataSource::IPCDataSource(int64 total_size) argument
14 : total_size_(total_size),
/external/chromium_org/gpu/command_buffer/service/
H A Dprogram_cache.cc109 const size_t total_size = shader0_size + shader1_size + map_size; local
111 scoped_ptr<unsigned char[]> buffer(new unsigned char[total_size]);
132 total_size, reinterpret_cast<unsigned char*>(result));
/external/chromium_org/media/formats/mp4/
H A Davc.cc140 int total_size = 0; local
142 total_size += avc_config.sps_list[i].size() + kAnnexBStartCodeSize;
144 total_size += avc_config.pps_list[i].size() + kAnnexBStartCodeSize;
145 buffer->reserve(total_size);
/external/chromium_org/net/base/
H A Dupload_data_stream.cc147 uint64 total_size = 0; local
150 total_size += reader->GetContentLength();
152 total_size_ = total_size;
/external/chromium_org/third_party/libpng/
H A Dpngmem.c176 png_uint_32 total_size; local
196 total_size = ((png_uint_32)65536L) * (png_uint_32)num_blocks+16;
198 table = farmalloc(total_size);
/external/chromium_org/third_party/libwebp/utils/
H A Dutils.c165 const uint64_t total_size = nmemb * size; local
168 if (total_size != (size_t)total_size) return 0;
175 if (mem_limit > 0 && total_mem + total_size >= mem_limit) {
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_debug_memory.c267 size_t total_size = 0; local
298 total_size += hdr->size;
309 if(total_size) {
311 (unsigned long) (total_size + 1023)/1024);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/
H A Dnv50_resource.h49 uint32_t total_size; member in struct:nv50_miptree
/external/chromium_org/tools/usb_gadget/
H A Dusb_descriptors.py172 def total_size(self): member in class:Descriptor
232 def total_size(self): member in class:DescriptorContainer
233 return self.struct_size + sum([descriptor.total_size
279 ConfigurationDescriptor.AddComputedField('wTotalLength', 'H', 'total_size')
/external/chromium_org/v8/src/third_party/kernel/tools/perf/util/
H A Djitdump.h19 uint32_t total_size; /* total size of header */ member in struct:jitheader
37 uint32_t total_size; member in struct:jr_prefix

Completed in 3134 milliseconds

123456