Home
last modified time | relevance | path

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

/freebsd/contrib/libcbor/oss-fuzz/
H A Dcbor_load_fuzzer.cc9 static std::unordered_map<void*, size_t> allocated_len_map; variable
22 allocated_len_map[m] = size; in limited_malloc()
28 if (ptr != NULL && allocated_len_map.find(ptr) == allocated_len_map.end()) { in limited_free()
33 allocated_mem -= allocated_len_map[ptr]; in limited_free()
34 allocated_len_map.erase(ptr); in limited_free()
39 if (ptr != NULL && allocated_len_map.find(ptr) == allocated_len_map.end()) { in limited_realloc()
45 long delta = (long) size - allocated_len_map[ptr]; in limited_realloc()
54 allocated_len_map.erase(ptr); in limited_realloc()
56 allocated_len_map[new_ptr] = size; in limited_realloc()