Searched refs:inbytesleft (Results 1 – 3 of 3) sorted by relevance
| /llvm-project-15.0.7/compiler-rt/test/msan/ |
| H A D | iconv.cpp | 34 size_t inbytesleft = strlen(inbuf_); in main() local 52 res = iconv(cd, &inbuf, &inbytesleft, &outbuf, &outbytesleft); in main() 56 assert(inbytesleft == 0); in main()
|
| /llvm-project-15.0.7/compiler-rt/test/sanitizer_common/TestCases/Linux/ |
| H A D | iconv_test.c | 19 size_t inbytesleft = 11; in main() local 22 int ret = iconv(cd, &inbuf, &inbytesleft, &outbuf, &outbytesleft); in main()
|
| /llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_common_interceptors.inc | 5488 INTERCEPTOR(SIZE_T, iconv, void *cd, char **inbuf, SIZE_T *inbytesleft, 5491 COMMON_INTERCEPTOR_ENTER(ctx, iconv, cd, inbuf, inbytesleft, outbuf, 5493 if (inbytesleft) 5494 COMMON_INTERCEPTOR_READ_RANGE(ctx, inbytesleft, sizeof(*inbytesleft)); 5495 if (inbuf && inbytesleft) 5496 COMMON_INTERCEPTOR_READ_RANGE(ctx, *inbuf, *inbytesleft); 5503 SIZE_T res = REAL(iconv)(cd, inbuf, inbytesleft, outbuf, outbytesleft);
|