/third_party/ffmpeg/libavformat/ |
H A D | rtpdec_hevc.c | 74 int *size_ptr = NULL; in hevc_sdp_parse_fmtp_config() local 77 size_ptr = &hevc_data->vps_size; in hevc_sdp_parse_fmtp_config() 80 size_ptr = &hevc_data->sps_size; in hevc_sdp_parse_fmtp_config() 83 size_ptr = &hevc_data->pps_size; in hevc_sdp_parse_fmtp_config() 86 size_ptr = &hevc_data->sei_size; in hevc_sdp_parse_fmtp_config() 91 size_ptr, value); in hevc_sdp_parse_fmtp_config()
|
H A D | rtpdec_h264.c | 97 uint8_t **data_ptr, int *size_ptr, in ff_h264_parse_sprop_parameter_sets() 121 *size_ptr + in ff_h264_parse_sprop_parameter_sets() 130 memcpy(dest + *size_ptr, start_sequence, in ff_h264_parse_sprop_parameter_sets() 132 memcpy(dest + *size_ptr + sizeof(start_sequence), in ff_h264_parse_sprop_parameter_sets() 134 memset(dest + *size_ptr + sizeof(start_sequence) + in ff_h264_parse_sprop_parameter_sets() 137 *size_ptr += sizeof(start_sequence) + packet_size; in ff_h264_parse_sprop_parameter_sets() 96 ff_h264_parse_sprop_parameter_sets(AVFormatContext *s, uint8_t **data_ptr, int *size_ptr, const char *value) ff_h264_parse_sprop_parameter_sets() argument
|
H A D | rtpdec_formats.h | 39 uint8_t **data_ptr, int *size_ptr,
|
H A D | mpeg.c | 164 static int find_next_start_code(AVIOContext *pb, int *size_ptr, in find_next_start_code() argument 171 n = *size_ptr; in find_next_start_code() 188 *size_ptr = n; in find_next_start_code()
|
/third_party/python/Include/internal/ |
H A D | pycore_dict.h | 167 uint8_t *size_ptr = ((uint8_t *)values)-2; in _PyDictValues_AddToInsertionOrder() 168 int size = *size_ptr; in _PyDictValues_AddToInsertionOrder() 171 size_ptr[-size] = (uint8_t)ix; in _PyDictValues_AddToInsertionOrder() 172 *size_ptr = size; in _PyDictValues_AddToInsertionOrder()
|
/third_party/skia/src/utils/ |
H A D | SkJSON.h | 261 const auto* size_ptr = this->ptr<size_t>(); in begin() local 262 return reinterpret_cast<const T*>(size_ptr + 1); in begin() 267 const auto* size_ptr = this->ptr<size_t>(); in end() local 268 return reinterpret_cast<const T*>(size_ptr + 1) + *size_ptr; in end()
|
H A D | SkJSON.cpp | 86 auto* size_ptr = reinterpret_cast<size_t*>(alloc.makeBytesAlignedTo(total_size, kRecAlign)); in MakeVector() local 88 *size_ptr = size; in MakeVector() 89 sk_careful_memcpy(size_ptr + 1, src, size * sizeof(T)); in MakeVector() 91 return size_ptr; in MakeVector()
|
/third_party/fsverity-utils/programs/ |
H A D | fsverity.c | 173 static bool parse_block_size_option(const char *arg, u32 *size_ptr) in parse_block_size_option() argument 178 if (*size_ptr != 0) { in parse_block_size_option() 187 *size_ptr = n; in parse_block_size_option()
|
/third_party/libuv/src/win/ |
H A D | util.c | 97 int uv_exepath(char* buffer, size_t* size_ptr) { in uv_exepath() argument 102 if (buffer == NULL || size_ptr == NULL || *size_ptr == 0) { in uv_exepath() 106 if (*size_ptr > 32768) { in uv_exepath() 110 utf16_buffer_len = (int) *size_ptr; in uv_exepath() 126 utf8_len = *size_ptr - 1; /* Reserve space for NUL */ in uv_exepath() 129 utf8_len = *size_ptr - 1; in uv_exepath() 132 *size_ptr = utf8_len; in uv_exepath()
|
/third_party/node/deps/uv/src/win/ |
H A D | util.c | 96 int uv_exepath(char* buffer, size_t* size_ptr) { in uv_exepath() argument 101 if (buffer == NULL || size_ptr == NULL || *size_ptr == 0) { in uv_exepath() 105 if (*size_ptr > 32768) { in uv_exepath() 109 utf16_buffer_len = (int) *size_ptr; in uv_exepath() 133 (int) *size_ptr, in uv_exepath() 145 *size_ptr = utf8_len - 1; in uv_exepath()
|
/third_party/python/Objects/ |
H A D | dictobject.c | 1936 uint8_t *size_ptr = ((uint8_t *)values)-2; in delete_index_from_values() local 1937 int size = *size_ptr; in delete_index_from_values() 1939 for (i = 1; size_ptr[-i] != ix; i++) { in delete_index_from_values() 1944 size_ptr[-i] = size_ptr[-i-1]; in delete_index_from_values() 1946 *size_ptr = size -1; in delete_index_from_values()
|
/third_party/mesa3d/src/gallium/auxiliary/gallivm/ |
H A D | lp_bld_nir_soa.c | 1543 LLVMValueRef size_ptr = lp_build_array_get(bld_base->base.gallivm, bld->ssbo_sizes_ptr, in emit_get_ssbo_size() local 1545 return lp_build_broadcast_scalar(bld_broad, size_ptr); in emit_get_ssbo_size()
|