Searched refs:Temp (Results 1 - 25 of 112) sorted by relevance

12345

/freebsd-current/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerUtilLinux.cpp36 FILE* Temp = fopen("/dev/null", "w"); local
37 if (!Temp)
39 dup2(fileno(Temp), Fd);
40 fclose(Temp);
H A DFuzzerUtilDarwin.cpp161 FILE* Temp = fopen("/dev/null", "w"); local
162 if (!Temp)
164 dup2(fileno(Temp), Fd);
165 fclose(Temp);
H A DFuzzerUtilWindows.cpp220 FILE* Temp = fopen("nul", "w"); local
221 if (!Temp)
223 _dup2(_fileno(Temp), Fd);
224 fclose(Temp);
/freebsd-current/crypto/openssl/external/perl/Text-Template-1.56/t/
H A Dtemplate-encoding.t8 use File::Temp;
19 my $tmp_fh = File::Temp->new;
34 $tmp_fh = File::Temp->new;
H A Dofh.t9 use File::Temp;
17 my $of = File::Temp->new;
H A Dpreprocess.t9 use File::Temp;
13 my $tmpfile = File::Temp->new;
H A Dexported.t9 use File::Temp;
13 my $tfh = File::Temp->new;
H A Dtaint.t8 use File::Temp;
13 # File::Temp (for all versions up to at least 0.2308) is currently bugged under MSWin32/taint mode [as of 2018-09]
15 # ref: [File-Temp: Fails under -T, Windows 7, Strawberry Perl 5.12.1](https://rt.cpan.org/Public/Bug/Display.html?id=60340)
20 my $tmpfile = File::Temp->new;
/freebsd-current/contrib/llvm-project/llvm/lib/MC/
H A DMCSchedule.cpp100 double Temp = NumUnits * 1.0 / I->ReleaseAtCycle; local
101 Throughput = Throughput ? std::min(*Throughput, Temp) : Temp;
144 double Temp = llvm::popcount(I->getUnits()) * 1.0 / I->getCycles(); local
145 Throughput = Throughput ? std::min(*Throughput, Temp) : Temp;
/freebsd-current/sys/contrib/dev/acpica/common/
H A Ddmswitch.c168 char **Temp);
194 char *Temp = NULL; local
205 Temp = (char *) (&Op->Named.Name);
207 if (!strncmp(Temp, "_T_", 3))
209 /* Allocate and init a new Temp List node */
235 if (!AcpiDmIsSwitchBlock (Op, &Temp))
247 /* Note, if we get here Temp is not NULL */
249 if (!strncmp(Temp, (char *) (&Current->Op->Named.Name), 4))
280 "Warning: Declaration for temp name %.4s not found\n", Temp);
328 * Temp
357 AcpiDmIsSwitchBlock( ACPI_PARSE_OBJECT *Op, char **Temp) argument
[all...]
/freebsd-current/crypto/openssl/test/recipes/
H A D90-test_sslapi.t12 use File::Temp qw(tempfile);
/freebsd-current/libexec/rc/rc.d/
H A Dcleanvar40 if [ -d /var/spool/uucp/.Temp ]; then
41 find -x /var/spool/uucp/.Temp -delete
/freebsd-current/contrib/llvm-project/llvm/lib/Support/
H A DCaching.cpp156 Expected<sys::fs::TempFile> Temp = sys::fs::TempFile::create( local
158 if (!Temp)
160 toString(Temp.takeError()) + ": " + CacheName +
165 std::make_unique<raw_fd_ostream>(Temp->FD, /* ShouldClose */ false),
166 AddBuffer, std::move(*Temp), std::string(EntryPath), ModuleName.str(),
H A DFileOutputBuffer.cpp35 OnDiskBuffer(StringRef Path, fs::TempFile Temp, fs::mapped_file_region Buf) argument
36 : FileOutputBuffer(Path), Buffer(std::move(Buf)), Temp(std::move(Temp)) {}
53 return Temp.keep(FinalPath);
60 consumeError(Temp.discard());
66 consumeError(Temp.discard());
71 fs::TempFile Temp; member in class:__anon2155::OnDiskBuffer
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DUtility.h55 std::array<char, 21> Temp; local
56 char *TempPtr = Temp.data() + Temp.size();
69 std::string_view(TempPtr, Temp.data() + Temp.size() - TempPtr));
/freebsd-current/sys/contrib/dev/acpica/components/debugger/
H A Ddbstats.c510 UINT32 Temp; local
514 Temp = AcpiDbMatchArgument (TypeArg, AcpiDbStatTypes);
515 if (Temp == ACPI_TYPE_NOT_FOUND)
522 switch (Temp)
646 Temp = (UINT32) ACPI_PTR_DIFF (
652 AcpiOsPrintf ("Stack Use %X (%u)\n", Temp, Temp);
H A Ddbinput.c901 UINT32 Temp; local
1115 Temp = AcpiGbl_DbConsoleDebugLevel;
1120 Temp, AcpiGbl_DbConsoleDebugLevel);
1124 Temp = AcpiGbl_DbDebugLevel;
1128 Temp, AcpiGbl_DbDebugLevel);
1163 Temp = strtoul (AcpiGbl_DbArgs[2], NULL, 0);
1164 AcpiDbSendNotify (AcpiGbl_DbArgs[1], Temp);
/freebsd-current/contrib/llvm-project/llvm/tools/bugpoint/
H A DOptimizerDriver.cpp147 Expected<sys::fs::TempFile> Temp = local
149 if (!Temp) {
151 << ": Error making unique filename: " << toString(Temp.takeError())
155 DiscardTemp Discard{*Temp};
156 raw_fd_ostream OS(Temp->FD, /*shouldClose*/ false);
161 errs() << "Error writing bitcode file: " << Temp->TmpName << "\n";
227 Args.push_back(Temp->TmpName);
H A DExecutionDriver.cpp260 auto Temp = local
262 if (!Temp) {
264 << ": Error making unique filename: " << toString(Temp.takeError())
268 DiscardTemp Discard{*Temp};
269 if (writeProgramToFile(Temp->FD, M)) {
270 errs() << ToolName << ": Error emitting bitcode to file '" << Temp->TmpName
276 return Interpreter->compileProgram(Temp->TmpName, Timeout, MemoryLimit);
H A DExtractFunction.cpp373 auto Temp = sys::fs::TempFile::create(OutputPrefix + "-extractblocks%%%%%%%"); local
374 if (!Temp) {
376 errs() << "Error creating temporary file: " << toString(Temp.takeError())
381 DiscardTemp Discard{*Temp};
391 raw_fd_ostream OS(Temp->FD, /*shouldClose*/ false);
408 uniqueFN += Temp->TmpName;
/freebsd-current/contrib/llvm-project/llvm/lib/ProfileData/
H A DProfileSummaryBuilder.cpp145 APInt Temp(128, TotalCount);
148 Temp *= N;
149 Temp = Temp.sdiv(D);
150 uint64_t DesiredCount = Temp.getZExtValue();
/freebsd-current/contrib/ee/
H A Dnew_curse.c1147 int Temp; local
1149 Temp = 0;
1152 Temp = (Temp * 10) + (*TERM_data_ptr - '0');
1155 return(Temp);
1265 char *Temp; local
1272 Temp = ++TERM_data_ptr;
1274 while ((*Temp != ':') && (*Temp != (char)NULL))
1277 Temp
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/ObjCopy/MachO/
H A DMachOWriter.cpp216 StructType Temp; local
217 assert(Sec.Segname.size() <= sizeof(Temp.segname) && "too long segment name");
218 assert(Sec.Sectname.size() <= sizeof(Temp.sectname) &&
220 memset(&Temp, 0, sizeof(StructType));
221 memcpy(Temp.segname, Sec.Segname.data(), Sec.Segname.size());
222 memcpy(Temp.sectname, Sec.Sectname.data(), Sec.Sectname.size());
223 Temp.addr = Sec.Addr;
224 Temp.size = Sec.Size;
225 Temp.offset = Sec.Offset;
226 Temp
[all...]
/freebsd-current/sys/contrib/dev/acpica/components/namespace/
H A Dnsalloc.c179 UINT32 Temp; local
195 Temp = AcpiGbl_NsNodeList->TotalAllocated -
197 if (Temp > AcpiGbl_NsNodeList->MaxOccupied)
199 AcpiGbl_NsNodeList->MaxOccupied = Temp;
/freebsd-current/contrib/llvm-project/llvm/include/llvm/IR/
H A DAutoUpgrade.h80 Instruction *&Temp);

Completed in 426 milliseconds

12345