Lines Matching refs:LibFunc

45   LibFunc::Func Func;
55 {LibFunc::malloc, MallocLike, 1, 0, -1},
56 {LibFunc::valloc, MallocLike, 1, 0, -1},
57 {LibFunc::Znwj, OpNewLike, 1, 0, -1}, // new(unsigned int)
58 {LibFunc::ZnwjRKSt9nothrow_t, MallocLike, 2, 0, -1}, // new(unsigned int, nothrow)
59 {LibFunc::Znwm, OpNewLike, 1, 0, -1}, // new(unsigned long)
60 {LibFunc::ZnwmRKSt9nothrow_t, MallocLike, 2, 0, -1}, // new(unsigned long, nothrow)
61 {LibFunc::Znaj, OpNewLike, 1, 0, -1}, // new[](unsigned int)
62 {LibFunc::ZnajRKSt9nothrow_t, MallocLike, 2, 0, -1}, // new[](unsigned int, nothrow)
63 {LibFunc::Znam, OpNewLike, 1, 0, -1}, // new[](unsigned long)
64 {LibFunc::ZnamRKSt9nothrow_t, MallocLike, 2, 0, -1}, // new[](unsigned long, nothrow)
65 {LibFunc::msvc_new_int, OpNewLike, 1, 0, -1}, // new(unsigned int)
66 {LibFunc::msvc_new_int_nothrow, MallocLike, 2, 0, -1}, // new(unsigned int, nothrow)
67 {LibFunc::msvc_new_longlong, OpNewLike, 1, 0, -1}, // new(unsigned long long)
68 {LibFunc::msvc_new_longlong_nothrow, MallocLike, 2, 0, -1}, // new(unsigned long long, nothrow)
69 {LibFunc::msvc_new_array_int, OpNewLike, 1, 0, -1}, // new[](unsigned int)
70 {LibFunc::msvc_new_array_int_nothrow, MallocLike, 2, 0, -1}, // new[](unsigned int, nothrow)
71 {LibFunc::msvc_new_array_longlong, OpNewLike, 1, 0, -1}, // new[](unsigned long long)
72 …{LibFunc::msvc_new_array_longlong_nothrow, MallocLike, 2, 0, -1}, // new[](unsigned long long, n…
73 {LibFunc::calloc, CallocLike, 2, 0, 1},
74 {LibFunc::realloc, ReallocLike, 2, 1, -1},
75 {LibFunc::reallocf, ReallocLike, 2, 1, -1},
76 {LibFunc::strdup, StrDupLike, 1, -1, -1},
77 {LibFunc::strndup, StrDupLike, 2, 1, -1}
114 LibFunc::Func TLIFn; in getAllocationData()
312 LibFunc::Func TLIFn; in isFreeCall()
317 if (TLIFn == LibFunc::free || in isFreeCall()
318 TLIFn == LibFunc::ZdlPv || // operator delete(void*) in isFreeCall()
319 TLIFn == LibFunc::ZdaPv || // operator delete[](void*) in isFreeCall()
320 TLIFn == LibFunc::msvc_delete_ptr32 || // operator delete(void*) in isFreeCall()
321 TLIFn == LibFunc::msvc_delete_ptr64 || // operator delete(void*) in isFreeCall()
322 TLIFn == LibFunc::msvc_delete_array_ptr32 || // operator delete[](void*) in isFreeCall()
323 TLIFn == LibFunc::msvc_delete_array_ptr64) // operator delete[](void*) in isFreeCall()
325 else if (TLIFn == LibFunc::ZdlPvj || // delete(void*, uint) in isFreeCall()
326 TLIFn == LibFunc::ZdlPvm || // delete(void*, ulong) in isFreeCall()
327 TLIFn == LibFunc::ZdlPvRKSt9nothrow_t || // delete(void*, nothrow) in isFreeCall()
328 TLIFn == LibFunc::ZdaPvj || // delete[](void*, uint) in isFreeCall()
329 TLIFn == LibFunc::ZdaPvm || // delete[](void*, ulong) in isFreeCall()
330 TLIFn == LibFunc::ZdaPvRKSt9nothrow_t || // delete[](void*, nothrow) in isFreeCall()
331 TLIFn == LibFunc::msvc_delete_ptr32_int || // delete(void*, uint) in isFreeCall()
332 TLIFn == LibFunc::msvc_delete_ptr64_longlong || // delete(void*, ulonglong) in isFreeCall()
333 TLIFn == LibFunc::msvc_delete_ptr32_nothrow || // delete(void*, nothrow) in isFreeCall()
334 TLIFn == LibFunc::msvc_delete_ptr64_nothrow || // delete(void*, nothrow) in isFreeCall()
335 TLIFn == LibFunc::msvc_delete_array_ptr32_int || // delete[](void*, uint) in isFreeCall()
336 TLIFn == LibFunc::msvc_delete_array_ptr64_longlong || // delete[](void*, ulonglong) in isFreeCall()
337 TLIFn == LibFunc::msvc_delete_array_ptr32_nothrow || // delete[](void*, nothrow) in isFreeCall()
338 TLIFn == LibFunc::msvc_delete_array_ptr64_nothrow) // delete[](void*, nothrow) in isFreeCall()