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.py189 next_size = 0
192 next_size = next_block.next.size
254 if current_address == next_mem_offset + next_size + poison_offset:
264 next_size = 0
267 next_size = next_block.next.size
279 next_mem_offset <= current_address < next_mem_offset + next_size
285 next_mem_offset + next_size
287 < next_mem_offset + next_size + poison_offset
/external/virglrenderer/src/venus/
Dvkr_cs.c298 const uint32_t next_size = cur_size ? cur_size * 2 : min_size; in next_array_size() local
299 return next_size > cur_size ? next_size : 0; in next_array_size()
305 size_t next_size = cur_size ? cur_size * 2 : min_size; in next_buffer_size() local
306 while (next_size < need) { in next_buffer_size()
307 next_size *= 2; in next_buffer_size()
308 if (!next_size) in next_buffer_size()
311 return next_size; in next_buffer_size()
/external/AFLplusplus/include/
Dalloc-inl.h668 size_t next_size = 0; in afl_realloc() local
686 next_size = INITIAL_GROWTH_SIZE; in afl_realloc()
691 next_size = next_pow2(size_needed); in afl_realloc()
694 if (unlikely(!next_size)) { next_size = size_needed; } in afl_realloc()
700 (struct afl_alloc_buf *)realloc(new_buf, next_size); in afl_realloc()
713 new_buf->complete_size = next_size; in afl_realloc()
/external/webp/src/enc/
Dpicture_enc.c197 uint64_t next_size; in WebPMemoryWrite() local
201 next_size = (uint64_t)w->size + data_size; in WebPMemoryWrite()
202 if (next_size > w->max_size) { in WebPMemoryWrite()
205 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/rust/crates/nix/src/
Dfcntl.rs353 Some(next_size) => try_size = next_size,