Home
last modified time | relevance | path

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

12345678

/netbsd-src/sys/external/bsd/acpica/dist/common/
H A Ddmswitch.c60 char **Temp);
86 char *Temp = NULL; in AcpiDmProcessSwitch() local
97 Temp = (char *) (&Op->Named.Name); in AcpiDmProcessSwitch()
99 if (!strncmp(Temp, "_T_", 3)) in AcpiDmProcessSwitch()
127 if (!AcpiDmIsSwitchBlock (Op, &Temp)) in AcpiDmProcessSwitch()
141 if (!strncmp(Temp, (char *) (&Current->Op->Named.Name), 4)) in AcpiDmProcessSwitch()
172 "Warning: Declaration for temp name %.4s not found\n", Temp); in AcpiDmProcessSwitch()
251 char **Temp) in AcpiDmIsSwitchBlock() argument
291 *Temp = (char *) (NamePathOp->Common.Value.Name); in AcpiDmIsSwitchBlock()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/MachO/
H A DMachOWriter.cpp226 StructType Temp; in writeSectionInLoadCommand() local
227 assert(Sec.Segname.size() <= sizeof(Temp.segname) && "too long segment name"); in writeSectionInLoadCommand()
228 assert(Sec.Sectname.size() <= sizeof(Temp.sectname) && in writeSectionInLoadCommand()
230 memset(&Temp, 0, sizeof(StructType)); in writeSectionInLoadCommand()
231 memcpy(Temp.segname, Sec.Segname.data(), Sec.Segname.size()); in writeSectionInLoadCommand()
232 memcpy(Temp.sectname, Sec.Sectname.data(), Sec.Sectname.size()); in writeSectionInLoadCommand()
233 Temp.addr = Sec.Addr; in writeSectionInLoadCommand()
234 Temp.size = Sec.Size; in writeSectionInLoadCommand()
235 Temp.offset = Sec.Offset; in writeSectionInLoadCommand()
236 Temp.align = Sec.Align; in writeSectionInLoadCommand()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DFileOutputBuffer.cpp36 OnDiskBuffer(StringRef Path, fs::TempFile Temp, fs::mapped_file_region Buf) in OnDiskBuffer() argument
37 : FileOutputBuffer(Path), Buffer(std::move(Buf)), Temp(std::move(Temp)) {} in OnDiskBuffer()
52 return Temp.keep(FinalPath); in commit()
59 consumeError(Temp.discard()); in ~OnDiskBuffer()
65 consumeError(Temp.discard()); in discard()
70 fs::TempFile Temp; member in __anon8b42c9320111::OnDiskBuffer
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/
H A DMCSchedule.cpp98 double Temp = NumUnits * 1.0 / I->Cycles; in getReciprocalThroughput() local
99 Throughput = Throughput ? std::min(Throughput.getValue(), Temp) : Temp; in getReciprocalThroughput()
142 double Temp = countPopulation(I->getUnits()) * 1.0 / I->getCycles(); in getReciprocalThroughput() local
143 Throughput = Throughput ? std::min(Throughput.getValue(), Temp) : Temp; in getReciprocalThroughput()
/netbsd-src/sys/external/bsd/acpica/dist/debugger/
H A Ddbstats.c402 UINT32 Temp; in AcpiDbDisplayStatistics() local
406 Temp = AcpiDbMatchArgument (TypeArg, AcpiDbStatTypes); in AcpiDbDisplayStatistics()
407 if (Temp == ACPI_TYPE_NOT_FOUND) in AcpiDbDisplayStatistics()
414 switch (Temp) in AcpiDbDisplayStatistics()
538 Temp = (UINT32) ACPI_PTR_DIFF ( in AcpiDbDisplayStatistics()
544 AcpiOsPrintf ("Stack Use %X (%u)\n", Temp, Temp); in AcpiDbDisplayStatistics()
H A Ddbinput.c793 UINT32 Temp; in AcpiDbCommandDispatch() local
1007 Temp = AcpiGbl_DbConsoleDebugLevel; in AcpiDbCommandDispatch()
1012 Temp, AcpiGbl_DbConsoleDebugLevel); in AcpiDbCommandDispatch()
1016 Temp = AcpiGbl_DbDebugLevel; in AcpiDbCommandDispatch()
1020 Temp, AcpiGbl_DbDebugLevel); in AcpiDbCommandDispatch()
1055 Temp = strtoul (AcpiGbl_DbArgs[2], NULL, 0); in AcpiDbCommandDispatch()
1056 AcpiDbSendNotify (AcpiGbl_DbArgs[1], Temp); in AcpiDbCommandDispatch()
/netbsd-src/external/apache2/llvm/dist/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.c_str()); 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.cpp374 auto Temp = sys::fs::TempFile::create(OutputPrefix + "-extractblocks%%%%%%%"); in extractMappedBlocksFromModule() local
375 if (!Temp) { in extractMappedBlocksFromModule()
377 errs() << "Error creating temporary file: " << toString(Temp.takeError()) in extractMappedBlocksFromModule()
382 DiscardTemp Discard{*Temp}; in extractMappedBlocksFromModule()
392 raw_fd_ostream OS(Temp->FD, /*shouldClose*/ false); in extractMappedBlocksFromModule()
409 uniqueFN += Temp->TmpName; in extractMappedBlocksFromModule()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/LTO/
H A DCaching.cpp138 Expected<sys::fs::TempFile> Temp = sys::fs::TempFile::create( in localCache() local
140 if (!Temp) { in localCache()
141 errs() << "Error: " << toString(Temp.takeError()) << "\n"; in localCache()
147 std::make_unique<raw_fd_ostream>(Temp->FD, /* ShouldClose */ false), in localCache()
148 AddBuffer, std::move(*Temp), std::string(EntryPath.str()), Task); in localCache()
/netbsd-src/external/apache2/llvm/dist/clang/utils/analyzer/
H A Dupdate_plist_test.pl4 require File::Temp;
5 use File::Temp ();
14 my $fh = File::Temp->new();
/netbsd-src/crypto/external/bsd/openssl/dist/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;
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
H A DFuzzerIOPosix.cpp103 FILE* Temp = fopen("/dev/null", "w"); in DiscardOutput() local
104 if (!Temp) in DiscardOutput()
106 dup2(fileno(Temp), Fd); in DiscardOutput()
107 fclose(Temp); in DiscardOutput()
H A DFuzzerIOWindows.cpp165 FILE* Temp = fopen("nul", "w"); in DiscardOutput() local
166 if (!Temp) in DiscardOutput()
168 _dup2(_fileno(Temp), Fd); in DiscardOutput()
169 fclose(Temp); in DiscardOutput()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ProfileData/
H A DProfileSummaryBuilder.cpp139 APInt Temp(128, TotalCount); in computeDetailedSummary() local
142 Temp *= N; in computeDetailedSummary()
143 Temp = Temp.sdiv(D); in computeDetailedSummary()
144 uint64_t DesiredCount = Temp.getZExtValue(); in computeDetailedSummary()
/netbsd-src/sys/external/bsd/acpica/dist/tools/acpiexec/
H A Daemain.c204 UINT32 Temp; in AeDoOptions() local
403 Temp = strtoul (AcpiGbl_Optarg, NULL, 0); in AeDoOptions()
404 if (!Temp || (Temp > ACPI_UINT16_MAX)) in AeDoOptions()
411 AcpiGbl_MaxLoopIterations = (UINT16) Temp; in AeDoOptions()
/netbsd-src/sys/external/bsd/acpica/dist/namespace/
H A Dnsalloc.c71 UINT32 Temp; in AcpiNsCreateNode() local
87 Temp = AcpiGbl_NsNodeList->TotalAllocated - in AcpiNsCreateNode()
89 if (Temp > AcpiGbl_NsNodeList->MaxOccupied) in AcpiNsCreateNode()
91 AcpiGbl_NsNodeList->MaxOccupied = Temp; in AcpiNsCreateNode()
/netbsd-src/sys/external/bsd/gnu-efi/dist/lib/
H A Ddpath.c208 EFI_DEVICE_PATH *Temp, *Eop; in AppendDevicePathNode() local
216 Temp = AllocatePool (Length + sizeof(EFI_DEVICE_PATH)); in AppendDevicePathNode()
217 if (!Temp) { in AppendDevicePathNode()
221 CopyMem (Temp, Src2, Length); in AppendDevicePathNode()
222 Eop = NextDevicePathNode(Temp); in AppendDevicePathNode()
229 Src1 = AppendDevicePath (Src1, Temp); in AppendDevicePathNode()
230 FreePool (Temp); in AppendDevicePathNode()
1238 EFI_DEVICE_PATH *NewDevPath,*DevicePathInst,*Temp; in LibDuplicateDevicePathInstance() local
1245 Temp = DevPath; in LibDuplicateDevicePathInstance()
1246 DevicePathInst = DevicePathInstance (&Temp, &Size); in LibDuplicateDevicePathInstance()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Object/
H A DMachOUniversalWriter.cpp315 Expected<sys::fs::TempFile> Temp = sys::fs::TempFile::create( in writeUniversalBinary() local
317 if (!Temp) in writeUniversalBinary()
318 return Temp.takeError(); in writeUniversalBinary()
319 raw_fd_ostream Out(Temp->FD, false); in writeUniversalBinary()
321 if (Error DiscardError = Temp->discard()) in writeUniversalBinary()
325 return Temp->keep(OutputFileName); in writeUniversalBinary()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
H A DMipsInstructionSelector.cpp757 Register Temp = MRI.createVirtualRegister(&Mips::GPR32RegClass); in select() local
765 Instructions.emplace_back(Mips::XOR, Temp, LHS, RHS); in select()
766 Instructions.emplace_back(Mips::SLTiu, ICMPReg, Temp, 1); in select()
769 Instructions.emplace_back(Mips::XOR, Temp, LHS, RHS); in select()
770 Instructions.emplace_back(Mips::SLTu, ICMPReg, Mips::ZERO, Temp); in select()
776 Instructions.emplace_back(Mips::SLTu, Temp, LHS, RHS); in select()
777 Instructions.emplace_back(Mips::XORi, ICMPReg, Temp, 1); in select()
783 Instructions.emplace_back(Mips::SLTu, Temp, RHS, LHS); in select()
784 Instructions.emplace_back(Mips::XORi, ICMPReg, Temp, 1); in select()
790 Instructions.emplace_back(Mips::SLT, Temp, LHS, RHS); in select()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Demangle/
H A DUtility.h51 char Temp[21]; variable
52 char *TempPtr = std::end(Temp);
62 this->operator<<(StringView(TempPtr, std::end(Temp)));
/netbsd-src/sys/external/bsd/acpica/dist/os_specific/service_layers/
H A Doswinxf.c548 int Temp; in AcpiOsGetLine() local
559 if ((Temp = getchar ()) == EOF) in AcpiOsGetLine()
564 if (!Temp || Temp == '\n') in AcpiOsGetLine()
569 Buffer [i] = (char) Temp; in AcpiOsGetLine()

12345678