/external/flac/src/test_libFLAC/ |
D | matrix | 33 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
|
D | metadata_manip.c | 306 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/ComputeLibrary/arm_compute/core/ |
D | KernelDescriptors.h | 205 bool use_padding = true, 212 use_padding{ use_padding }, 222 bool use_padding; /**< Indication of using padding */ member
|
/external/flac/include/FLAC/ |
D | metadata.h | 615 …lock(FLAC__Metadata_SimpleIterator *iterator, FLAC__StreamMetadata *block, FLAC__bool use_padding); 640 …fter(FLAC__Metadata_SimpleIterator *iterator, FLAC__StreamMetadata *block, FLAC__bool use_padding); 659 …data_simple_iterator_delete_block(FLAC__Metadata_SimpleIterator *iterator, FLAC__bool use_padding); 945 …FLAC__metadata_chain_check_if_tempfile_needed(FLAC__Metadata_Chain *chain, FLAC__bool use_padding); 991 FLAC_API FLAC__bool FLAC__metadata_chain_write(FLAC__Metadata_Chain *chain, FLAC__bool use_padding,… 1021 …ata_chain_write_with_callbacks(FLAC__Metadata_Chain *chain, FLAC__bool use_padding, FLAC__IOHandle… 1072 …te_with_callbacks_and_tempfile(FLAC__Metadata_Chain *chain, FLAC__bool use_padding, FLAC__IOHandle…
|
/external/flac/src/metaflac/ |
D | operations.c | 162 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()
|
D | options.h | 189 FLAC__bool use_padding; member
|
D | options.c | 138 options->use_padding = true; in init_options() 373 options->use_padding = false; in parse_option()
|
/external/flac/src/libFLAC++/ |
D | metadata.cpp | 1537 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/rust/crates/grpcio-sys/grpc/test/http2_test/ |
D | test_data_frame_padding.py | 32 def __init__(self, use_padding=True): argument 45 if use_padding:
|
D | http2_test_server.py | 68 return t(use_padding=False).get_base_server()
|
/external/grpc-grpc/test/http2_test/ |
D | test_data_frame_padding.py | 30 def __init__(self, use_padding=True): argument 42 if use_padding:
|
D | http2_test_server.py | 67 return t(use_padding=False).get_base_server()
|
/external/flac/src/libFLAC/ |
D | metadata_iterators.c | 676 …block(FLAC__Metadata_SimpleIterator *iterator, FLAC__StreamMetadata *block, FLAC__bool use_padding) in FLAC__metadata_simple_iterator_set_block() argument 703 if(use_padding && iterator->length >= FLAC__STREAM_METADATA_HEADER_LENGTH + block->length) { in FLAC__metadata_simple_iterator_set_block() 720 if(use_padding) { in FLAC__metadata_simple_iterator_set_block() 723 use_padding = false; in FLAC__metadata_simple_iterator_set_block() 733 use_padding = false; in FLAC__metadata_simple_iterator_set_block() 741 use_padding = false; in FLAC__metadata_simple_iterator_set_block() 752 if(use_padding) { in FLAC__metadata_simple_iterator_set_block() 777 …after(FLAC__Metadata_SimpleIterator *iterator, FLAC__StreamMetadata *block, FLAC__bool use_padding) in FLAC__metadata_simple_iterator_insert_block_after() argument 802 if(use_padding) { in FLAC__metadata_simple_iterator_insert_block_after() 805 use_padding = false; in FLAC__metadata_simple_iterator_insert_block_after() [all …]
|
/external/flac/include/FLAC++/ |
D | metadata.h | 1094 …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/oss-fuzz/ |
D | metadata.cc | 45 static void run_tests_with_level_2_interface(char filename[], bool ogg, bool use_padding, const uin… 173 static void run_tests_with_level_2_interface(char filename[], bool ogg, bool use_padding, const uin… in run_tests_with_level_2_interface() argument 523 chain.check_if_tempfile_needed(!use_padding); in run_tests_with_level_2_interface() 524 chain.write(use_padding); in run_tests_with_level_2_interface()
|
/external/flac/src/test_libFLAC++/ |
D | metadata_manip.cpp | 320 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_()
|
/external/ComputeLibrary/tests/validation/NEON/ |
D | Scale.cpp | 196 constexpr bool use_padding = true; in TEST_CASE() local 198 …{ default_interpolation_policy, border_mode, PixelValue(), default_sampling_policy, use_padding }); in TEST_CASE()
|
/external/ComputeLibrary/src/cpu/kernels/ |
D | CpuScaleKernel.cpp | 145 ARM_COMPUTE_RETURN_ERROR_ON_MSG(info.use_padding, "Padding is not supported"); in validate_arguments()
|
/external/ComputeLibrary/utils/ |
D | TypePrinter.h | 2909 << "use_padding=" << scale_info.use_padding << ", "
|