Home
last modified time | relevance | path

Searched refs:outbuf (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/llvm/test/Transforms/GVN/PRE/
H A Dlpre-call-wrap-2.ll6 ; void bi_windup(unsigned char *outbuf, unsigned char bi_buf) {
7 ; outbuf[outcnt] = bi_buf;
10 ; outbuf[outcnt] = bi_buf;
16 define void @bi_windup(i8* %outbuf, i8 zeroext %bi_buf) nounwind {
20 %1 = getelementptr i8, i8* %outbuf, i32 %0 ; <i8*> [#uses=1]
35 %5 = getelementptr i8, i8* %outbuf, i32 %4 ; <i8*> [#uses=1]
/llvm-project-15.0.7/compiler-rt/test/sanitizer_common/TestCases/Linux/
H A Diconv_test.c20 char *outbuf = &out[0]; in main() local
22 int ret = iconv(cd, &inbuf, &inbytesleft, &outbuf, &outbytesleft); in main()
24 assert(outbuf - &out[0] == 10); in main()
/llvm-project-15.0.7/compiler-rt/test/msan/
H A Diconv.cpp33 char *outbuf = outbuf_; in main() local
49 res = iconv(cd, 0, 0, &outbuf, &outbytesleft); in main()
52 res = iconv(cd, &inbuf, &inbytesleft, &outbuf, &outbytesleft); in main()
/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors.inc5489 char **outbuf, SIZE_T *outbytesleft) {
5491 COMMON_INTERCEPTOR_ENTER(ctx, iconv, cd, inbuf, inbytesleft, outbuf,
5499 void *outbuf_orig = outbuf ? *outbuf : nullptr;
5503 SIZE_T res = REAL(iconv)(cd, inbuf, inbytesleft, outbuf, outbytesleft);
5504 if (outbuf && *outbuf > outbuf_orig) {
5505 SIZE_T sz = (char *)*outbuf - (char *)outbuf_orig;