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

/external/webrtc/webrtc/modules/rtp_rtcp/source/rtcp_packet/
H A Ddlrr_unittest.cc48 uint16_t block_length = ByteReader<uint16_t>::ReadBigEndian(&kBlock[2]); local
49 EXPECT_TRUE(dlrr.Parse(kBlock, block_length));
95 uint16_t block_length = ByteReader<uint16_t>::ReadBigEndian(&buffer[2]); local
96 EXPECT_EQ(used_buffer_size, (block_length + 1) * 4u);
97 EXPECT_TRUE(parsed.Parse(buffer, block_length));
/external/webrtc/webrtc/common_audio/
H A Dlapped_transform.cc38 size_t block_length = RealFourier::ComplexLength( local
40 RTC_CHECK_EQ(parent_->cplx_length_, block_length);
59 size_t block_length,
65 block_length_(block_length),
55 LappedTransform(size_t num_in_channels, size_t num_out_channels, size_t chunk_length, const float* window, size_t block_length, size_t shift_amount, Callback* callback) argument
/external/webrtc/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/ImageMagick/coders/
H A Dgif.c1129 block_length,
1167 block_length=(int) ReadBlobBlock(image,&info[info_length]);
1168 if (block_length == 0)
1170 info_length+=block_length;
1843 block_length;
1846 block_length=length-offset;
1848 block_length=255;
1849 (void) WriteBlobByte(image,(unsigned char) block_length);
1850 (void) WriteBlob(image,(size_t) block_length,datum+offset);
1851 offset+=(ssize_t) block_length;
1120 block_length, local
1831 block_length; local
[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/webrtc/webrtc/modules/rtp_rtcp/source/
H A Drtp_sender.cc1249 uint8_t block_length = 0; local
1253 block_length = BuildTransmissionTimeOffsetExtension(extension_data);
1256 block_length = BuildAudioLevelExtension(extension_data);
1259 block_length = BuildAbsoluteSendTimeExtension(extension_data);
1262 block_length = BuildVideoRotationExtension(extension_data);
1265 block_length = BuildTransportSequenceNumberExtension(
1271 total_block_length += block_length;

Completed in 276 milliseconds