Lines Matching refs:ptr
39 void *ptr = __coverity_alloc__(size);
40 __coverity_mark_as_uninitialized_buffer__(ptr);
41 __coverity_mark_as_afm_allocated__(ptr, "av_free");
42 return ptr;
52 void *ptr = __coverity_alloc__(size);
53 __coverity_writeall0__(ptr);
54 __coverity_mark_as_afm_allocated__(ptr, "av_free");
55 return ptr;
61 void *av_realloc(void *ptr, size_t size) {
65 __coverity_escape__(ptr);
66 ptr = __coverity_alloc__(size);
67 __coverity_writeall__(ptr);
68 __coverity_mark_as_afm_allocated__(ptr, "av_free");
69 return ptr;
75 void *av_free(void *ptr) {
76 __coverity_free__(ptr);
77 __coverity_mark_as_afm_freed__(ptr, "av_free");