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

/external/chromium_org/media/webm/chromeos/
H A Dwebm_encoder.cc232 uint32 block_length = (packet->data.frame.sz + 4) | 0x10000000; local
233 EbmlSerializeHelper(&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/
H A Dgoldfish_mmc.c78 uint32_t block_length; member in struct:goldfish_mmc_state
98 QFIELD_INT32(block_length),
359 s->block_length = arg;
372 arg /= s->block_length;
389 arg /= s->block_length;
479 s->block_length = val + 1;
/external/chromium_org/v8/test/cctest/
H A Dtest-regexp.cc1537 unsigned block_length = block_end - block_start + 1; local
1538 if (block_length > 1) {
1541 for (unsigned i = 1; i < block_length; i++) {
1552 block_start = block_start + block_length;
/external/dropbear/libtomcrypt/src/headers/
H A Dtomcrypt_cipher.h328 block_length, member in struct:ltc_cipher_descriptor
/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/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/v8/test/cctest/
H A Dtest-regexp.cc1485 unsigned block_length = block_end - block_start + 1; local
1486 if (block_length > 1) {
1489 for (unsigned i = 1; i < block_length; i++) {
1500 block_start = block_start + block_length;
/external/bluetooth/bluedroid/stack/include/
H A Duipc_msg.h552 UINT8 block_length; member in struct:__anon1483

Completed in 350 milliseconds