Lines Matching refs:found

72 	const void *found;  in memchr_basic()  local
77 if ((found = memchr(memchr_buf, 'r', memchr_buflen)) != memchr_buf) { in memchr_basic()
79 "expected %p", found, memchr_buf); in memchr_basic()
83 if ((found = memrchr(memchr_buf, 'r', memchr_buflen)) != memchr_buf) { in memchr_basic()
85 "expected %p", found, memchr_buf); in memchr_basic()
92 if ((found = memchr(memchr_buf, 'r', memchr_buflen)) != memchr_buf) { in memchr_basic()
94 "expected %p", found, memchr_buf); in memchr_basic()
98 if ((found = memrchr(memchr_buf, 'r', memchr_buflen)) != targ) { in memchr_basic()
100 "expected %p", found, targ); in memchr_basic()
107 if ((found = memchr(memchr_buf, 'r', memchr_buflen)) != targ) { in memchr_basic()
109 "expected %p", found, targ); in memchr_basic()
113 if ((found = memrchr(memchr_buf, 'r', memchr_buflen)) != targ) { in memchr_basic()
115 "expected %p", found, targ); in memchr_basic()
129 const void *found; in memchr_notfound() local
133 if ((found = memchr(memchr_buf, 0, memchr_buflen)) != NULL) { in memchr_notfound()
135 "found %p, expected %p", found, NULL); in memchr_notfound()
141 "found %p, expected %p", found, NULL); in memchr_notfound()
147 "found %p, expected %p", found, NULL); in memchr_notfound()
153 "found %p, expected %p", found, NULL); in memchr_notfound()
161 "found %p, expected %p", found, NULL); in memchr_notfound()
167 "found %p, expected %p", found, NULL); in memchr_notfound()
175 "found %p, expected %p", found, NULL); in memchr_notfound()
181 "found %p, expected %p", found, NULL); in memchr_notfound()
197 const void *found; in memchr_truncation() local
202 if ((found = memchr(memchr_buf, 0x42, memchr_buflen)) != memchr_buf) { in memchr_truncation()
204 "expected %p", found, memchr_buf); in memchr_truncation()
210 if ((found = memrchr(memchr_buf, 0x42, memchr_buflen)) != targ) { in memchr_truncation()
212 "expected %p", found, targ); in memchr_truncation()
216 if ((found = memchr(memchr_buf, 0x430042, memchr_buflen)) != in memchr_truncation()
219 "found %p, expected %p", found, memchr_buf); in memchr_truncation()
223 if ((found = memrchr(memchr_buf, 0x430042, memchr_buflen)) != targ) { in memchr_truncation()
225 "found %p, expected %p", found, targ); in memchr_truncation()
232 if ((found = memchr(memchr_buf, -190, memchr_buflen)) != memchr_buf) { in memchr_truncation()
234 "found %p, expected %p", found, memchr_buf); in memchr_truncation()
238 if ((found = memrchr(memchr_buf, -190, memchr_buflen)) != targ) { in memchr_truncation()
240 "found %p, expected %p", found, targ); in memchr_truncation()
244 if ((found = memchr(memchr_buf, -190, memchr_buflen)) != memchr_buf) { in memchr_truncation()
246 "found %p, expected %p", found, memchr_buf); in memchr_truncation()
250 if ((found = memrchr(memchr_buf, -190, memchr_buflen)) != targ) { in memchr_truncation()
252 "found %p, expected %p", found, targ); in memchr_truncation()
256 if ((found = memchr(memchr_buf, 0x42424200, memchr_buflen)) != NULL) { in memchr_truncation()
258 "0x42424200, found %p, expected NULL", found); in memchr_truncation()
262 if ((found = memrchr(memchr_buf, 0x42424200, memchr_buflen)) != NULL) { in memchr_truncation()
264 "0x42424200, found %p, expected NULL", found); in memchr_truncation()