Home
last modified time | relevance | path

Searched refs:Temp (Results 1 – 25 of 123) sorted by relevance

12345

/freebsd/sys/contrib/dev/acpica/common/
H A Ddmswitch.c168 char **Temp);
194 char *Temp = NULL; in AcpiDmProcessSwitch() local
205 Temp = (char *) (&Op->Named.Name); in AcpiDmProcessSwitch()
207 if (!strncmp(Temp, "_T_", 3)) in AcpiDmProcessSwitch()
235 if (!AcpiDmIsSwitchBlock (Op, &Temp)) in AcpiDmProcessSwitch()
249 if (!strncmp(Temp, (char *) (&Current->Op->Named.Name), 4)) in AcpiDmProcessSwitch()
280 "Warning: Declaration for temp name %.4s not found\n", Temp); in AcpiDmProcessSwitch()
359 char **Temp) in AcpiDmIsSwitchBlock() argument
399 *Temp = (char *) (NamePathOp->Common.Value.Name); in AcpiDmIsSwitchBlock()
/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerUtilLinux.cpp36 FILE* Temp = fopen("/dev/null", "w"); in DiscardOutput() local
37 if (!Temp) in DiscardOutput()
39 dup2(fileno(Temp), Fd); in DiscardOutput()
40 fclose(Temp); in DiscardOutput()
H A DFuzzerUtilDarwin.cpp161 FILE* Temp = fopen("/dev/null", "w"); in DiscardOutput() local
162 if (!Temp) in DiscardOutput()
164 dup2(fileno(Temp), Fd); in DiscardOutput()
165 fclose(Temp); in DiscardOutput()
H A DFuzzerUtilWindows.cpp225 FILE* Temp = fopen("nul", "w"); in DiscardOutput() local
226 if (!Temp) in DiscardOutput()
228 _dup2(_fileno(Temp), Fd); in DiscardOutput()
229 fclose(Temp); in DiscardOutput()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DFileOutputBuffer.cpp35 OnDiskBuffer(StringRef Path, fs::TempFile Temp, fs::mapped_file_region Buf) in OnDiskBuffer()
36 : FileOutputBuffer(Path), Buffer(std::move(Buf)), Temp(std::move(Temp)) {}
53 return Temp.keep(FinalPath); in ~OnDiskBuffer()
60 consumeError(Temp.discard()); in discard()
66 consumeError(Temp.discard());
71 fs::TempFile Temp;
34 OnDiskBuffer(StringRef Path,fs::TempFile Temp,fs::mapped_file_region Buf) OnDiskBuffer() argument
68 fs::TempFile Temp; global() member in __anon71e275e70111::OnDiskBuffer
H A DCaching.cpp156 Expected<sys::fs::TempFile> Temp = sys::fs::TempFile::create( in localCache()
158 if (!Temp) in localCache()
160 toString(Temp.takeError()) + ": " + CacheName + in localCache()
165 std::make_unique<raw_fd_ostream>(Temp->FD, /* ShouldClose */ false), in localCache()
166 AddBuffer, std::move(*Temp), std::string(EntryPath), ModuleName.str(), in localCache()
154 Expected<sys::fs::TempFile> Temp = sys::fs::TempFile::create( localCache() local
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCSchedule.cpp100 double Temp = NumUnits * 1.0 / I->ReleaseAtCycle; in getReciprocalThroughput() local
101 Throughput = Throughput ? std::min(*Throughput, Temp) : Temp; in getReciprocalThroughput()
144 double Temp = llvm::popcount(I->getUnits()) * 1.0 / I->getCycles(); in getReciprocalThroughput() local
145 Throughput = Throughput ? std::min(*Throughput, Temp) : Temp; in getReciprocalThroughput()
/freebsd/contrib/llvm-project/llvm/tools/bugpoint/
H A DOptimizerDriver.cpp147 Expected<sys::fs::TempFile> Temp = in runPasses() local
149 if (!Temp) { in runPasses()
151 << ": Error making unique filename: " << toString(Temp.takeError()) in runPasses()
155 DiscardTemp Discard{*Temp}; in runPasses()
156 raw_fd_ostream OS(Temp->FD, /*shouldClose*/ false); in runPasses()
161 errs() << "Error writing bitcode file: " << Temp->TmpName << "\n"; in runPasses()
227 Args.push_back(Temp->TmpName); in runPasses()
H A DExecutionDriver.cpp260 auto Temp = in compileProgram() local
262 if (!Temp) { in compileProgram()
264 << ": Error making unique filename: " << toString(Temp.takeError()) in compileProgram()
268 DiscardTemp Discard{*Temp}; in compileProgram()
269 if (writeProgramToFile(Temp->FD, M)) { in compileProgram()
270 errs() << ToolName << ": Error emitting bitcode to file '" << Temp->TmpName in compileProgram()
276 return Interpreter->compileProgram(Temp->TmpName, Timeout, MemoryLimit); in compileProgram()
H A DExtractFunction.cpp373 auto Temp = sys::fs::TempFile::create(OutputPrefix + "-extractblocks%%%%%%%"); in extractMappedBlocksFromModule() local
374 if (!Temp) { in extractMappedBlocksFromModule()
376 errs() << "Error creating temporary file: " << toString(Temp.takeError()) in extractMappedBlocksFromModule()
381 DiscardTemp Discard{*Temp}; in extractMappedBlocksFromModule()
391 raw_fd_ostream OS(Temp->FD, /*shouldClose*/ false); in extractMappedBlocksFromModule()
408 uniqueFN += Temp->TmpName; in extractMappedBlocksFromModule()
/freebsd/sys/contrib/dev/acpica/components/debugger/
H A Ddbstats.c510 UINT32 Temp; in AcpiDbDisplayStatistics() local
514 Temp = AcpiDbMatchArgument (TypeArg, AcpiDbStatTypes); in AcpiDbDisplayStatistics()
515 if (Temp == ACPI_TYPE_NOT_FOUND) in AcpiDbDisplayStatistics()
522 switch (Temp) in AcpiDbDisplayStatistics()
646 Temp = (UINT32) ACPI_PTR_DIFF ( in AcpiDbDisplayStatistics()
652 AcpiOsPrintf ("Stack Use %X (%u)\n", Temp, Temp); in AcpiDbDisplayStatistics()
H A Ddbinput.c901 UINT32 Temp; in AcpiDbCommandDispatch() local
1115 Temp = AcpiGbl_DbConsoleDebugLevel; in AcpiDbCommandDispatch()
1120 Temp, AcpiGbl_DbConsoleDebugLevel); in AcpiDbCommandDispatch()
1124 Temp = AcpiGbl_DbDebugLevel; in AcpiDbCommandDispatch()
1128 Temp, AcpiGbl_DbDebugLevel); in AcpiDbCommandDispatch()
1163 Temp = strtoul (AcpiGbl_DbArgs[2], NULL, 0); in AcpiDbCommandDispatch()
1164 AcpiDbSendNotify (AcpiGbl_DbArgs[1], Temp); in AcpiDbCommandDispatch()
/freebsd/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;
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/MachO/
H A DMachOWriter.cpp216 StructType Temp; in writeSectionInLoadCommand() local
217 assert(Sec.Segname.size() <= sizeof(Temp.segname) && "too long segment name"); in writeSectionInLoadCommand()
218 assert(Sec.Sectname.size() <= sizeof(Temp.sectname) && in writeSectionInLoadCommand()
220 memset(&Temp, 0, sizeof(StructType)); in writeSectionInLoadCommand()
221 memcpy(Temp.segname, Sec.Segname.data(), Sec.Segname.size()); in writeSectionInLoadCommand()
222 memcpy(Temp.sectname, Sec.Sectname.data(), Sec.Sectname.size()); in writeSectionInLoadCommand()
223 Temp.addr = Sec.Addr; in writeSectionInLoadCommand()
224 Temp.size = Sec.Size; in writeSectionInLoadCommand()
225 Temp.offset = Sec.Offset; in writeSectionInLoadCommand()
226 Temp.align = Sec.Align; in writeSectionInLoadCommand()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DUtility.h55 std::array<char, 21> Temp;
56 char *TempPtr = Temp.data() + Temp.size();
69 std::string_view(TempPtr, Temp.data() + Temp.size() - TempPtr));
57 std::array<char, 21> Temp; global() variable
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DProfileSummaryBuilder.cpp145 APInt Temp(128, TotalCount); in computeDetailedSummary() local
148 Temp *= N; in computeDetailedSummary()
149 Temp = Temp.sdiv(D); in computeDetailedSummary()
150 uint64_t DesiredCount = Temp.getZExtValue(); in computeDetailedSummary()
/freebsd/sys/contrib/dev/acpica/components/namespace/
H A Dnsalloc.c179 UINT32 Temp; in AcpiNsCreateNode() local
195 Temp = AcpiGbl_NsNodeList->TotalAllocated - in AcpiNsCreateNode()
197 if (Temp > AcpiGbl_NsNodeList->MaxOccupied) in AcpiNsCreateNode()
199 AcpiGbl_NsNodeList->MaxOccupied = Temp; in AcpiNsCreateNode()
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCTLSDynamicCall.cpp206 MachineInstr *Temp = in processBlock() local
212 if (Temp == &MI && RegInfo.hasOneDef(InReg)) in processBlock()
213 Temp = RegInfo.getOneDef(InReg)->getParent(); in processBlock()
214 if (Temp->getOpcode() == LDTocOp) in processBlock()
215 LoadFromTocs.insert(Temp); in processBlock()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DMachOUniversalWriter.cpp361 Expected<sys::fs::TempFile> Temp = sys::fs::TempFile::create(
363 if (!Temp)
364 return Temp.takeError();
365 raw_fd_ostream Out(Temp->FD, false);
367 if (Error DiscardError = Temp->discard())
371 return Temp->keep(OutputFileName);
322 Expected<sys::fs::TempFile> Temp = sys::fs::TempFile::create( writeUniversalBinary() local
/freebsd/libexec/rc/rc.d/
H A Dcleanvar40 if [ -d /var/spool/uucp/.Temp ]; then
41 find -x /var/spool/uucp/.Temp -delete
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsInstructionSelector.cpp752 Register Temp = MRI.createVirtualRegister(&Mips::GPR32RegClass); in select() local
760 Instructions.emplace_back(Mips::XOR, Temp, LHS, RHS); in select()
761 Instructions.emplace_back(Mips::SLTiu, ICMPReg, Temp, 1); in select()
764 Instructions.emplace_back(Mips::XOR, Temp, LHS, RHS); in select()
765 Instructions.emplace_back(Mips::SLTu, ICMPReg, Mips::ZERO, Temp); in select()
771 Instructions.emplace_back(Mips::SLTu, Temp, LHS, RHS); in select()
772 Instructions.emplace_back(Mips::XORi, ICMPReg, Temp, 1); in select()
778 Instructions.emplace_back(Mips::SLTu, Temp, RHS, LHS); in select()
779 Instructions.emplace_back(Mips::XORi, ICMPReg, Temp, 1); in select()
785 Instructions.emplace_back(Mips::SLT, Temp, LHS, RHS); in select()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineInstrBundleIterator.h264 MachineInstrBundleIterator Temp = *this;
266 return Temp;
269 MachineInstrBundleIterator Temp = *this;
271 return Temp;

12345