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

1 2 3

  /external/pdfium/core/fxcrt/
fx_basic_memmgr.cpp 11 void* FXMEM_DefaultAlloc(size_t byte_size, int flags) {
12 return (void*)malloc(byte_size);
fx_memory.h 17 void* FXMEM_DefaultAlloc(size_t byte_size, int flags);
  /external/protobuf/python/google/protobuf/internal/
wire_format_test.py 205 def __init__(self, byte_size):
206 self.byte_size = byte_size
208 return self.byte_size
211 mock_message = MockMessage(byte_size=message_byte_size)
222 self.assertEqual(2 + mock_message.byte_size,
225 self.assertEqual(3 + mock_message.byte_size,
228 mock_message.byte_size = 128
229 self.assertEqual(4 + mock_message.byte_size,
236 mock_message.byte_size = 1
    [all...]
  /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...]
  /external/elfutils/tests/
run-readelf-zdebug-rel.sh 102 byte_size (data1) 4
106 byte_size (data1) 8
109 byte_size (data1) 8
112 byte_size (data1) 1
116 byte_size (data1) 8
run-show-die-info.sh 47 Attrs : name byte_size encoding
71 Attrs : name byte_size encoding
115 Attrs : name byte_size encoding
145 Attrs : name byte_size encoding
156 Attrs : name byte_size encoding
177 Attrs : name byte_size encoding
183 Attrs : sibling name byte_size decl_file decl_line
209 Attrs : name byte_size encoding
215 Attrs : byte_size
231 Attrs : name byte_size encodin
    [all...]
run-readelf-dwz-multi.sh 98 byte_size (data1) 8
135 byte_size (data1) 8
159 byte_size (data1) 8
196 byte_size (data1) 8
  /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/llvm/lib/Support/
DataExtractor.cpp 92 DataExtractor::getUnsigned(uint32_t *offset_ptr, uint32_t byte_size) const {
93 switch (byte_size) {
107 DataExtractor::getSigned(uint32_t *offset_ptr, uint32_t byte_size) const {
108 switch (byte_size) {
  /external/pdfium/third_party/libjpeg/
fpdfapi_jmemnobs.c 28 void* FXMEM_DefaultAlloc(int byte_size, int);
  /external/swiftshader/third_party/LLVM/lib/Support/
DataExtractor.cpp 92 DataExtractor::getUnsigned(uint32_t *offset_ptr, uint32_t byte_size) const {
93 switch (byte_size) {
107 DataExtractor::getSigned(uint32_t *offset_ptr, uint32_t byte_size) const {
108 switch (byte_size) {
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
DataExtractor.h 59 /// Extract an unsigned integer of size \a byte_size from \a
64 /// is specified by the \a byte_size argument. \a byte_size should
67 /// \a byte_size values less than 1 or greater than 8 will result in
77 /// @param[in] byte_size
83 uint64_t getUnsigned(uint32_t *offset_ptr, uint32_t byte_size) const;
85 /// Extract an signed integer of size \a byte_size from \a *offset_ptr.
89 /// the extracted integer is specified by the \a byte_size argument.
90 /// \a byte_size should have a value greater than or equal to one
92 /// bits wide. Any \a byte_size values less than 1 or greater tha
    [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);
  /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...]
  /external/llvm/include/llvm/Support/
DataExtractor.h 61 /// Extract an unsigned integer of size \a byte_size from \a
66 /// is specified by the \a byte_size argument. \a byte_size should
69 /// \a byte_size values less than 1 or greater than 8 will result in
79 /// @param[in] byte_size
85 uint64_t getUnsigned(uint32_t *offset_ptr, uint32_t byte_size) const;
87 /// Extract an signed integer of size \a byte_size from \a *offset_ptr.
91 /// the extracted integer is specified by the \a byte_size argument.
92 /// \a byte_size should have a value greater than or equal to one
94 /// bits wide. Any \a byte_size values less than 1 or greater tha
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Support/
DataExtractor.h 61 /// Extract an unsigned integer of size \a byte_size from \a
66 /// is specified by the \a byte_size argument. \a byte_size should
69 /// \a byte_size values less than 1 or greater than 8 will result in
79 /// @param[in] byte_size
85 uint64_t getUnsigned(uint32_t *offset_ptr, uint32_t byte_size) const;
87 /// Extract an signed integer of size \a byte_size from \a *offset_ptr.
91 /// the extracted integer is specified by the \a byte_size argument.
92 /// \a byte_size should have a value greater than or equal to one
94 /// bits wide. Any \a byte_size values less than 1 or greater tha
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Support/
DataExtractor.h 61 /// Extract an unsigned integer of size \a byte_size from \a
66 /// is specified by the \a byte_size argument. \a byte_size should
69 /// \a byte_size values less than 1 or greater than 8 will result in
79 /// @param[in] byte_size
85 uint64_t getUnsigned(uint32_t *offset_ptr, uint32_t byte_size) const;
87 /// Extract an signed integer of size \a byte_size from \a *offset_ptr.
91 /// the extracted integer is specified by the \a byte_size argument.
92 /// \a byte_size should have a value greater than or equal to one
94 /// bits wide. Any \a byte_size values less than 1 or greater tha
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/
DataExtractor.h 61 /// Extract an unsigned integer of size \a byte_size from \a
66 /// is specified by the \a byte_size argument. \a byte_size should
69 /// \a byte_size values less than 1 or greater than 8 will result in
79 /// @param[in] byte_size
85 uint64_t getUnsigned(uint32_t *offset_ptr, uint32_t byte_size) const;
87 /// Extract an signed integer of size \a byte_size from \a *offset_ptr.
91 /// the extracted integer is specified by the \a byte_size argument.
92 /// \a byte_size should have a value greater than or equal to one
94 /// bits wide. Any \a byte_size values less than 1 or greater tha
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
DataExtractor.h 61 /// Extract an unsigned integer of size \a byte_size from \a
66 /// is specified by the \a byte_size argument. \a byte_size should
69 /// \a byte_size values less than 1 or greater than 8 will result in
79 /// @param[in] byte_size
85 uint64_t getUnsigned(uint32_t *offset_ptr, uint32_t byte_size) const;
87 /// Extract an signed integer of size \a byte_size from \a *offset_ptr.
91 /// the extracted integer is specified by the \a byte_size argument.
92 /// \a byte_size should have a value greater than or equal to one
94 /// bits wide. Any \a byte_size values less than 1 or greater tha
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Support/
DataExtractor.h 61 /// Extract an unsigned integer of size \a byte_size from \a
66 /// is specified by the \a byte_size argument. \a byte_size should
69 /// \a byte_size values less than 1 or greater than 8 will result in
79 /// @param[in] byte_size
85 uint64_t getUnsigned(uint32_t *offset_ptr, uint32_t byte_size) const;
87 /// Extract an signed integer of size \a byte_size from \a *offset_ptr.
91 /// the extracted integer is specified by the \a byte_size argument.
92 /// \a byte_size should have a value greater than or equal to one
94 /// bits wide. Any \a byte_size values less than 1 or greater tha
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Support/
DataExtractor.h 61 /// Extract an unsigned integer of size \a byte_size from \a
66 /// is specified by the \a byte_size argument. \a byte_size should
69 /// \a byte_size values less than 1 or greater than 8 will result in
79 /// @param[in] byte_size
85 uint64_t getUnsigned(uint32_t *offset_ptr, uint32_t byte_size) const;
87 /// Extract an signed integer of size \a byte_size from \a *offset_ptr.
91 /// the extracted integer is specified by the \a byte_size argument.
92 /// \a byte_size should have a value greater than or equal to one
94 /// bits wide. Any \a byte_size values less than 1 or greater tha
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/
DataExtractor.h 61 /// Extract an unsigned integer of size \a byte_size from \a
66 /// is specified by the \a byte_size argument. \a byte_size should
69 /// \a byte_size values less than 1 or greater than 8 will result in
79 /// @param[in] byte_size
85 uint64_t getUnsigned(uint32_t *offset_ptr, uint32_t byte_size) const;
87 /// Extract an signed integer of size \a byte_size from \a *offset_ptr.
91 /// the extracted integer is specified by the \a byte_size argument.
92 /// \a byte_size should have a value greater than or equal to one
94 /// bits wide. Any \a byte_size values less than 1 or greater tha
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
DataExtractor.h 61 /// Extract an unsigned integer of size \a byte_size from \a
66 /// is specified by the \a byte_size argument. \a byte_size should
69 /// \a byte_size values less than 1 or greater than 8 will result in
79 /// @param[in] byte_size
85 uint64_t getUnsigned(uint32_t *offset_ptr, uint32_t byte_size) const;
87 /// Extract an signed integer of size \a byte_size from \a *offset_ptr.
91 /// the extracted integer is specified by the \a byte_size argument.
92 /// \a byte_size should have a value greater than or equal to one
94 /// bits wide. Any \a byte_size values less than 1 or greater tha
    [all...]
  /art/runtime/gc/collector/
concurrent_copying.cc 2189 size_t byte_size; local
    [all...]

Completed in 890 milliseconds

1 2 3