Home
last modified time | relevance | path

Searched refs:next_size (Results 1 – 8 of 8) sorted by relevance

/external/webrtc/test/fuzzers/
Drtp_depacketizer_av1_assemble_frame_fuzzer.cc30 uint16_t next_size = fuzz_input.Read<uint16_t>() % 1200; in FuzzOneInput() local
31 if (next_size > fuzz_input.BytesLeft()) { in FuzzOneInput()
32 next_size = fuzz_input.BytesLeft(); in FuzzOneInput()
34 rtp_payloads.push_back(fuzz_input.ReadByteArray(next_size)); in FuzzOneInput()
Drtp_dependency_descriptor_fuzzer.cc35 size_t next_size = fuzz_data.Read<uint8_t>(); in FuzzOneInput() local
37 fuzz_data.ReadByteArray(std::min(next_size, fuzz_data.BytesLeft())); in FuzzOneInput()
/external/pigweed/pw_allocator/py/pw_allocator/
Dheap_viewer.py166 next_size = 0
169 next_size = next_block.next.size
214 if current_address == next_mem_offset + next_size + poison_offset:
223 next_size = 0
226 next_size = next_block.next.size
235 next_mem_offset + next_size):
239 elif (next_mem_offset + next_size <= current_address <
240 next_mem_offset + next_size + poison_offset):
/external/webp/src/enc/
Dpicture_enc.c189 uint64_t next_size; in WebPMemoryWrite() local
193 next_size = (uint64_t)w->size + data_size; in WebPMemoryWrite()
194 if (next_size > w->max_size) { in WebPMemoryWrite()
197 if (next_max_size < next_size) next_max_size = next_size; in WebPMemoryWrite()
/external/oss-fuzz/projects/mpg123/
Ddecode_fuzzer.cc44 const size_t next_size = provider.ConsumeIntegralInRange<size_t>( in LLVMFuzzerTestOneInput() local
47 auto next_input = provider.ConsumeBytes<unsigned char>(next_size); in LLVMFuzzerTestOneInput()
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
Dimage_resize_ops.cc534 std::vector<int64> next_size = in_size; in GeneralCompile() local
535 next_size[dim] = out_size[dim]; in GeneralCompile()
537 b, input, input_type, num_spatial_dims, in_size, next_size, channels, in GeneralCompile()
539 in_size[dim] = next_size[dim]; in GeneralCompile()
567 auto next_size = in_size; in GeneralCompile() local
568 next_size[dim] = next_step[in_size[dim]]; in GeneralCompile()
570 b, input, input_type, num_spatial_dims, in_size, next_size, channels, in GeneralCompile()
572 in_size[dim] = next_size[dim]; in GeneralCompile()
/external/rust/crates/nix/src/
Dfcntl.rs273 Some(next_size) => try_size = next_size, in inner_readlink()
/external/llvm-project/lldb/source/Host/common/
DEditline.cpp959 size_t next_size = all ? remaining : std::min(page_size, remaining); in DisplayCompletions() local
961 PrintCompletion(output_file, results.slice(cur_pos, next_size), max_len); in DisplayCompletions()
963 cur_pos += next_size; in DisplayCompletions()