/third_party/ffmpeg/libavcodec/ |
H A D | exrenc.c | 72 int64_t actual_size; member 266 scanline->actual_size = rle_compress(scanline->compressed_data, in encode_scanline_rle() 270 if (scanline->actual_size <= 0 || scanline->actual_size >= tmp_size) { in encode_scanline_rle() 273 scanline->actual_size = tmp_size; in encode_scanline_rle() 289 unsigned long actual_size, source_size; in encode_scanline_zip() local 336 actual_size = max_compressed_size; in encode_scanline_zip() 337 compress(scanline->compressed_data, &actual_size, in encode_scanline_zip() 340 scanline->actual_size = actual_size; in encode_scanline_zip() [all...] |
/third_party/node/deps/openssl/openssl/crypto/ |
H A D | mem_sec.c | 145 size_t actual_size; in CRYPTO_secure_malloc() local 153 actual_size = ret ? sh_actual_size(ret) : 0; in CRYPTO_secure_malloc() 154 secure_mem_used += actual_size; in CRYPTO_secure_malloc() 175 size_t actual_size; in CRYPTO_secure_free() local 185 actual_size = sh_actual_size(ptr); in CRYPTO_secure_free() 186 CLEAR(ptr, actual_size); in CRYPTO_secure_free() 187 secure_mem_used -= actual_size; in CRYPTO_secure_free() 199 size_t actual_size; in CRYPTO_secure_clear_free() local 210 actual_size = sh_actual_size(ptr); in CRYPTO_secure_clear_free() 211 CLEAR(ptr, actual_size); in CRYPTO_secure_clear_free() 257 size_t actual_size; CRYPTO_secure_actual_size() local [all...] |
/third_party/openssl/crypto/ |
H A D | mem_sec.c | 145 size_t actual_size; in CRYPTO_secure_malloc() local 153 actual_size = ret ? sh_actual_size(ret) : 0; in CRYPTO_secure_malloc() 154 secure_mem_used += actual_size; in CRYPTO_secure_malloc() 175 size_t actual_size; in CRYPTO_secure_free() local 185 actual_size = sh_actual_size(ptr); in CRYPTO_secure_free() 186 CLEAR(ptr, actual_size); in CRYPTO_secure_free() 187 secure_mem_used -= actual_size; in CRYPTO_secure_free() 199 size_t actual_size; in CRYPTO_secure_clear_free() local 210 actual_size = sh_actual_size(ptr); in CRYPTO_secure_clear_free() 211 CLEAR(ptr, actual_size); in CRYPTO_secure_clear_free() 251 size_t actual_size; CRYPTO_secure_actual_size() local [all...] |
/third_party/mesa3d/src/gallium/winsys/i915/drm/ |
H A D | i915_drm_batchbuffer.c | 24 size_t actual_size; member 44 batch->actual_size, in i915_drm_batchbuffer_reset() 47 memset(batch->base.map, 0, batch->actual_size); in i915_drm_batchbuffer_reset() 49 batch->base.size = batch->actual_size - BATCH_RESERVED; in i915_drm_batchbuffer_reset() 59 batch->actual_size = idws->max_batch_size; in i915_drm_batchbuffer_create() 61 batch->base.map = MALLOC(batch->actual_size); in i915_drm_batchbuffer_create()
|
/third_party/googletest/googletest/test/ |
H A D | googletest-listener-test.cc | 247 const size_t actual_size = data.size(); in VerifyResults() local 250 EXPECT_EQ(expected_data_size, actual_size); in VerifyResults() 254 expected_data_size <= actual_size ? expected_data_size : actual_size; in VerifyResults() 261 for (; i < actual_size; ++i) { in VerifyResults()
|
/third_party/musl/porting/linux/user/src/fortify/ |
H A D | fortify.c | 228 void* __memchr_chk(const void* s, int c, size_t n, size_t actual_size) in __memchr_chk() argument 230 __diagnose_buffer_access("memchr", "read from", n, actual_size); in __memchr_chk() 287 void* __memrchr_chk(const void *s, int c, size_t n, size_t actual_size) in __memrchr_chk() argument 289 __diagnose_buffer_access("memrchr", "read from", n, actual_size); in __memrchr_chk() 295 char* __getcwd_chk(char* buf, size_t len, size_t actual_size) in __getcwd_chk() argument 297 __diagnose_buffer_access("getcwd", "write into", len, actual_size); in __getcwd_chk()
|
/third_party/musl/src/fortify/linux/ |
H A D | fortify.c | 239 void* __memchr_chk(const void* s, int c, size_t n, size_t actual_size) in __memchr_chk() argument 241 __diagnose_buffer_access("memchr", "read from", n, actual_size); in __memchr_chk() 298 void* __memrchr_chk(const void *s, int c, size_t n, size_t actual_size) in __memrchr_chk() argument 300 __diagnose_buffer_access("memrchr", "read from", n, actual_size); in __memrchr_chk() 306 char* __getcwd_chk(char* buf, size_t len, size_t actual_size) in __getcwd_chk() argument 308 __diagnose_buffer_access("getcwd", "write into", len, actual_size); in __getcwd_chk()
|
/third_party/ffmpeg/libavutil/ |
H A D | bprint.c | 219 unsigned char **mem, unsigned *actual_size) in av_bprint_get_buffer() 223 *actual_size = av_bprint_room(buf); in av_bprint_get_buffer() 224 *mem = *actual_size ? buf->str + buf->len : NULL; in av_bprint_get_buffer() 218 av_bprint_get_buffer(AVBPrint *buf, unsigned size, unsigned char **mem, unsigned *actual_size) av_bprint_get_buffer() argument
|
H A D | bprint.h | 168 * @param[out] actual_size size of the memory area after allocation; 172 unsigned char **mem, unsigned *actual_size);
|
/third_party/protobuf/python/google/protobuf/internal/ |
H A D | wire_format_test.py | 111 actual_size = byte_size_fn(field_number, value) 112 self.assertEqual(expected_size, actual_size, 115 byte_size_fn, field_number, value, expected_size, actual_size))
|
/third_party/protobuf/python/compatibility_tests/v2.5.0/tests/google/protobuf/internal/ |
H A D | wire_format_test.py | 107 actual_size = byte_size_fn(field_number, value) 108 self.assertEqual(expected_size, actual_size, 111 byte_size_fn, field_number, value, expected_size, actual_size))
|
/third_party/node/deps/v8/include/ |
H A D | v8-value-serializer.h | 89 * size (which may be greater or equal) is written to |actual_size|. If no 93 * |actual_size| will be ignored. It is assumed that |old_buffer| is still 99 size_t* actual_size);
|
/third_party/node/deps/v8/include/v8-include/ |
H A D | v8-value-serializer.h | 133 * size (which may be greater or equal) is written to |actual_size|. If no 137 * |actual_size| will be ignored. It is assumed that |old_buffer| is still 143 size_t* actual_size);
|
/third_party/musl/porting/linux/user/include/fortify/ |
H A D | string.h | 26 void *__memchr_chk(const void* s, int c, size_t n, size_t actual_size);
|
/third_party/musl/include/fortify/linux/ |
H A D | string.h | 26 void *__memchr_chk(const void* s, int c, size_t n, size_t actual_size);
|
/third_party/protobuf/python/google/protobuf/pyext/ |
H A D | message.cc | 2070 Py_ssize_t actual_size = 0; in ListFields() local 2123 PyList_SET_ITEM(all_fields.get(), actual_size, t.release()); in ListFields() 2124 ++actual_size; in ListFields() 2126 if (static_cast<size_t>(actual_size) != fields.size() && in ListFields() 2127 (PyList_SetSlice(all_fields.get(), actual_size, fields.size(), NULL) < in ListFields()
|
/third_party/skia/third_party/externals/libwebp/src/demux/ |
H A D | demux.c | 294 // Creates a new Frame if 'actual_size' is within bounds and 'mem' contains 299 uint32_t min_size, uint32_t actual_size, in NewFrame() 302 if (actual_size < min_size) return PARSE_ERROR; in NewFrame() 298 NewFrame(const MemBuffer* const mem, uint32_t min_size, uint32_t actual_size, Frame** frame) NewFrame() argument
|
/third_party/python/Lib/test/ |
H A D | test_zipfile.py | 878 actual_size = 8 883 file_size = actual_size 887 local_zip64_fields.append(actual_size) 888 central_zip64_fields.append(actual_size) 891 compress_size = actual_size 895 local_zip64_fields.append(actual_size) 896 central_zip64_fields.append(actual_size)
|
/third_party/googletest/googlemock/include/gmock/ |
H A D | gmock-matchers.h | 2644 const size_t actual_size = lhs_stl_container.size(); variable 2645 if (actual_size != rhs_.size()) { 2646 *listener << "which contains " << actual_size << " values"; variable 2652 for (size_t i = 0; i != actual_size; ++i, ++left, ++right) {
|
/third_party/node/deps/v8/src/wasm/baseline/ |
H A D | liftoff-compiler.cc | 57 template <int expected_size, int actual_size> 59 static_assert(expected_size == actual_size, 61 static constexpr int size = actual_size;
|
/third_party/node/deps/v8/src/d8/ |
H A D | d8.cc | 4994 size_t* actual_size) override { 5001 *actual_size = result ? size : 0;
|
/third_party/node/deps/v8/src/api/ |
H A D | api.cc | 3338 size_t* actual_size) { in ReallocateBufferMemory() 3339 *actual_size = size; in ReallocateBufferMemory() 3336 ReallocateBufferMemory(void* old_buffer, size_t size, size_t* actual_size) ReallocateBufferMemory() argument
|