Searched defs:block_length (Results 1 - 17 of 17) sorted by relevance

/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/tools/
H A Dpacket_unittest.cc120 int block_length,
130 rtp_data[2] |= block_length >> 8;
131 rtp_data[3] = block_length & 0xFF;
155 int block_length = 10 * i; local
158 payload_type, timestamp_offset, block_length, last_block, payload_ptr);
118 MakeRedHeader(int payload_type, uint32_t timestamp_offset, int block_length, bool last_payload, uint8_t* rtp_data) argument
/external/chromium_org/media/cast/net/rtcp/
H A Drtcp_utility.cc300 uint16 block_length; local
303 !reader->ReadU16(&block_length))
308 if (block_length != 2)
317 if (!reader->Skip(block_length * 4))
/external/libvpx/libvpx/
H A Dwebmenc.c216 unsigned int block_length; local
272 block_length = (unsigned int)pkt->data.frame.sz + 4;
273 block_length |= 0x10000000;
274 Ebml_Serialize(glob, &block_length, sizeof(block_length), 4);
/external/qemu/hw/android/goldfish/
H A Dmmc.c86 uint32_t block_length; member in struct:goldfish_mmc_state
109 QFIELD_INT32(block_length),
379 s->block_length = arg;
392 arg /= s->block_length;
409 arg /= s->block_length;
503 s->block_length = val + 1;
/external/chromium_org/third_party/brotli/src/brotli/enc/
H A Dblock_splitter.cc96 int block_length = length / total_histograms; local
100 pos += rand_r(&seed) % block_length;
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
H A Drtcp_packet.cc600 uint16_t block_length,
605 AssignUWord16(buffer, pos, block_length);
657 uint16_t block_length = 3 * (*it).size(); local
658 CreateXrBlockHeader(kBtDlrr, block_length, buffer, pos);
599 CreateXrBlockHeader(uint8_t block_type, uint16_t block_length, uint8_t* buffer, size_t* pos) argument
H A Drtp_sender.cc1131 uint8_t block_length = 0; local
1134 block_length = BuildTransmissionTimeOffsetExtension(
1138 block_length = BuildAudioLevelExtension(
1142 block_length = BuildAbsoluteSendTimeExtension(
1148 total_block_length += block_length;
/external/chromium_org/v8/test/cctest/
H A Dtest-regexp.cc1518 unsigned block_length = block_end - block_start + 1; local
1519 if (block_length > 1) {
1522 for (unsigned i = 1; i < block_length; i++) {
1533 block_start = block_start + block_length;
/external/flac/libFLAC/
H A Dmetadata_object.c719 static FLAC__bool compare_block_data_application_(const FLAC__StreamMetadata_Application *block1, const FLAC__StreamMetadata_Application *block2, unsigned block_length) argument
723 FLAC__ASSERT(block_length >= sizeof(block1->id));
728 return 0 == memcmp(block1->data, block2->data, block_length - sizeof(block1->id));
858 static FLAC__bool compare_block_data_unknown_(const FLAC__StreamMetadata_Unknown *block1, const FLAC__StreamMetadata_Unknown *block2, unsigned block_length) argument
864 return 0 == memcmp(block1->data, block2->data, block_length);
H A Dmetadata_iterators.c94 static FLAC__Metadata_SimpleIteratorStatus read_metadata_block_data_padding_cb_(FLAC__IOHandle handle, FLAC__IOCallback_Seek seek_cb, FLAC__StreamMetadata_Padding *block, unsigned block_length);
95 static FLAC__Metadata_SimpleIteratorStatus read_metadata_block_data_application_cb_(FLAC__IOHandle handle, FLAC__IOCallback_Read read_cb, FLAC__StreamMetadata_Application *block, unsigned block_length);
96 static FLAC__Metadata_SimpleIteratorStatus read_metadata_block_data_seektable_cb_(FLAC__IOHandle handle, FLAC__IOCallback_Read read_cb, FLAC__StreamMetadata_SeekTable *block, unsigned block_length);
102 static FLAC__Metadata_SimpleIteratorStatus read_metadata_block_data_unknown_cb_(FLAC__IOHandle handle, FLAC__IOCallback_Read read_cb, FLAC__StreamMetadata_Unknown *block, unsigned block_length);
109 static FLAC__bool write_metadata_block_data_padding_cb_(FLAC__IOHandle handle, FLAC__IOCallback_Write write_cb, const FLAC__StreamMetadata_Padding *block, unsigned block_length);
110 static FLAC__bool write_metadata_block_data_application_cb_(FLAC__IOHandle handle, FLAC__IOCallback_Write write_cb, const FLAC__StreamMetadata_Application *block, unsigned block_length);
115 static FLAC__bool write_metadata_block_data_unknown_cb_(FLAC__IOHandle handle, FLAC__IOCallback_Write write_cb, const FLAC__StreamMetadata_Unknown *block, unsigned block_length);
2146 FLAC__Metadata_SimpleIteratorStatus read_metadata_block_data_padding_cb_(FLAC__IOHandle handle, FLAC__IOCallback_Seek seek_cb, FLAC__StreamMetadata_Padding *block, unsigned block_length) argument
2150 if(0 != seek_cb(handle, block_length, SEEK_CUR))
2156 FLAC__Metadata_SimpleIteratorStatus read_metadata_block_data_application_cb_(FLAC__IOHandle handle, FLAC__IOCallback_Read read_cb, FLAC__StreamMetadata_Application *block, unsigned block_length) argument
2182 read_metadata_block_data_seektable_cb_(FLAC__IOHandle handle, FLAC__IOCallback_Read read_cb, FLAC__StreamMetadata_SeekTable *block, unsigned block_length) argument
2469 read_metadata_block_data_unknown_cb_(FLAC__IOHandle handle, FLAC__IOCallback_Read read_cb, FLAC__StreamMetadata_Unknown *block, unsigned block_length) argument
2579 write_metadata_block_data_padding_cb_(FLAC__IOHandle handle, FLAC__IOCallback_Write write_cb, const FLAC__StreamMetadata_Padding *block, unsigned block_length) argument
2600 write_metadata_block_data_application_cb_(FLAC__IOHandle handle, FLAC__IOCallback_Write write_cb, const FLAC__StreamMetadata_Application *block, unsigned block_length) argument
2830 write_metadata_block_data_unknown_cb_(FLAC__IOHandle handle, FLAC__IOCallback_Write write_cb, const FLAC__StreamMetadata_Unknown *block, unsigned block_length) argument
[all...]
/external/chromium_org/third_party/brotli/src/brotli/dec/
H A Ddecode.c728 int block_length[3] = { 1 << 28, 1 << 28, 1 << 28 }; local
789 block_length[i] = ReadBlockLength(
798 BROTLI_LOG_UINT(block_length[0]);
799 BROTLI_LOG_UINT(block_length[1]);
800 BROTLI_LOG_UINT(block_length[2]);
870 if (block_length[1] == 0) {
874 block_length[1] = ReadBlockLength(
878 --block_length[1];
902 if (block_length[0] == 0) {
906 block_length[
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_sample.c1242 * @param block_length number of pixels in a pixels block along the coordinate
1249 unsigned block_length,
1259 if (block_length == 1) {
1272 LLVMValueRef block_width = lp_build_const_int_vec(bld->type, block_length);
1276 unsigned logbase2 = util_logbase2(block_length);
1278 LLVMValueRef block_mask = lp_build_const_int_vec(bld->gallivm, bld->type, block_length - 1);
1248 lp_build_sample_partial_offset(struct lp_build_context *bld, unsigned block_length, LLVMValueRef coord, LLVMValueRef stride, LLVMValueRef *out_offset, LLVMValueRef *out_subcoord) argument
H A Dlp_bld_sample_aos.c65 * \param block_length is the length of the pixel block along the
77 unsigned block_length,
121 lp_build_sample_partial_offset(int_coord_bld, block_length, coord, stride,
179 * \param block_length is the length of the pixel block along the
193 unsigned block_length,
220 if (block_length != 1) {
267 lp_build_sample_partial_offset(int_coord_bld, block_length, coord0, stride,
269 lp_build_sample_partial_offset(int_coord_bld, block_length, coord1, stride,
341 * \param block_length is the length of the pixel block along the
354 unsigned block_length,
76 lp_build_sample_wrap_nearest_int(struct lp_build_sample_context *bld, unsigned block_length, LLVMValueRef coord, LLVMValueRef coord_f, LLVMValueRef length, LLVMValueRef stride, boolean is_pot, unsigned wrap_mode, LLVMValueRef *out_offset, LLVMValueRef *out_i) argument
192 lp_build_sample_wrap_linear_int(struct lp_build_sample_context *bld, unsigned block_length, LLVMValueRef coord0, LLVMValueRef *weight_i, LLVMValueRef coord_f, LLVMValueRef length, LLVMValueRef stride, boolean is_pot, unsigned wrap_mode, LLVMValueRef *offset0, LLVMValueRef *offset1, LLVMValueRef *i0, LLVMValueRef *i1) argument
353 lp_build_sample_wrap_linear_float(struct lp_build_sample_context *bld, unsigned block_length, LLVMValueRef coord, LLVMValueRef length, boolean is_pot, unsigned wrap_mode, LLVMValueRef *coord0, LLVMValueRef *coord1, LLVMValueRef *weight, unsigned force_nearest) argument
[all...]
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_sample.c1242 * @param block_length number of pixels in a pixels block along the coordinate
1249 unsigned block_length,
1259 if (block_length == 1) {
1272 LLVMValueRef block_width = lp_build_const_int_vec(bld->type, block_length);
1276 unsigned logbase2 = util_logbase2(block_length);
1278 LLVMValueRef block_mask = lp_build_const_int_vec(bld->gallivm, bld->type, block_length - 1);
1248 lp_build_sample_partial_offset(struct lp_build_context *bld, unsigned block_length, LLVMValueRef coord, LLVMValueRef stride, LLVMValueRef *out_offset, LLVMValueRef *out_subcoord) argument
H A Dlp_bld_sample_aos.c65 * \param block_length is the length of the pixel block along the
77 unsigned block_length,
121 lp_build_sample_partial_offset(int_coord_bld, block_length, coord, stride,
179 * \param block_length is the length of the pixel block along the
193 unsigned block_length,
220 if (block_length != 1) {
267 lp_build_sample_partial_offset(int_coord_bld, block_length, coord0, stride,
269 lp_build_sample_partial_offset(int_coord_bld, block_length, coord1, stride,
341 * \param block_length is the length of the pixel block along the
354 unsigned block_length,
76 lp_build_sample_wrap_nearest_int(struct lp_build_sample_context *bld, unsigned block_length, LLVMValueRef coord, LLVMValueRef coord_f, LLVMValueRef length, LLVMValueRef stride, boolean is_pot, unsigned wrap_mode, LLVMValueRef *out_offset, LLVMValueRef *out_i) argument
192 lp_build_sample_wrap_linear_int(struct lp_build_sample_context *bld, unsigned block_length, LLVMValueRef coord0, LLVMValueRef *weight_i, LLVMValueRef coord_f, LLVMValueRef length, LLVMValueRef stride, boolean is_pot, unsigned wrap_mode, LLVMValueRef *offset0, LLVMValueRef *offset1, LLVMValueRef *i0, LLVMValueRef *i1) argument
353 lp_build_sample_wrap_linear_float(struct lp_build_sample_context *bld, unsigned block_length, LLVMValueRef coord, LLVMValueRef length, boolean is_pot, unsigned wrap_mode, LLVMValueRef *coord0, LLVMValueRef *coord1, LLVMValueRef *weight, unsigned force_nearest) argument
[all...]
/external/bluetooth/bluedroid/stack/include/
H A Duipc_msg.h327 UINT8 block_length; member in struct:__anon1633
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARF.cpp1766 uint32_t block_length = form_value.Unsigned(); local
1774 block_length,
2157 uint32_t block_length = form_value.Unsigned(); local
2165 block_length,
4195 // uint32_t block_length = form_value.Unsigned();
4196 // DataExtractor location(debug_info_data, form_value.BlockData() - debug_info_data.GetDataStart(), block_length);
7282 uint32_t block_length = form_value.Unsigned(); local
7283 location.CopyOpcodeData(debug_info_data, block_offset, block_length);
7322 uint32_t block_length = form_value.Unsigned(); local
7323 location.CopyOpcodeData(get_debug_info_data(), block_offset, block_length); local
[all...]

Completed in 384 milliseconds