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

123

/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerUtilLinux.cpp32 FILE* Temp = fopen("/dev/null", "w"); local
33 if (!Temp)
35 dup2(fileno(Temp), Fd);
36 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.cpp195 FILE* Temp = fopen("nul", "w"); local
196 if (!Temp)
198 _dup2(_fileno(Temp), Fd);
199 fclose(Temp);
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/
H A DBuffer.cpp24 Expected<sys::fs::TempFile> Temp = local
26 return Temp ? Temp->keep(FileName) : Temp.takeError();
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ProfileData/
H A DProfileSummaryBuilder.cpp74 APInt Temp(128, TotalCount);
77 Temp *= N;
78 Temp = Temp.sdiv(D);
79 uint64_t DesiredCount = Temp.getZExtValue();
/freebsd-12-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCSchedule.cpp98 double Temp = NumUnits * 1.0 / I->Cycles; local
99 Throughput = Throughput ? std::min(Throughput.getValue(), Temp) : Temp;
142 double Temp = countPopulation(I->getUnits()) * 1.0 / I->getCycles(); local
143 Throughput = Throughput ? std::min(Throughput.getValue(), Temp) : Temp;
/freebsd-12-stable/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...]
H A Ddmextern.c654 char *Temp; local
688 Temp = AcpiDmNormalizeParentPrefix (Op, ExternalPath);
693 ExternalPath = Temp;
694 if (!Temp)
1496 char *Temp; local
1529 Temp = ExternalList->InternalPath;
1533 Temp++;
/freebsd-12-stable/libexec/rc/rc.d/
H A Dcleanvar41 if [ -d /var/spool/uucp/.Temp ]; then
42 find /var/spool/uucp/.Temp -delete
/freebsd-12-stable/contrib/llvm-project/llvm/lib/LTO/
H A DCaching.cpp137 Expected<sys::fs::TempFile> Temp = sys::fs::TempFile::create( local
139 if (!Temp) {
140 errs() << "Error: " << toString(Temp.takeError()) << "\n";
146 std::make_unique<raw_fd_ostream>(Temp->FD, /* ShouldClose */ false),
147 AddBuffer, std::move(*Temp), EntryPath.str(), Task);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
H A DFileOutputBuffer.cpp36 OnDiskBuffer(StringRef Path, fs::TempFile Temp, argument
38 : 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:__anon4852::OnDiskBuffer
/freebsd-12-stable/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";
224 Args.push_back(Temp->TmpName.c_str());
H A DExecutionDriver.cpp272 auto Temp = local
274 if (!Temp) {
276 << ": Error making unique filename: " << toString(Temp.takeError())
280 DiscardTemp Discard{*Temp};
281 if (writeProgramToFile(Temp->FD, M)) {
282 errs() << ToolName << ": Error emitting bitcode to file '" << Temp->TmpName
288 return Interpreter->compileProgram(Temp->TmpName, Timeout, MemoryLimit);
H A DExtractFunction.cpp374 auto Temp = sys::fs::TempFile::create(OutputPrefix + "-extractblocks%%%%%%%"); local
375 if (!Temp) {
377 errs() << "Error creating temporary file: " << toString(Temp.takeError())
382 DiscardTemp Discard{*Temp};
392 raw_fd_ostream OS(Temp->FD, /*shouldClose*/ false);
409 uniqueFN += Temp->TmpName;
/freebsd-12-stable/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.c895 UINT32 Temp; local
1102 Temp = AcpiGbl_DbConsoleDebugLevel;
1107 Temp, AcpiGbl_DbConsoleDebugLevel);
1111 Temp = AcpiGbl_DbDebugLevel;
1115 Temp, AcpiGbl_DbDebugLevel);
1150 Temp = strtoul (AcpiGbl_DbArgs[2], NULL, 0);
1151 AcpiDbSendNotify (AcpiGbl_DbArgs[1], Temp);
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/
H A DMachOWriter.cpp208 StructType Temp; local
209 assert(Sec.Segname.size() <= sizeof(Temp.segname) && "too long segment name");
210 assert(Sec.Sectname.size() <= sizeof(Temp.sectname) &&
212 memset(&Temp, 0, sizeof(StructType));
213 memcpy(Temp.segname, Sec.Segname.data(), Sec.Segname.size());
214 memcpy(Temp.sectname, Sec.Sectname.data(), Sec.Sectname.size());
215 Temp.addr = Sec.Addr;
216 Temp.size = Sec.Size;
217 Temp.offset = Sec.Offset;
218 Temp
[all...]
/freebsd-12-stable/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-12-stable/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DUtility.h51 char Temp[21]; local
52 char *TempPtr = std::end(Temp);
62 this->operator<<(StringView(TempPtr, std::end(Temp)));
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DAutoUpgrade.h72 Instruction *&Temp);
/freebsd-12-stable/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-12-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsInstructionSelector.cpp658 Register Temp = MRI.createVirtualRegister(&Mips::GPR32RegClass); local
666 Instructions.emplace_back(Mips::XOR, Temp, LHS, RHS);
667 Instructions.emplace_back(Mips::SLTiu, ICMPReg, Temp, 1);
670 Instructions.emplace_back(Mips::XOR, Temp, LHS, RHS);
671 Instructions.emplace_back(Mips::SLTu, ICMPReg, Mips::ZERO, Temp);
677 Instructions.emplace_back(Mips::SLTu, Temp, LHS, RHS);
678 Instructions.emplace_back(Mips::XORi, ICMPReg, Temp, 1);
684 Instructions.emplace_back(Mips::SLTu, Temp, RHS, LHS);
685 Instructions.emplace_back(Mips::XORi, ICMPReg, Temp, 1);
691 Instructions.emplace_back(Mips::SLT, Temp, LH
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DSemaConcept.h118 NormalizedConstraint Temp(std::move(Other));
119 std::swap(Constraint, Temp.Constraint);
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineInstrBundleIterator.h264 MachineInstrBundleIterator Temp = *this; local
266 return Temp;
269 MachineInstrBundleIterator Temp = *this; local
271 return Temp;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldMachOARM.h71 uint32_t Temp = readBytesUnaligned(LocalAddress, 4); local
72 Temp &= 0x00ffffff; // Mask out the opcode.
74 return SignExtend32<26>(Temp << 2);
254 uint32_t Temp = readBytesUnaligned(LocalAddress, 4); variable
255 writeBytesUnaligned((Temp & ~0xffffff) | FinalValue, LocalAddress, 4);

Completed in 312 milliseconds

123