Searched refs:next_size (Results 1 – 8 of 8) sorted by relevance
30 uint16_t next_size = fuzz_input.Read<uint16_t>() % 1200; in FuzzOneInput() local31 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()
35 size_t next_size = fuzz_data.Read<uint8_t>(); in FuzzOneInput() local37 fuzz_data.ReadByteArray(std::min(next_size, fuzz_data.BytesLeft())); in FuzzOneInput()
189 next_size = 0192 next_size = next_block.next.size254 if current_address == next_mem_offset + next_size + poison_offset:264 next_size = 0267 next_size = next_block.next.size279 next_mem_offset <= current_address < next_mem_offset + next_size285 next_mem_offset + next_size287 < next_mem_offset + next_size + poison_offset
298 const uint32_t next_size = cur_size ? cur_size * 2 : min_size; in next_array_size() local299 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() local306 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()
668 size_t next_size = 0; in afl_realloc() local686 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()
197 uint64_t next_size; in WebPMemoryWrite() local201 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()
44 const size_t next_size = provider.ConsumeIntegralInRange<size_t>( in LLVMFuzzerTestOneInput() local47 auto next_input = provider.ConsumeBytes<unsigned char>(next_size); in LLVMFuzzerTestOneInput()
353 Some(next_size) => try_size = next_size,