Home
last modified time | relevance | path

Searched defs:Ret (Results 1 – 25 of 339) sorted by relevance

12345678910>>...14

/llvm-project/clang/test/Analysis/
H A Dstream-noopen.c35 size_t Ret = fread(RBuf, 1, 10, F); in test_fread() local
48 size_t Ret = fwrite(WBuf, 1, 10, F); in test_fwrite() local
61 int Ret = fgetc(F); in test_fgetc() local
74 int Ret = fputc('a', F); in test_fputc() local
87 char *Ret = fgets(Buf, N, F); in test_fgets() local
111 int Ret = fputs(Buf, F); in test_fputs() local
125 int Ret = ungetc('X', F); in test_ungetc() local
138 int Ret = ungetc(EOF, F); in test_ungetc_EOF() local
150 int Ret = fclose(F); in test_fclose() local
163 int Ret = fseek(F, SEEK_SET, 1); in test_fseek() local
[all …]
H A Dstream-pedantic.c16 size_t Ret = fwrite(Buf, 1, 10, Fp); in check_fwrite() local
28 int Ret = fputc('A', Fp); in check_fputc() local
40 int Ret = fputs("ABC", Fp); in check_fputs() local
52 int Ret = fprintf(Fp, "ABC"); in check_fprintf() local
64 int Ret = fseek(Fp, 0, 0); in check_fseek() local
76 int Ret = fseeko(Fp, 0, 0); in check_fseeko() local
89 int Ret = fsetpos(Fp, &Pos); in check_fsetpos() local
H A Dstd-c-library-functions-POSIX.c171 ssize_t Ret = recvfrom(socket, buffer, length, flags, address, address_len); in test_recvfrom() local
182 ssize_t Ret = sendto(socket, message, length, flags, dest_addr, dest_len); in test_sendto() local
192 ssize_t Ret = recv(sockfd, buf, len, flags); in test_recv() local
202 ssize_t Ret = send(sockfd, buf, len, flags); in test_send() local
212 ssize_t Ret = recvmsg(sockfd, msg, flags); in test_recvmsg() local
217 ssize_t Ret = sendmsg(sockfd, msg, flags); in test_sendmsg() local
222 ssize_t Ret = readlink("path", Buf, Bufsize); in test_readlink_bufsize_zero() local
232 ssize_t Ret = readlinkat(fd, "path", Buf, Bufsize); in test_readlinkat_bufsize_zero() local
H A Dstream-error.c82 int Ret = fread(Buf, 1, 10, F); in error_fread() local
107 int Ret = fwrite(Buf, 1, 10, F); in error_fwrite() local
123 int Ret = fgetc(F); in error_fgetc() local
146 char *Ret = fgets(Buf, sizeof(Buf), F); error_fgets() local
168 int Ret = fputc('X', F); error_fputc() local
186 int Ret = fputs("XYZ", F); error_fputs() local
204 int Ret = fprintf(F, "aaa"); error_fprintf() local
221 int Ret = fscanf(F, "a%ib", A); error_fscanf() local
246 int Ret = ungetc('X', F); error_ungetc() local
266 ssize_t Ret = getdelim(&P, &Sz, '\t', F); error_getdelim() local
288 ssize_t Ret = getline(&P, &Sz, F); error_getline() local
323 size_t Ret; freadwrite_zerosize() local
[all...]
H A Derrno-stdlibraryfunctions.c118 int Ret = execv(Path, Argv); in errno_execv() local
125 int Ret = execvp(File, Argv); in errno_execvp() local
146 int Ret = pclose(F); in errno_pclose() local
157 char *Ret = realpath(Path, Buf); in errno_realpath() local
H A Dstream-errno.c59 int Ret = fclose(F); in check_fclose() local
189 int Ret = fgetpos(F, &Pos); in check_fgetpos() local
204 int Ret = fsetpos(F, &Pos); in check_fsetpos() local
218 long Ret = ftell(F); in check_ftell() local
233 off_t Ret = ftello(F); in check_ftello() local
H A Dstream-invalidate.c88 int Ret = fscanf(F, "%d %u", &a, &b); in test_fscanf() local
118 ssize_t Ret = getdelim(&P, &Sz, '\t', F); in test_getdelim() local
140 int Ret = fgetpos(F, &Pos); in test_fgetpos() local
/llvm-project/clang/unittests/AST/
H A DRecursiveASTVisitorTest.cpp76 bool Ret = RecursiveASTVisitor::TraverseFunctionDecl(D); in TraverseFunctionDecl() local
84 bool Ret = RecursiveASTVisitor::TraverseAttr(A); in TraverseAttr() local
92 bool Ret = RecursiveASTVisitor::TraverseEnumDecl(D); in TraverseEnumDecl() local
100 bool Ret = RecursiveASTVisitor::TraverseTypedefTypeLoc(TL); in TraverseTypedefTypeLoc() local
108 bool Ret = RecursiveASTVisitor::TraverseObjCInterfaceDecl(ID); in TraverseObjCInterfaceDecl() local
116 bool Ret = RecursiveASTVisitor::TraverseObjCProtocolDecl(PD); in TraverseObjCProtocolDecl() local
124 bool Ret = RecursiveASTVisitor::TraverseObjCProtocolLoc(ProtocolLoc); in TraverseObjCProtocolLoc() local
/llvm-project/libc/test/src/string/
H A Dmemmove_test.cpp25 void *const Ret = LIBC_NAMESPACE::memmove(Dst, Buffer + 2, 0); TEST() local
34 void *const Ret = LIBC_NAMESPACE::memmove(Dst, Buffer, 1); TEST() local
45 void *const Ret = LIBC_NAMESPACE::memmove(Dst, Buffer + 2, 2); TEST() local
54 void *const Ret = LIBC_NAMESPACE::memmove(Dst, Buffer + 1, 2); TEST() local
67 void *const Ret = LIBC_NAMESPACE::memmove(Dst, Buffer + 2, 1); TEST() local
76 void *const Ret = LIBC_NAMESPACE::memmove(Dst, Buffer + 1, 1); TEST() local
[all...]
/llvm-project/lldb/source/Host/linux/
H A DSupport.cpp20 auto Ret = llvm::MemoryBuffer::getFileAsStream(File); in getProcFile() local
30 auto Ret = llvm::MemoryBuffer::getFileAsStream(File); in getProcFile() local
40 auto Ret = llvm::MemoryBuffer::getFileAsStream(File); in getProcFile() local
/llvm-project/llvm/unittests/Transforms/Utils/
H A DIntegerDivisionTest.cpp43 Value *Ret = Builder.CreateRet(Div); in TEST() local
73 Value *Ret = Builder.CreateRet(Div); in TEST() local
103 Value *Ret = Builder.CreateRet(Rem); in TEST() local
133 Value *Ret = Builder.CreateRet(Rem); in TEST() local
164 Value *Ret = Builder.CreateRet(Div); in TEST() local
194 Value *Ret = Builder.CreateRet(Div); in TEST() local
224 Value *Ret = Builder.CreateRet(Rem); in TEST() local
254 Value *Ret = Builder.CreateRet(Rem); in TEST() local
/llvm-project/clang/lib/Basic/
H A DSarif.cpp72 SmallString<32> Ret = StringRef("file://"); in fileNameToURI() local
131 unsigned int Ret = 1; in adjustColumnPos() local
168 json::Object Ret{{"physicalLocatio in createLocation() local
326 json::Object Ret{{"locations", json::Array{}}}; createThreadFlows() local
380 size_t Ret = CurrentRules.size(); createRule() local
392 json::Object Ret{{"message", createMessage(Result.DiagnosticMessage)}, appendResult() local
[all...]
/llvm-project/llvm/lib/Demangle/
H A DDLangDemangle.cpp169 void Demangler::decodeNumber(std::string_view &Mangled, unsigned long &Ret) { in decodeNumber()
204 bool Demangler::decodeBackrefPos(std::string_view &Mangled, long &Ret) { in decodeBackrefPos()
247 std::string_view &Ret) { in decodeBackref()
340 long Ret; in isSymbolName() local
/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeEnumInjectedSources.cpp52 StringRef Ret = cantFail(Strings.getStringForID(Entry.FileNI), getFileName() local
58 StringRef Ret = cantFail(Strings.getStringForID(Entry.ObjNI), getObjectFileName() local
64 StringRef Ret = cantFail(Strings.getStringForID(Entry.VFileNI), getVirtualFileName() local
/llvm-project/llvm/unittests/Analysis/
H A DTFUtilsTest.cpp61 float Ret = *ER->getTensorValue<float>(0); in TEST() local
76 float Ret = *ER->getTensorValue<float>(0); in TEST() local
115 float Ret = Evaluator.evaluate<float>(); in TEST() local
/llvm-project/offload/src/
H A Domptarget.cpp707 int Ret = targetDataBegin() local
766 int Ret = OFFLOAD_SUCCESS; postProcessingTargetDataEnd() local
843 int Ret = OFFLOAD_SUCCESS; targetDataEnd() local
1007 int Ret = Device.submitData(TgtPtrBegin, HstPtrBegin, ArgSize, AsyncInfo, targetDataContiguous() local
1014 int Ret = TPR.getEntry()->foreachShadowPointerInfo( targetDataContiguous() local
1038 int Ret = Device.retrieveData(HstPtrBegin, TgtPtrBegin, ArgSize, AsyncInfo, targetDataContiguous() local
1049 int Ret = Entry->foreachShadowPointerInfo( targetDataContiguous() local
1076 int Ret = OFFLOAD_SUCCESS; targetDataNonContiguous() local
1132 int Ret = targetDataMapper(Loc, Device, ArgsBase[I], Args[I], ArgSizes[I], targetDataUpdate() local
1146 int Ret = OFFLOAD_SUCCESS; targetDataUpdate() local
1292 int Ret = Device.submitData(TgtPtr, HstPtr, ArgSize, AsyncInfo); addArg() local
1374 int Ret = Device.submitData(TgtPtr, FirstPrivateArgBuffer.data(), packAndTransfer() local
1402 int Ret = Device.deleteData(P); free() local
1431 int Ret = targetDataBegin(Loc, *DeviceOrErr, ArgNum, ArgBases, Args, ArgSizes, processDataBefore() local
1565 int Ret = targetDataEnd(Loc, *DeviceOrErr, ArgNum, ArgBases, Args, ArgSizes, processDataAfter() local
1578 int Ret = PrivateArgumentManager.free(); processDataAfter() local
1634 int Ret = OFFLOAD_SUCCESS; target() local
1760 int Ret = Device.launchKernel(TgtEntryPtr, TgtArgs, TgtOffsets, KernelArgs, target_replay() local
[all...]
/llvm-project/compiler-rt/test/dfsan/
H A Dmmap_at_init.c25 void *Ret = mmap(NULL, Size, PROT_READ | PROT_WRITE, in calloc() local
/llvm-project/compiler-rt/test/profile/
H A Dinstrprof-write-file.c22 int Ret = foo(0); in main() local
H A Dinstrprof-set-dir-mode.c16 int Ret = 0; in test() local
H A Dinstrprof-dump.c18 int Ret = foo(0); /* region 1 */ in main() local
/llvm-project/llvm/lib/ProfileData/
H A DPGOCtxProfReader.cpp127 PGOContextualProfile Ret(*Guid, std::move(*Counters)); readContext() local
164 std::map<GlobalValue::GUID, PGOContextualProfile> Ret; loadContexts() local
/llvm-project/llvm/tools/bugpoint/
H A DMiscompilation.cpp201 Expected<bool> Ret = TestFuncs(Suffix); in doTest() local
208 Expected<bool> Ret = TestFuncs(Prefix); in doTest() local
463 Expected<bool> Ret = TestFuncs(Suffix); in doTest() local
470 Expected<bool> Ret in doTest() local
526 Expected<bool> Ret = TestFn(BD, std::move(New), std::move(ToNotOptimize)); TestFuncs() local
556 Expected<bool> Ret = ReduceMiscompiledBlocks(BD, TestFn, MiscompiledFunctions) ExtractBlocks() local
563 Expected<bool> Ret = ExtractBlocks() local
631 Expected<bool> Ret = ReduceMiscompilingFunctions(BD, TestFn) DebugAMiscompilation() local
648 Expected<bool> Ret = ExtractLoops(BD, TestFn, MiscompiledFunctions); DebugAMiscompilation() local
672 Expected<bool> Ret = ExtractBlocks(BD, TestFn, MiscompiledFunctions); DebugAMiscompilation() local
[all...]
/llvm-project/libcxx/test/std/utilities/function.objects/bind/func.bind/func.bind.bind/
H A Dbind_return_type.pass.cpp57 using Ret = decltype(ret(42)); in do_test() typedef
102 using Ret = decltype(ret(42)); in do_test_r() typedef
/llvm-project/llvm/lib/Object/
H A DIRObjectFile.cpp54 DataRefImpl Ret; in symbol_begin() local
60 DataRefImpl Ret; in symbol_end() local
/llvm-project/llvm/include/llvm/CodeGen/
H A DWasmEHFuncInfo.h46 SmallPtrSet<const BasicBlock *, 4> Ret; in getUnwindSrcs() local
70 SmallPtrSet<MachineBasicBlock *, 4> Ret; in getUnwindSrcs() local

12345678910>>...14