Home
last modified time | relevance | path

Searched refs:inbuf (Results 1 – 9 of 9) sorted by relevance

/llvm-project-15.0.7/llvm/test/CodeGen/SPARC/
H A Dsetjmp.ll27 define i32 @foo(%struct.jmpbuf_env* byval(%struct.jmpbuf_env) %inbuf) #0 {
29 %0 = getelementptr inbounds %struct.jmpbuf_env, %struct.jmpbuf_env* %inbuf, i32 0, i32 0
31 %1 = getelementptr inbounds %struct.jmpbuf_env, %struct.jmpbuf_env* %inbuf, i32 0, i32 1
33 %2 = getelementptr inbounds %struct.jmpbuf_env, %struct.jmpbuf_env* %inbuf, i32 0, i32 2, i32 0
35 %4 = getelementptr inbounds %struct.jmpbuf_env, %struct.jmpbuf_env* %inbuf, i32 0, i32 3
37 store %struct.jmpbuf_env* %inbuf, %struct.jmpbuf_env** @jenv, align 4, !tbaa !3
/llvm-project-15.0.7/compiler-rt/test/msan/
H A Diconv.cpp29 const char *inbuf = inbuf_; in main() local
31 char *inbuf = inbuf_; in main() local
52 res = iconv(cd, &inbuf, &inbytesleft, &outbuf, &outbytesleft); in main()
/llvm-project-15.0.7/compiler-rt/test/sanitizer_common/TestCases/Linux/
H A Diconv_test.c18 char *inbuf = &in[0]; in main() local
22 int ret = iconv(cd, &inbuf, &inbytesleft, &outbuf, &outbytesleft); in main()
/llvm-project-15.0.7/flang/lib/Parser/
H A Dsource.cpp132 auto inbuf = std::move(buf_or.get()); in ReadStandardInput() local
134 llvm::WritableMemoryBuffer::getNewUninitMemBuffer(inbuf->getBufferSize()); in ReadStandardInput()
135 llvm::copy(inbuf->getBuffer(), buf_->getBufferStart()); in ReadStandardInput()
/llvm-project-15.0.7/llvm/test/Transforms/SLPVectorizer/X86/
H A Dcrash_lencod-inseltpoison.ll126 define fastcc void @dct36(double* %inbuf) {
139 %arrayidx41 = getelementptr inbounds double, double* %inbuf, i64 2
140 %arrayidx44 = getelementptr inbounds double, double* %inbuf, i64 1
144 %1 = load double, double* %inbuf, align 8
H A Dcrash_lencod.ll126 define fastcc void @dct36(double* %inbuf) {
139 %arrayidx41 = getelementptr inbounds double, double* %inbuf, i64 2
140 %arrayidx44 = getelementptr inbounds double, double* %inbuf, i64 1
144 %1 = load double, double* %inbuf, align 8
/llvm-project-15.0.7/llvm/test/CodeGen/Thumb2/LowOverheadLoops/
H A Dexitcount.ll41 …%inbuf = getelementptr inbounds %struct.SpeexPreprocessState_, %struct.SpeexPreprocessState_* %st,…
42 %2 = load half*, half** %inbuf, align 4
/llvm-project-15.0.7/llvm/test/Transforms/InstCombine/
H A Dcast.ll9 @inbuf = external global [32832 x i8]
153 ; ALL-NEXT: [[C:%.*]] = getelementptr [32832 x i8], [32832 x i8]* @inbuf, i64 0, i64 [[A:%.*]]
156 %c = getelementptr [0 x i8], [0 x i8]* bitcast ([32832 x i8]* @inbuf to [0 x i8]*), i64 0, i64 %A
/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors.inc5488 INTERCEPTOR(SIZE_T, iconv, void *cd, char **inbuf, SIZE_T *inbytesleft,
5491 COMMON_INTERCEPTOR_ENTER(ctx, iconv, cd, inbuf, inbytesleft, outbuf,
5495 if (inbuf && inbytesleft)
5496 COMMON_INTERCEPTOR_READ_RANGE(ctx, *inbuf, *inbytesleft);
5503 SIZE_T res = REAL(iconv)(cd, inbuf, inbytesleft, outbuf, outbytesleft);