OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Temp
(Results
1 - 25
of
85
) sorted by relevancy
1
2
3
4
/src/external/apache2/llvm/dist/clang/utils/analyzer/
update_plist_test.pl
4
require File::
Temp
;
5
use File::
Temp
();
13
# Create a
temp
file for the new test.
14
my $fh = File::
Temp
->new();
18
# Copy the existing
temp
file, skipping the FileCheck comments.
reducer.pl
4
use File::
Temp
qw/ tempdir /;
/src/external/apache2/llvm/dist/llvm/lib/MC/
MCSchedule.cpp
98
double
Temp
= NumUnits * 1.0 / I->Cycles;
99
Throughput = Throughput ? std::min(Throughput.getValue(),
Temp
) :
Temp
;
142
double
Temp
= countPopulation(I->getUnits()) * 1.0 / I->getCycles();
143
Throughput = Throughput ? std::min(Throughput.getValue(),
Temp
) :
Temp
;
/src/sys/external/bsd/acpica/dist/common/
dmswitch.c
60
char **
Temp
);
86
char *
Temp
= NULL;
97
Temp
= (char *) (&Op->Named.Name);
99
if (!strncmp(
Temp
, "_T_", 3))
101
/* Allocate and init a new
Temp
List node */
127
if (!AcpiDmIsSwitchBlock (Op, &
Temp
))
139
/* Note, if we get here
Temp
is not NULL */
141
if (!strncmp(
Temp
, (char *) (&Current->Op->Named.Name), 4))
172
"Warning: Declaration for
temp
name %.4s not found\n",
Temp
);
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/LTO/
Caching.cpp
138
Expected<sys::fs::TempFile>
Temp
= sys::fs::TempFile::create(
140
if (!
Temp
) {
141
errs() << "Error: " << toString(
Temp
.takeError()) << "\n";
147
std::make_unique<raw_fd_ostream>(
Temp
->FD, /* ShouldClose */ false),
148
AddBuffer, std::move(*
Temp
), std::string(EntryPath.str()), Task);
/src/sys/external/bsd/acpica/dist/debugger/
dbstats.c
402
UINT32
Temp
;
406
Temp
= AcpiDbMatchArgument (TypeArg, AcpiDbStatTypes);
407
if (
Temp
== ACPI_TYPE_NOT_FOUND)
414
switch (
Temp
)
538
Temp
= (UINT32) ACPI_PTR_DIFF (
544
AcpiOsPrintf ("Stack Use %X (%u)\n",
Temp
,
Temp
);
dbinput.c
793
UINT32
Temp
;
1007
Temp
= AcpiGbl_DbConsoleDebugLevel;
1012
Temp
, AcpiGbl_DbConsoleDebugLevel);
1016
Temp
= AcpiGbl_DbDebugLevel;
1020
Temp
, AcpiGbl_DbDebugLevel);
1055
Temp
= strtoul (AcpiGbl_DbArgs[2], NULL, 0);
1056
AcpiDbSendNotify (AcpiGbl_DbArgs[1],
Temp
);
/src/external/apache2/llvm/dist/llvm/lib/Support/
FileOutputBuffer.cpp
36
OnDiskBuffer(StringRef Path, fs::TempFile
Temp
, fs::mapped_file_region Buf)
37
: FileOutputBuffer(Path), Buffer(std::move(Buf)),
Temp
(std::move(
Temp
)) {}
52
return
Temp
.keep(FinalPath);
56
// Close the mapping before deleting the
temp
file, so that the removal
59
consumeError(
Temp
.discard());
63
// Delete the
temp
file if it still was open, but keeping the mapping
65
consumeError(
Temp
.discard());
70
fs::TempFile
Temp
;
/src/external/apache2/llvm/dist/llvm/tools/bugpoint/
OptimizerDriver.cpp
147
Expected<sys::fs::TempFile>
Temp
=
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.c_str());
ExecutionDriver.cpp
260
auto
Temp
=
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);
ExtractFunction.cpp
374
auto
Temp
= sys::fs::TempFile::create(OutputPrefix + "-extractblocks%%%%%%%");
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;
/src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/MachO/
MachOWriter.cpp
226
StructType
Temp
;
227
assert(Sec.Segname.size() <= sizeof(
Temp
.segname) && "too long segment name");
228
assert(Sec.Sectname.size() <= sizeof(
Temp
.sectname) &&
230
memset(&
Temp
, 0, sizeof(StructType));
231
memcpy(
Temp
.segname, Sec.Segname.data(), Sec.Segname.size());
232
memcpy(
Temp
.sectname, Sec.Sectname.data(), Sec.Sectname.size());
233
Temp
.addr = Sec.Addr;
234
Temp
.size = Sec.Size;
235
Temp
.offset = Sec.Offset;
236
Temp
.align = Sec.Align
[
all
...]
/src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerIOPosix.cpp
103
FILE*
Temp
= fopen("/dev/null", "w");
104
if (!
Temp
)
106
dup2(fileno(
Temp
), Fd);
107
fclose(
Temp
);
FuzzerIOWindows.cpp
165
FILE*
Temp
= fopen("nul", "w");
166
if (!
Temp
)
168
_dup2(_fileno(
Temp
), Fd);
169
fclose(
Temp
);
/src/sys/external/bsd/acpica/dist/tools/acpiexec/
aemain.c
204
UINT32
Temp
;
403
Temp
= strtoul (AcpiGbl_Optarg, NULL, 0);
404
if (!
Temp
|| (
Temp
> ACPI_UINT16_MAX))
411
AcpiGbl_MaxLoopIterations = (UINT16)
Temp
;
aetests.c
88
UINT32
Temp
;
345
Status = AcpiGetTimerResolution (&
Temp
);
348
Status = AcpiGetTimer (&
Temp
);
351
Status = AcpiGetTimerDuration (0x1000, 0x2000, &
Temp
);
/src/external/apache2/llvm/dist/llvm/lib/ProfileData/
ProfileSummaryBuilder.cpp
139
APInt
Temp
(128, TotalCount);
142
Temp
*= N;
143
Temp
=
Temp
.sdiv(D);
144
uint64_t DesiredCount =
Temp
.getZExtValue();
/src/external/apache2/llvm/dist/llvm/include/llvm/Demangle/
Utility.h
51
char
Temp
[21];
52
char *TempPtr = std::end(
Temp
);
62
this->operator<<(StringView(TempPtr, std::end(
Temp
)));
/src/sys/external/bsd/acpica/dist/namespace/
nsalloc.c
71
UINT32
Temp
;
87
Temp
= AcpiGbl_NsNodeList->TotalAllocated -
89
if (
Temp
> AcpiGbl_NsNodeList->MaxOccupied)
91
AcpiGbl_NsNodeList->MaxOccupied =
Temp
;
/src/external/apache2/llvm/dist/llvm/include/llvm/IR/
AutoUpgrade.h
75
Instruction *&
Temp
);
/src/external/apache2/llvm/dist/llvm/lib/Object/
MachOUniversalWriter.cpp
315
Expected<sys::fs::TempFile>
Temp
= sys::fs::TempFile::create(
316
OutputFileName + ".
temp
-universal-%%%%%%", Mode);
317
if (!
Temp
)
318
return
Temp
.takeError();
319
raw_fd_ostream Out(
Temp
->FD, false);
321
if (Error DiscardError =
Temp
->discard())
325
return
Temp
->keep(OutputFileName);
/src/external/apache2/llvm/dist/clang/include/clang/Sema/
SemaConcept.h
59
// C++ [
temp
.constr.order] p2
63
// C++ [
temp
.constr.atomic] p2
79
/// \brief A normalized constraint, as defined in C++ [
temp
.constr.normal], is
118
NormalizedConstraint
Temp
(std::move(Other));
119
std::swap(Constraint,
Temp
.Constraint);
/src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
MachineInstrBundleIterator.h
264
MachineInstrBundleIterator
Temp
= *this;
266
return
Temp
;
269
MachineInstrBundleIterator
Temp
= *this;
271
return
Temp
;
/src/sys/external/bsd/gnu-efi/dist/lib/
dpath.c
208
EFI_DEVICE_PATH *
Temp
, *Eop;
216
Temp
= AllocatePool (Length + sizeof(EFI_DEVICE_PATH));
217
if (!
Temp
) {
221
CopyMem (
Temp
, Src2, Length);
222
Eop = NextDevicePathNode(
Temp
);
229
Src1 = AppendDevicePath (Src1,
Temp
);
230
FreePool (
Temp
);
1238
EFI_DEVICE_PATH *NewDevPath,*DevicePathInst,*
Temp
;
1245
Temp
= DevPath;
1246
DevicePathInst = DevicePathInstance (&
Temp
, &Size)
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
UnifyLoopExits.cpp
148
SmallVector<BasicBlock *, 8>
Temp
;
149
L->getExitingBlocks(
Temp
);
150
for (auto BB :
Temp
) {
Completed in 49 milliseconds
1
2
3
4
Indexes created Tue Feb 24 08:35:24 UTC 2026