Lines Matching defs:val
188 void *val;
195 memcpy(&val, ptr, sizeof(val));
196 val = av_realloc(val, size);
198 if (!val) {
203 memcpy(ptr, &val, sizeof(val));
235 void *val;
237 memcpy(&val, ptr, sizeof(val));
238 val = av_realloc_f(val, nmemb, size);
239 memcpy(ptr, &val, sizeof(val));
240 if (!val && nmemb && size)
257 void *val;
259 memcpy(&val, arg, sizeof(val));
260 memcpy(arg, &(void *){ NULL }, sizeof(val));
261 av_free(val);
538 void *val;
540 memcpy(&val, ptr, sizeof(val));
542 av_assert0(val || !min_size);
557 val = zero_realloc ? av_mallocz(min_size) : av_malloc(min_size);
558 memcpy(ptr, &val, sizeof(val));
559 if (!val)