Home
last modified time | relevance | path

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

/external/fmtlib/test/fuzzing/
Dnamed-arg.cc12 void invoke_fmt(const uint8_t* data, size_t size, unsigned arg_name_size) { in invoke_fmt() argument
19 if (arg_name_size <= 0 || arg_name_size >= size) return; in invoke_fmt()
20 data_to_string arg_name(data, arg_name_size, true); in invoke_fmt()
21 data += arg_name_size; in invoke_fmt()
22 size -= arg_name_size; in invoke_fmt()
92 const unsigned arg_name_size = (data[0] & 0xF0) >> 4; in LLVMFuzzerTestOneInput() local
97 invoke_fmt<decltype(arg)>(data, size, arg_name_size); in LLVMFuzzerTestOneInput()