Lines Matching defs:ptr
28 char *fullpath, *ptr;
87 ptr = av_strnstr(haystack, needle, hay_length); \
88 if (ptr != expected){ \
89 printf("expected: %p, received %p\n", expected, ptr); \
98 ptr = av_strireplace(haystack, needle, "instead"); \
99 if (ptr == NULL) { \
102 if (strcmp(ptr, expected) != 0) \
103 printf( "expected: %s, received: %s\n", expected, ptr); \
104 av_free(ptr); \
116 if((ptr = av_d2str(value)) == NULL){ \
119 if(strcmp(ptr, expected) != 0) \
120 printf( "expected: %s, received: %s\n", expected, ptr); \
121 av_free(ptr); \