Home
last modified time | relevance | path

Searched refs:use_padding (Results 1 – 14 of 14) sorted by relevance

/external/flac/src/test_libFLAC/
Dmatrix33 b no use_padding
34 c use_padding, last block is not padding
35 g use_padding, last block is padding of insufficient length
36 h use_padding, last block is padding, but padding header straddles border (can't do it)
37 j use_padding, last block is padding of exact sufficient length (padding totally consumed)
38 i use_padding, last block is padding of abundant length (padding is reduced)
40 a no use_padding
41 d use_padding, last block is not padding, delta is < 4
42 e use_padding, last block is not padding, delta is >= 4
43 f use_padding, last block is padding
Dmetadata_manip.c306 static FLAC__bool write_chain_(FLAC__Metadata_Chain *chain, FLAC__bool use_padding, FLAC__bool pres… in write_chain_() argument
309 return FLAC__metadata_chain_write(chain, use_padding, preserve_file_stats); in write_chain_()
323 if(FLAC__metadata_chain_check_if_tempfile_needed(chain, use_padding)) { in write_chain_()
338 …if(!FLAC__metadata_chain_write_with_callbacks_and_tempfile(chain, use_padding, (FLAC__IOHandle)fil… in write_chain_()
355 …if(!FLAC__metadata_chain_write_with_callbacks(chain, use_padding, (FLAC__IOHandle)file, callbacks)) in write_chain_()
/external/flac/include/FLAC/
Dmetadata.h605 …lock(FLAC__Metadata_SimpleIterator *iterator, FLAC__StreamMetadata *block, FLAC__bool use_padding);
630 …fter(FLAC__Metadata_SimpleIterator *iterator, FLAC__StreamMetadata *block, FLAC__bool use_padding);
649 …data_simple_iterator_delete_block(FLAC__Metadata_SimpleIterator *iterator, FLAC__bool use_padding);
925 …FLAC__metadata_chain_check_if_tempfile_needed(FLAC__Metadata_Chain *chain, FLAC__bool use_padding);
971 FLAC_API FLAC__bool FLAC__metadata_chain_write(FLAC__Metadata_Chain *chain, FLAC__bool use_padding,…
1001 …ata_chain_write_with_callbacks(FLAC__Metadata_Chain *chain, FLAC__bool use_padding, FLAC__IOHandle…
1052 …te_with_callbacks_and_tempfile(FLAC__Metadata_Chain *chain, FLAC__bool use_padding, FLAC__IOHandle…
/external/flac/src/metaflac/
Doperations.c162 if(options->use_padding) in do_major_operation_on_file()
164 ok = FLAC__metadata_chain_write(chain, options->use_padding, options->preserve_modtime); in do_major_operation_on_file()
224 ok &= FLAC__metadata_iterator_delete_block(iterator, options->use_padding); in do_major_operation__remove()
225 if(options->use_padding) in do_major_operation__remove()
246 ok &= FLAC__metadata_iterator_delete_block(iterator, options->use_padding); in do_major_operation__remove_all()
247 if(options->use_padding) in do_major_operation__remove_all()
281 FLAC__bool ok = true, needs_write = false, use_padding = options->use_padding; in do_shorthand_operations_on_file() local
309 use_padding = false; in do_shorthand_operations_on_file()
322 if(use_padding) in do_shorthand_operations_on_file()
324 ok = FLAC__metadata_chain_write(chain, use_padding, options->preserve_modtime); in do_shorthand_operations_on_file()
Doptions.h188 FLAC__bool use_padding; member
Doptions.c135 options->use_padding = true; in init_options()
369 options->use_padding = false; in parse_option()
/external/flac/src/libFLAC++/
Dmetadata.cpp1537 bool SimpleIterator::set_block(Prototype *block, bool use_padding) in set_block() argument
1541 …tic_cast<bool>(::FLAC__metadata_simple_iterator_set_block(iterator_, block->object_, use_padding)); in set_block()
1544 bool SimpleIterator::insert_block_after(Prototype *block, bool use_padding) in insert_block_after() argument
1548 …bool>(::FLAC__metadata_simple_iterator_insert_block_after(iterator_, block->object_, use_padding)); in insert_block_after()
1551 bool SimpleIterator::delete_block(bool use_padding) in delete_block() argument
1554 return static_cast<bool>(::FLAC__metadata_simple_iterator_delete_block(iterator_, use_padding)); in delete_block()
1610 bool Chain::check_if_tempfile_needed(bool use_padding) in check_if_tempfile_needed() argument
1613 return static_cast<bool>(::FLAC__metadata_chain_check_if_tempfile_needed(chain_, use_padding)); in check_if_tempfile_needed()
1616 bool Chain::write(bool use_padding, bool preserve_file_stats) in write() argument
1619 return static_cast<bool>(::FLAC__metadata_chain_write(chain_, use_padding, preserve_file_stats)); in write()
[all …]
/external/grpc-grpc/test/http2_test/
Dtest_data_frame_padding.py30 def __init__(self, use_padding=True): argument
42 if use_padding:
Dhttp2_test_server.py67 return t(use_padding=False).get_base_server()
/external/rust/crates/grpcio-sys/grpc/test/http2_test/
Dtest_data_frame_padding.py32 def __init__(self, use_padding=True): argument
45 if use_padding:
Dhttp2_test_server.py68 return t(use_padding=False).get_base_server()
/external/flac/src/libFLAC/
Dmetadata_iterators.c656 …block(FLAC__Metadata_SimpleIterator *iterator, FLAC__StreamMetadata *block, FLAC__bool use_padding) in FLAC__metadata_simple_iterator_set_block() argument
682 if(use_padding && iterator->length >= FLAC__STREAM_METADATA_HEADER_LENGTH + block->length) { in FLAC__metadata_simple_iterator_set_block()
698 if(use_padding) { in FLAC__metadata_simple_iterator_set_block()
701 use_padding = false; in FLAC__metadata_simple_iterator_set_block()
711 use_padding = false; in FLAC__metadata_simple_iterator_set_block()
719 use_padding = false; in FLAC__metadata_simple_iterator_set_block()
730 if(use_padding) { in FLAC__metadata_simple_iterator_set_block()
754 …after(FLAC__Metadata_SimpleIterator *iterator, FLAC__StreamMetadata *block, FLAC__bool use_padding) in FLAC__metadata_simple_iterator_insert_block_after() argument
778 if(use_padding) { in FLAC__metadata_simple_iterator_insert_block_after()
781 use_padding = false; in FLAC__metadata_simple_iterator_insert_block_after()
[all …]
/external/flac/include/FLAC++/
Dmetadata.h1094 …bool set_block(Prototype *block, bool use_padding = true); ///< See FLAC__metadata_simple…
1095 …bool insert_block_after(Prototype *block, bool use_padding = true); ///< See FLAC__metadata_simple…
1096 …bool delete_block(bool use_padding = true); ///< See FLAC__metadata_simple…
1177 …bool check_if_tempfile_needed(bool use_padding); ///< See FLAC__metadata_chain_chec…
1179 …bool write(bool use_padding = true, bool preserve_file_stats = false); ///< See FLAC__metadata_cha…
1180 …bool write(bool use_padding, ::FLAC__IOHandle handle, ::FLAC__IOCallbacks callbacks); ///< See FLA…
1181 …bool write(bool use_padding, ::FLAC__IOHandle handle, ::FLAC__IOCallbacks callbacks, ::FLAC__IOHan…
/external/flac/src/test_libFLAC++/
Dmetadata_manip.cpp320 static bool write_chain_(FLAC::Metadata::Chain &chain, bool use_padding, bool preserve_file_stats, … in write_chain_() argument
323 return chain.write(use_padding, preserve_file_stats); in write_chain_()
337 if(chain.check_if_tempfile_needed(use_padding)) { in write_chain_()
352 …if(!chain.write(use_padding, (::FLAC__IOHandle)file, callbacks, (::FLAC__IOHandle)tempfile, callba… in write_chain_()
369 if(!chain.write(use_padding, (::FLAC__IOHandle)file, callbacks)) { in write_chain_()