HomeSort by relevance Sort by last modified time
    Searched defs:byte_size (Results 1 - 17 of 17) sorted by null

  /external/syslinux/gpxe/src/crypto/axtls/
rsa.c 132 int byte_size = ctx->num_octets; local
137 memset(out_data, 0, byte_size); /* initialise */
140 dat_bi = bi_import(ctx->bi_ctx, in_data, byte_size);
149 block = (uint8_t *)malloc(byte_size);
150 bi_export(ctx->bi_ctx, decrypted_bi, block, byte_size);
157 while (block[i++] == 0xff && i < byte_size);
160 i = byte_size; /*ensure size is 0 */
165 while (block[i++] && i < byte_size);
167 size = byte_size - i;
258 int byte_size = ctx->num_octets local
    [all...]
  /frameworks/av/media/libmedia/
MediaScanner.cpp 241 size_t byte_size = this->size() + sizeof(MediaAlbumArt); local
242 MediaAlbumArt *result = reinterpret_cast<MediaAlbumArt *>(malloc(byte_size));
254 size_t byte_size = sizeof(MediaAlbumArt) + dataSize; local
255 MediaAlbumArt *result = reinterpret_cast<MediaAlbumArt *>(malloc(byte_size));
  /external/mesa3d/src/amd/vulkan/
radv_pipeline_cache.c 54 const size_t byte_size = cache->table_size * sizeof(cache->hash_table[0]); local
55 cache->hash_table = malloc(byte_size);
63 memset(cache->hash_table, 0, byte_size);
214 const size_t byte_size = table_size * sizeof(cache->hash_table[0]); local
218 table = malloc(byte_size);
227 memset(cache->hash_table, 0, byte_size);
  /external/mesa3d/src/gallium/state_trackers/nine/
nine_shader.h 49 DWORD byte_size; /* out, size of data at byte_code */ member in struct:nine_shader_info
  /external/protobuf/src/google/protobuf/
message_lite.cc 292 int byte_size = ByteSize(); local
293 if (byte_size < 0) {
299 STLStringResizeUninitialized(output, old_size + byte_size);
303 if (end - start != byte_size) {
304 ByteSizeConsistencyError(byte_size, ByteSize(), end - start, *this);
325 int byte_size = ByteSize(); local
326 if (size < byte_size) return false;
329 if (end - start != byte_size) {
330 ByteSizeConsistencyError(byte_size, ByteSize(), end - start, *this);
  /external/libxml2/
parserInternals.c 2025 unsigned int byte_size; local
    [all...]
  /external/pdfium/third_party/agg23/
agg_array.h 59 unsigned byte_size() const function in class:agg::pod_array
261 unsigned byte_size() const;
407 unsigned pod_deque<T, S>::byte_size() const function in class:agg::pod_deque
  /art/compiler/debug/
elf_debug_info_writer.h 547 uint32_t byte_size; local
552 byte_size = 1;
557 byte_size = 2;
562 byte_size = 8;
567 byte_size = 4;
572 byte_size = 4;
577 byte_size = 8;
582 byte_size = 2;
587 byte_size = 1;
600 info_.WriteData1(DW_AT_byte_size, byte_size);
    [all...]
  /external/freetype/src/sfnt/
ttsbit.c 1176 FT_UInt byte_size = height * ( ( width + 7 ) >> 3 ); local
    [all...]
  /external/pdfium/third_party/freetype/src/sfnt/
ttsbit.c 1017 FT_UInt byte_size = height * ( ( width + 7 ) >> 3 ); local
1020 if ( bit_size < byte_size &&
1021 byte_size == (FT_UInt)( p_limit - p ) )
    [all...]
  /art/runtime/gc/allocator/
rosalloc.h 57 size_t byte_size = rosalloc->free_page_run_size_map_[pm_idx]; variable
58 DCHECK_GE(byte_size, static_cast<size_t>(0));
59 DCHECK_ALIGNED(byte_size, kPageSize);
60 return byte_size;
62 void SetByteSize(RosAlloc* rosalloc, size_t byte_size)
64 DCHECK_EQ(byte_size % kPageSize, static_cast<size_t>(0));
67 rosalloc->free_page_run_size_map_[pm_idx] = byte_size;
104 size_t byte_size = ByteSize(rosalloc); variable
105 DCHECK_EQ(byte_size % kPageSize, static_cast<size_t>(0));
107 rosalloc->ReleasePageRange(start, start + byte_size);
    [all...]
rosalloc.cc 337 const size_t byte_size = num_pages * kPageSize; local
341 for (size_t i = 0; i < byte_size / sizeof(uintptr_t); ++i) {
346 memset(ptr, 0, byte_size);
351 << "-0x" << (reinterpret_cast<intptr_t>(ptr) + byte_size)
360 fpr->SetByteSize(this, byte_size);
456 return byte_size;
    [all...]
  /system/bt/stack/include/
port_api.h 55 uint8_t byte_size; member in struct:__anon113914
  /system/bt/stack/rfcomm/
rfc_int.h 123 uint8_t byte_size; member in struct:__anon113980::__anon113981::__anon113986
  /art/runtime/gc/collector/
concurrent_copying.cc 2189 size_t byte_size; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Enquire/
Enquire.c 702 int fprop ARGS((int byte_size));
703 int dprop ARGS((int byte_size));
704 int ldprop ARGS((int byte_size));
720 Void endian ARGS((int byte_size));
1849 Volatile int byte_size, c_signed; local
1986 Volatile int byte_size; local
    [all...]
  /toolchain/binutils/binutils-2.25/bfd/
xcofflink.c 2791 int byte_size; local
5447 unsigned int reloc_size, byte_size; local
    [all...]

Completed in 1114 milliseconds