/third_party/skia/third_party/externals/libjpeg-turbo/ |
D | jdicc.c | 81 unsigned int total_length; in jpeg_read_icc_profile() local 131 total_length = 0; in jpeg_read_icc_profile() 137 data_offset[seq_no] = total_length; in jpeg_read_icc_profile() 138 total_length += data_length[seq_no]; in jpeg_read_icc_profile() 141 if (total_length == 0) { in jpeg_read_icc_profile() 147 icc_data = (JOCTET *)malloc(total_length * sizeof(JOCTET)); in jpeg_read_icc_profile() 168 *icc_data_len = total_length; in jpeg_read_icc_profile()
|
/third_party/libjpeg-turbo/ |
D | jdicc.c | 77 unsigned int total_length; in jpeg_read_icc_profile() local 127 total_length = 0; in jpeg_read_icc_profile() 133 data_offset[seq_no] = total_length; in jpeg_read_icc_profile() 134 total_length += data_length[seq_no]; in jpeg_read_icc_profile() 137 if (total_length == 0) { in jpeg_read_icc_profile() 143 icc_data = (JOCTET *)malloc(total_length * sizeof(JOCTET)); in jpeg_read_icc_profile() 164 *icc_data_len = total_length; in jpeg_read_icc_profile()
|
/third_party/flutter/skia/third_party/externals/libjpeg-turbo/ |
D | jdicc.c | 81 unsigned int total_length; in jpeg_read_icc_profile() local 131 total_length = 0; in jpeg_read_icc_profile() 137 data_offset[seq_no] = total_length; in jpeg_read_icc_profile() 138 total_length += data_length[seq_no]; in jpeg_read_icc_profile() 141 if (total_length == 0) { in jpeg_read_icc_profile() 147 icc_data = (JOCTET *)malloc(total_length * sizeof(JOCTET)); in jpeg_read_icc_profile() 168 *icc_data_len = total_length; in jpeg_read_icc_profile()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/wps/ |
D | ndef.c | 29 u32 total_length; member 75 record->total_length = pos - data; in ndef_parse_record() 76 if (record->total_length > size || in ndef_parse_record() 77 record->total_length < record->payload_length) in ndef_parse_record() 98 data += record.total_length; in ndef_parse_records() 99 len -= record.total_length; in ndef_parse_records()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/wps/ |
D | ndef.c | 29 u32 total_length; member 75 record->total_length = pos - data; in ndef_parse_record() 76 if (record->total_length > size || in ndef_parse_record() 77 record->total_length < record->payload_length) in ndef_parse_record() 98 data += record.total_length; in ndef_parse_records() 99 len -= record.total_length; in ndef_parse_records()
|
/third_party/cef/tools/yapf/yapf/yapflib/ |
D | line_joiner.py | 72 if lines[0].last.total_length < limit: 73 limit -= lines[0].last.total_length 106 if lines[1].last.total_length >= limit:
|
D | format_decision_state.py | 297 arglist_length = (opening.matching_bracket.total_length - 298 opening.total_length + self.stack[-1].indent) 633 length = end.total_length - start.total_length 663 length = prev.total_length - entry_start.total_length 695 length = current.total_length - entry_start.total_length 716 return current.total_length - token.total_length + 1
|
D | unwrapped_line.py | 66 self.first.total_length = len(self.first.value) 69 prev_length = self.first.total_length 76 token.total_length = prev_length + tok_len + token.spaces_required_before 85 prev_length = token.total_length
|
D | format_token.py | 99 self.total_length = 0 # TODO(morbo): Think up a better name.
|
D | reformatter.py | 229 return (last.total_length + indent_amt <= style.Get('COLUMN_LIMIT') and
|
/third_party/openssl/providers/implementations/rands/seeding/ |
D | rand_vms.c | 364 size_t total_length = 0; in data_collect_method() local 384 total_length = total_elems * sizeof(data.buffer[0]); in data_collect_method() 458 if (!ossl_assert(total_length >= bytes_needed)) { in data_collect_method() 461 bytes_needed, total_length); in data_collect_method() 468 if (total_length > bytes_remaining) in data_collect_method() 469 total_length = bytes_remaining; in data_collect_method() 472 ossl_rand_pool_add(pool, (unsigned char *)data.buffer, total_length, in data_collect_method() 473 8 * total_length / ENTROPY_FACTOR); in data_collect_method()
|
/third_party/skia/third_party/externals/brotli/c/enc/ |
D | block_splitter.c | 42 size_t total_length = 0; in CountLiterals() local 45 total_length += cmds[i].insert_len_; in CountLiterals() 47 return total_length; in CountLiterals()
|
/third_party/node/deps/brotli/c/enc/ |
D | block_splitter.c | 42 size_t total_length = 0; in CountLiterals() local 45 total_length += cmds[i].insert_len_; in CountLiterals() 47 return total_length; in CountLiterals()
|
/third_party/gstreamer/gstplugins_bad/sys/applemedia/ |
D | coremediabuffer.c | 148 size_t offset = 0, length_at_offset, total_length; in gst_core_media_buffer_wrap_block_buffer() local 154 &total_length, &data); in gst_core_media_buffer_wrap_block_buffer() 165 } while (offset < total_length); in gst_core_media_buffer_wrap_block_buffer()
|
/third_party/ffmpeg/libavcodec/ |
D | avpacket.c | 524 size_t total_length = 0; in av_packet_pack_dictionary() local 532 memcpy(data + total_length, str, len); in av_packet_pack_dictionary() 534 else if (len > INT_MAX - total_length) in av_packet_pack_dictionary() 536 else if (len > SIZE_MAX - total_length) in av_packet_pack_dictionary() 539 total_length += len; in av_packet_pack_dictionary() 544 data = av_malloc(total_length); in av_packet_pack_dictionary() 547 *size = total_length; in av_packet_pack_dictionary()
|
D | mlpenc.c | 1190 int total_length; in write_access_unit() local 1217 total_length = buf - buf0; in write_access_unit() 1219 write_frame_headers(ctx, buf0, buf1, total_length / 2, restart_frame, substream_data_len); in write_access_unit() 1221 return total_length; in write_access_unit()
|
/third_party/ffmpeg/libavformat/ |
D | rtpdec_h264.c | 212 int total_length = 0; in ff_h264_handle_aggregated_packet() local 231 total_length += sizeof(start_sequence) + nal_size; in ff_h264_handle_aggregated_packet() 255 if ((ret = av_new_packet(pkt, total_length)) < 0) in ff_h264_handle_aggregated_packet()
|
/third_party/skia/third_party/externals/angle2/src/common/third_party/smhasher/src/ |
D | PMurHash.cpp | 280 uint32_t PMurHash32_Result(uint32_t h, uint32_t carry, uint32_t total_length) in PMurHash32_Result() argument 292 h ^= total_length; in PMurHash32_Result()
|
D | PMurHash.h | 53 MH_UINT32 PMurHash32_Result(MH_UINT32 h1, MH_UINT32 carry, MH_UINT32 total_length);
|
/third_party/flutter/skia/third_party/externals/angle2/src/common/third_party/smhasher/src/ |
D | PMurHash.cpp | 280 uint32_t PMurHash32_Result(uint32_t h, uint32_t carry, uint32_t total_length) in PMurHash32_Result() argument 292 h ^= total_length; in PMurHash32_Result()
|
D | PMurHash.h | 53 MH_UINT32 PMurHash32_Result(MH_UINT32 h1, MH_UINT32 carry, MH_UINT32 total_length);
|
/third_party/gstreamer/gstplugins_bad/gst/gdp/ |
D | dataprotocol.c | 401 gsize total_length = 0; in gst_dp_crc_from_memory_maps() local 413 total_length += length; in gst_dp_crc_from_memory_maps() 423 if (G_UNLIKELY (total_length == 0)) in gst_dp_crc_from_memory_maps()
|
/third_party/mesa3d/src/broadcom/cle/ |
D | v3d_decoder.c | 628 ASSERTED uint32_t total_length; in v3d_spec_load() local 663 total_length = zlib_inflate(compress_genxmls, in v3d_spec_load() 666 assert(text_offset + text_length <= total_length); in v3d_spec_load()
|
/third_party/mesa3d/src/intel/common/ |
D | intel_decoder.c | 597 ASSERTED uint32_t total_length; in intel_spec_load() local 630 total_length = zlib_inflate(compress_genxmls, in intel_spec_load() 633 assert(text_offset + text_length <= total_length); in intel_spec_load()
|
/third_party/mbedtls/tests/suites/ |
D | test_suite_asn1parse.function | 673 int total_length, 695 TEST_EQUAL( p - input->x, total_length ); 704 TEST_EQUAL( p - input->x, total_length );
|