Searched defs:block_length (Results 1 - 15 of 15) 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/brotli/c/enc/
H A Dblock_splitter_inc.h17 size_t block_length = length / num_histograms; local
23 pos += MyRand(&seed) % block_length;
/external/tensorflow/tensorflow/core/kernels/data/
H A Dinterleave_dataset_op.cc61 OP_REQUIRES_OK(ctx, ctx->input("block_length", &block_length_t));
63 errors::InvalidArgument("block_length must be a scalar."));
64 const int64 block_length = block_length_t->flat<int64>()(0); variable
66 ctx, block_length > 0,
67 errors::InvalidArgument("block_length must be greater than zero."));
75 block_length, output_types_, output_shapes_);
84 int64 block_length, const DataTypeVector& output_types,
91 block_length_(block_length),
81 Dataset(OpKernelContext* ctx, const DatasetBase* input, const NameAttrList& func, std::unique_ptr<CapturedFunction> captured_func, int64 cycle_length, int64 block_length, const DataTypeVector& output_types, const std::vector<PartialTensorShape>& output_shapes) argument
H A Dparallel_interleave_dataset_op.cc59 int64 block_length = 0; variable
61 ParseScalarArgument(ctx, "block_length", &block_length));
62 OP_REQUIRES(ctx, block_length > 0,
63 errors::InvalidArgument("`block_length` must be > 0"));
87 new Dataset(input, std::move(captured_func), cycle_length, block_length,
97 int64 block_length, bool sloppy, int64 buffer_output_elements,
103 block_length_(block_length),
95 Dataset(const DatasetBase* input, std::unique_ptr<CapturedFunction> captured_func, int64 cycle_length, int64 block_length, bool sloppy, int64 buffer_output_elements, int64 prefetch_input_elements, const DataTypeVector& output_types, const std::vector<PartialTensorShape>& output_shapes) 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/libchrome/base/trace_event/
H A Dmemory_usage_estimator.h503 size_t block_length = local
506 size_t blocks = (deque.size() + block_length - 1) / block_length;
525 return (blocks * block_length * sizeof(T)) +
/external/adhd/cras/src/common/
H A Da2dp-codecs.h95 uint8_t block_length:4; member in struct:__anon722
115 uint8_t block_length:4; member in struct:__anon724
/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/brotli/c/dec/
H A Dstate.h149 uint32_t block_length[3]; member in struct:BrotliDecoderStateStruct
/external/flac/libFLAC/
H A Dmetadata_object.c718 static FLAC__bool compare_block_data_application_(const FLAC__StreamMetadata_Application *block1, const FLAC__StreamMetadata_Application *block2, unsigned block_length) argument
722 FLAC__ASSERT(block_length >= sizeof(block1->id));
727 return memcmp(block1->data, block2->data, block_length - sizeof(block1->id)) == 0;
857 static FLAC__bool compare_block_data_unknown_(const FLAC__StreamMetadata_Unknown *block1, const FLAC__StreamMetadata_Unknown *block2, unsigned block_length) argument
863 return memcmp(block1->data, block2->data, block_length) == 0;
H A Dmetadata_iterators.c77 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);
78 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);
79 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);
81 static FLAC__Metadata_SimpleIteratorStatus read_metadata_block_data_vorbis_comment_cb_(FLAC__IOHandle handle, FLAC__IOCallback_Read read_cb, FLAC__IOCallback_Seek seek_cb, FLAC__StreamMetadata_VorbisComment *block, unsigned block_length);
85 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);
92 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);
93 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);
98 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);
2203 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
2207 if(0 != seek_cb(handle, block_length, SEEK_CU
2213 read_metadata_block_data_application_cb_(FLAC__IOHandle handle, FLAC__IOCallback_Read read_cb, FLAC__StreamMetadata_Application *block, unsigned block_length) argument
2239 read_metadata_block_data_seektable_cb_(FLAC__IOHandle handle, FLAC__IOCallback_Read read_cb, FLAC__StreamMetadata_SeekTable *block, unsigned block_length) argument
2303 read_metadata_block_data_vorbis_comment_cb_(FLAC__IOHandle handle, FLAC__IOCallback_Read read_cb, FLAC__IOCallback_Seek seek_cb, FLAC__StreamMetadata_VorbisComment *block, unsigned block_length) argument
2556 read_metadata_block_data_unknown_cb_(FLAC__IOHandle handle, FLAC__IOCallback_Read read_cb, FLAC__StreamMetadata_Unknown *block, unsigned block_length) argument
2669 write_metadata_block_data_padding_cb_(FLAC__IOHandle handle, FLAC__IOCallback_Write write_cb, const FLAC__StreamMetadata_Padding *block, unsigned block_length) argument
2690 write_metadata_block_data_application_cb_(FLAC__IOHandle handle, FLAC__IOCallback_Write write_cb, const FLAC__StreamMetadata_Application *block, unsigned block_length) argument
2920 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/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_sample_aos.c65 * \param block_length is the length of the pixel block along the
79 unsigned block_length,
129 lp_build_sample_partial_offset(int_coord_bld, block_length, coord, stride,
261 * \param block_length is the length of the pixel block along the
277 unsigned block_length,
305 if (block_length != 1) {
354 lp_build_sample_partial_offset(int_coord_bld, block_length, coord0, stride,
356 lp_build_sample_partial_offset(int_coord_bld, block_length, coord1, stride,
430 * \param block_length is the length of the pixel block along the
444 unsigned block_length,
78 lp_build_sample_wrap_nearest_int(struct lp_build_sample_context *bld, unsigned block_length, LLVMValueRef coord, LLVMValueRef coord_f, LLVMValueRef length, LLVMValueRef stride, LLVMValueRef offset, boolean is_pot, unsigned wrap_mode, LLVMValueRef *out_offset, LLVMValueRef *out_i) argument
276 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, LLVMValueRef offset, boolean is_pot, unsigned wrap_mode, LLVMValueRef *offset0, LLVMValueRef *offset1, LLVMValueRef *i0, LLVMValueRef *i1) argument
443 lp_build_sample_wrap_linear_float(struct lp_build_sample_context *bld, unsigned block_length, LLVMValueRef coord, LLVMValueRef length, LLVMValueRef offset, boolean is_pot, unsigned wrap_mode, LLVMValueRef *coord0, LLVMValueRef *coord1, LLVMValueRef *weight, unsigned force_nearest) argument
[all...]
H A Dlp_bld_sample.c1966 * @param block_length number of pixels in a pixels block along the coordinate
1973 unsigned block_length,
1983 if (block_length == 1) {
1996 LLVMValueRef block_width = lp_build_const_int_vec(bld->type, block_length);
2000 unsigned logbase2 = util_logbase2(block_length);
2002 LLVMValueRef block_mask = lp_build_const_int_vec(bld->gallivm, bld->type, block_length - 1);
1972 lp_build_sample_partial_offset(struct lp_build_context *bld, unsigned block_length, LLVMValueRef coord, LLVMValueRef stride, LLVMValueRef *out_offset, LLVMValueRef *out_subcoord) argument
/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 6980 milliseconds