Home
last modified time | relevance | path

Searched refs:bytes_used (Results 1 - 14 of 14) sorted by relevance

/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/
H A Dcounting_allocator.h44 explicit CountingAllocator(int64_t* bytes_used) : bytes_used_(bytes_used) {} in CountingAllocator() argument
45 CountingAllocator(int64_t* bytes_used, int64_t* instance_count) in CountingAllocator() argument
46 : bytes_used_(bytes_used), instance_count_(instance_count) {} in CountingAllocator()
H A Dbtree.h1400 size_type bytes_used() const { in bytes_used() function in absl::container_internal::btree
1435 return (bytes_used() - size() * sizeof(value_type)) / in overhead()
/third_party/skia/third_party/externals/libjpeg-turbo/
H A Djmemmgr.c110 size_t bytes_used; /* how many bytes already used within pool */ member
118 size_t bytes_used; /* how many bytes already used within pool */ member
211 fprintf(stderr, " Large chunk used %ld\n", (long)lhdr_ptr->bytes_used); in print_mem_stats()
217 (long)shdr_ptr->bytes_used, (long)shdr_ptr->bytes_left); in print_mem_stats()
328 hdr_ptr->bytes_used = 0; in alloc_small()
341 data_ptr += hdr_ptr->bytes_used; /* point to place for object */ in alloc_small()
342 hdr_ptr->bytes_used += sizeofobject; in alloc_small()
404 hdr_ptr->bytes_used = sizeofobject; in alloc_large()
1033 space_freed = lhdr_ptr->bytes_used + in free_pool()
1047 space_freed = shdr_ptr->bytes_used in free_pool()
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/container/
H A Dbtree_benchmark.cc655 const double bytes_used = in ContainerInfo() local
656 b.bytes_used() + b.size() * sizeof(BigType<Size, Size>); in ContainerInfo()
657 const double bytes_per_value = bytes_used / b.size(); in ContainerInfo()
658 BtreeContainerInfoLog(b, bytes_used, bytes_per_value); in ContainerInfo()
663 const double bytes_used = in ContainerInfo() local
664 b.bytes_used() + b.size() * sizeof(BigType<Size, Size>); in ContainerInfo()
665 const double bytes_per_value = bytes_used / b.size(); in ContainerInfo()
666 BtreeContainerInfoLog(b, bytes_used, bytes_per_value); in ContainerInfo()
H A Dbtree_test.cc2819 int64_t bytes_used = 0; in TEST()
2820 Alloc alloc(&bytes_used); in TEST()
2826 EXPECT_GT(bytes_used, set.size() * sizeof(int)); in TEST()
2832 int64_t bytes_used = 0; in TEST()
2833 Alloc alloc(&bytes_used); in TEST()
2837 EXPECT_GT(bytes_used, set.size() * sizeof(int)); in TEST()
2843 int64_t bytes_used = 0; in TEST()
2844 Alloc alloc(&bytes_used); in TEST()
2849 EXPECT_GT(bytes_used, set.size() * sizeof(int)); in TEST()
2874 int64_t bytes_used in TEST()
[all...]
/third_party/mbedtls/include/psa/
H A Dcrypto_builtin_key_derivation.h113 uint8_t MBEDTLS_PRIVATE(bytes_used);
/third_party/ffmpeg/libavcodec/
H A Dindeo3.c759 int bytes_used, ret; in parse_bintree() local
838 bytes_used = decode_cell(ctx, avctx, plane, &curr_cell, in parse_bintree() local
840 if (bytes_used < 0) in parse_bintree()
843 UPDATE_BITPOS(bytes_used << 3); in parse_bintree()
844 ctx->next_cell_data += bytes_used; in parse_bintree()
/third_party/skia/third_party/externals/freetype/src/truetype/
H A Dttgxvar.c267 FT_UInt bytes_used; in ft_var_readpackeddeltas() local
278 bytes_used = 0; in ft_var_readpackeddeltas()
280 while ( i < delta_cnt && bytes_used < size ) in ft_var_readpackeddeltas()
285 bytes_used++; in ft_var_readpackeddeltas()
296 bytes_used += 2 * ( cnt + 1 ); in ft_var_readpackeddeltas()
297 if ( bytes_used > size ) in ft_var_readpackeddeltas()
310 bytes_used += cnt + 1; in ft_var_readpackeddeltas()
311 if ( bytes_used > size ) in ft_var_readpackeddeltas()
/third_party/mesa3d/src/compiler/nir/
H A Dnir_deref.c1278 unsigned bytes_used = util_last_bit(mask) * (cast_bit_size / 8); in is_vector_bitcast_deref() local
1281 if (bytes_used > parent_bytes) in is_vector_bitcast_deref()
/third_party/ntfs-3g/include/ntfs-3g/
H A Dlayout.h2244 le64 bytes_used; /* How many bytes of the quota are in use. */ member
/third_party/ntfs-3g/ntfsprogs/
H A Dntfsinfo.c1635 le64_to_cpu(data->quota_q.bytes_used), in ntfs_dump_index_data()
1637 le64_to_cpu(data->quota_q.bytes_used)); in ntfs_dump_index_data()
H A Dmkntfs.c2932 idx_entry_q1_data->bytes_used = const_cpu_to_le64(0x00); in initialize_quota()
2959 idx_entry_q2_data->bytes_used = const_cpu_to_le64(0x00); in initialize_quota()
/third_party/mbedtls/library/
H A Dpsa_crypto.c5964 /* Initially we need a new block so bytes_used is equal to block size*/ in psa_key_derivation_pbkdf2_read()
5965 pbkdf2->bytes_used = prf_output_length; in psa_key_derivation_pbkdf2_read()
5975 uint8_t n = prf_output_length - pbkdf2->bytes_used; in psa_key_derivation_pbkdf2_read()
5979 memcpy(output, pbkdf2->output_block + pbkdf2->bytes_used, n); in psa_key_derivation_pbkdf2_read()
5982 pbkdf2->bytes_used += n; in psa_key_derivation_pbkdf2_read()
5989 pbkdf2->bytes_used = 0; in psa_key_derivation_pbkdf2_read()
/third_party/rust/crates/libc/src/unix/bsd/apple/
H A Dmod.rs784 pub bytes_used: ::size_t,

Completed in 74 milliseconds