OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Work
(Results
1 - 23
of
23
) sorted by relevancy
/src/external/apache2/llvm/dist/clang/lib/Driver/
Action.cpp
215
// Add device inputs and propagate info to the device actions. Do
work
only if
225
void OffloadAction::doOnHostDependence(const OffloadActionWorkTy &
Work
) const {
230
Work
(A, HostTC, A->getOffloadingArch());
234
const OffloadActionWorkTy &
Work
) const {
252
Work
(*I, *TI, (*I)->getOffloadingArch());
255
void OffloadAction::doOnEachDependence(const OffloadActionWorkTy &
Work
) const {
256
doOnHostDependence(
Work
);
257
doOnEachDeviceDependence(
Work
);
261
const OffloadActionWorkTy &
Work
) const {
263
doOnHostDependence(
Work
);
[
all
...]
/src/external/gpl2/texinfo/dist/util/
install-info-html
141
This is all very much
Work
in Progress (WiP).
/src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonCommonGEP.cpp
440
NodeVect
Work
;
441
Work
.push_back(Root);
444
while (!
Work
.empty()) {
445
NodeVect::iterator First =
Work
.begin();
447
Work
.erase(First);
450
llvm::append_range(
Work
, CF->second);
1131
NodeVect
Work
;
1132
Work
.push_back(Node);
1134
while (!
Work
.empty()) {
1135
NodeVect::iterator First =
Work
.begin()
[
all
...]
HexagonVectorCombine.cpp
305
// VS 2019 16.x is known to
work
, except for 16.4/16.5 (MSC_VER 1924/1925)
818
// needed to make it
work
.
1104
std::vector<Value *>
Work
[2];
1107
Work
[ThisW].assign(Vecs.begin(), Vecs.end());
1108
while (
Work
[ThisW].size() > 1) {
1109
auto *Ty = cast<VectorType>(
Work
[ThisW].front()->getType());
1114
Work
[OtherW].clear();
1115
if (
Work
[ThisW].size() % 2 != 0)
1116
Work
[ThisW].push_back(UndefValue::get(Ty));
1117
for (int i = 0, e =
Work
[ThisW].size(); i < e; i += 2)
[
all
...]
HexagonExpandCondsets.cpp
10
// It is meant to
work
post-SSA, but still on virtual registers. It was
399
SetVector<MachineBasicBlock*>
Work
(Dest->pred_begin(), Dest->pred_end());
400
for (unsigned i = 0; i <
Work
.size(); ++i) {
401
MachineBasicBlock *B =
Work
[i];
407
Work
.insert(P);
/src/sys/arch/newsmips/newsmips/
locore_machdep.S
88
li k1, 0xfff00000 # NEWS5000 ROM
Work
: 0xFFF00000~0xFFFFFFFF (1Mbyte)
/src/external/apache2/llvm/dist/clang/include/clang/Driver/
Action.h
345
/// Execute the
work
specified in \a
Work
on the host dependence.
346
void doOnHostDependence(const OffloadActionWorkTy &
Work
) const;
348
/// Execute the
work
specified in \a
Work
on each device dependence.
349
void doOnEachDeviceDependence(const OffloadActionWorkTy &
Work
) const;
351
/// Execute the
work
specified in \a
Work
on each dependence.
352
void doOnEachDependence(const OffloadActionWorkTy &
Work
) const;
354
/// Execute the
work
specified in \a Work on each host or device dependence i
[
all
...]
/src/external/lgpl3/gmp/dist/mpn/x86_64/
mul_2.asm
59
C *
Work
on feed-in and wind-down code.
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGOpenMPRuntimeGPU.h
37
/// Parallel outlined function
work
for workers to execute.
38
llvm::SmallVector<llvm::Function *, 16>
Work
;
CGOpenMPRuntimeGPU.cpp
1077
Work
.clear();
1314
// warps participate in parallel
work
.
1338
// The workers enter this loop and wait for parallel
work
from the master.
1339
// When the master encounters a parallel region it sets up the
work
+ variable
1343
// execute the parallel
work
.
1348
llvm::BasicBlock *AwaitBB = CGF.createBasicBlock(".await.
work
");
1357
// Workers wait for
work
from master.
1359
// Wait for parallel
work
1393
// Process
work
items: outlined parallel functions.
1394
for (llvm::Function *W :
Work
) {
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachineLICM.cpp
612
/// safe to hoist, this instruction is called to do the dirty
work
.
1001
SmallVector<const MachineInstr*, 8>
Work
(1, MI);
1003
MI =
Work
.pop_back_val();
1026
Work
.push_back(&UseMI);
1029
} while (!
Work
.empty());
1385
/// that are safe to hoist, this instruction is called to do the dirty
work
.
/src/external/apache2/llvm/dist/clang/tools/clang-offload-bundler/
ClangOffloadBundler.cpp
914
// Create a
work
list that consist of the map triple/output file.
922
// Read all the bundles that are in the
work
list. If we find no bundles we
1037
auto doWork = [&](std::function<llvm::Error()>
Work
) {
1045
if (llvm::Error Err =
Work
()) {
/src/external/apache2/llvm/dist/clang/lib/AST/
RecordLayoutBuilder.cpp
1930
// Base types with sizes that aren't a power of two don't
work
3187
llvm::SmallPtrSet<const CXXMethodDecl *, 8>
Work
;
3193
Work
.insert(MD);
3194
while (!
Work
.empty()) {
3195
const CXXMethodDecl *MD = *
Work
.begin();
3201
Work
.insert(MethodRange.begin(), MethodRange.end());
3203
Work
.erase(MD);
/src/external/gpl3/binutils/dist/binutils/
dllwrap.c
480
fprintf (file, _(" --quiet, -q
Work
quietly\n"));
/src/external/gpl3/binutils.old/dist/binutils/
dllwrap.c
480
fprintf (file, _(" --quiet, -q
Work
quietly\n"));
/src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
Clang.cpp
121
/// Apply \a
Work
on the current tool chain \a RegularToolChain and any other
126
llvm::function_ref<void(const ToolChain &)>
Work
) {
127
// Apply
Work
on the current/regular tool chain.
128
Work
(RegularToolChain);
130
// Apply
Work
on all the offloading tool chains associated with the current
133
Work
(*C.getSingleOffloadToolChain<Action::OFK_Cuda>());
135
Work
(*C.getSingleOffloadToolChain<Action::OFK_Host>());
137
Work
(*C.getSingleOffloadToolChain<Action::OFK_HIP>());
139
Work
(*C.getSingleOffloadToolChain<Action::OFK_Host>());
144
Work
(*II->second)
[
all
...]
/src/external/lgpl3/gmp/dist/mpn/ia64/
addmul_1.asm
46
C *
Work
out final differences with mul_1.asm. That function is 300 bytes
mul_1.asm
46
C *
Work
out final differences with addmul_1.asm.
/src/external/gpl2/rcs/dist/src/
conf.sh
112
$ech >&3 "$0: attempting to
work
around Domain/OS brain damage $dots"
120
# is currently open for writing.
Work
around this brain damage by
140
*) echo >&3 "return does not
work
; using exit instead"
203
/* Comment out #include lines below that do not
work
. */
293
echo "#define has_sys_param_h $h /* Does #include <sys/param.h>
work
? */"
340
#define has_readlink $h /* Does readlink()
work
? */
383
/* Comment out the keyword definitions below if the keywords
work
. */
541
#define has_prototypes $has_prototypes /* Do function prototypes
work
? */
542
#define has_stdarg $has_stdarg /* Does <stdarg.h>
work
? */
543
$a#define has_varargs $has_varargs $z/* Does <varargs.h>
work
? *
[
all
...]
/src/external/gpl2/dtc/dist/Documentation/
dtc-paper.tex
97
only have virtual IO devices, which makes it quite simple to
work
512
\section{Future
Work
}
582
This
work
represents the view of the author and does not necessarily
/src/external/gpl3/gdb/dist/gnulib/
configure
2744
ac_msg="sources are in $srcdir, but \`cd $srcdir' does not
work
"
4646
#
work
properly (i.e., refer to `conftest.exe'), while it won't with
4957
// See if C++-style comments
work
.
5023
"_Static_assert does not
work
in struct");
5081
//
work
around unused variable warnings
5189
// See if C++-style comments
work
.
5267
//
work
around unused variable warnings
7332
#error "include_next doesn't
work
"
7342
#error "include_next doesn't
work
"
7347
#error "include_next test doesn't
work
"
[
all
...]
/src/external/gpl3/gdb.old/dist/gnulib/
configure
2744
ac_msg="sources are in $srcdir, but \`cd $srcdir' does not
work
"
4646
#
work
properly (i.e., refer to `conftest.exe'), while it won't with
4957
// See if C++-style comments
work
.
5023
"_Static_assert does not
work
in struct");
5081
//
work
around unused variable warnings
5189
// See if C++-style comments
work
.
5267
//
work
around unused variable warnings
7332
#error "include_next doesn't
work
"
7342
#error "include_next doesn't
work
"
7347
#error "include_next test doesn't
work
"
[
all
...]
/src/external/gpl2/xcvs/dist/
configure
1288
ac_msg="sources are in $srcdir, but \`cd $srcdir' does not
work
"
1397
Disabling this may not
work
. (default)
2723
# AIX 4 /usr/bin/installbsd, which doesn't
work
without a -g flag
2834
# -L didn't
work
.
3809
#
work
properly (i.e., refer to `conftest.exe'), while it won't with
6327
# Don't know why, but the following test doesn't
work
under FreeBSD 4.2
6992
# We used to try defining _XOPEN_SOURCE=500 too, to
work
around a bug
9457
/*
Work
around redefinition to rpl_putenv by other config tests. */
11257
/* Leftover bytes in the buffer, to
work
around library or OS bugs. */
13090
work
with a negative RANGE argument. *
[
all
...]
Completed in 71 milliseconds
Indexes created Sat Feb 28 05:31:39 UTC 2026