OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Found
(Results
1 - 25
of
149
) sorted by relevancy
1
2
3
4
5
6
/src/sys/external/bsd/acpica/dist/tools/acpihelp/
ahaml.c
77
BOOLEAN
Found
= FALSE;
94
Found
= TRUE;
106
Found
= TRUE;
110
if (!
Found
&& Name)
255
BOOLEAN
Found
= FALSE;
265
Found
= TRUE;
272
Found
= TRUE;
284
Found
= TRUE;
288
if (!
Found
)
ahasl.c
81
BOOLEAN
Found
= FALSE;
91
Found
= TRUE;
103
Found
= TRUE;
107
if (!
Found
)
312
/*
Found
a keyword, display keyword information */
ahdecode.c
192
BOOLEAN
Found
;
227
Found
= AhDisplayPredefinedName (Name, Length);
228
if (!
Found
)
343
BOOLEAN
Found
= FALSE;
354
Found
= TRUE;
375
Found
= TRUE;
387
return (
Found
);
484
BOOLEAN
Found
= FALSE;
524
Found
= TRUE;
529
if (!
Found
)
[
all
...]
/src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
RegisterAliasing.cpp
67
auto &
Found
= Registers[PhysReg];
68
if (!
Found
)
69
Found
.reset(new RegisterAliasingTracker(RegInfo, PhysReg));
70
return *
Found
;
75
auto &
Found
= RegisterClasses[RegClassIndex];
77
if (!
Found
)
78
Found
.reset(new RegisterAliasingTracker(RegInfo, ReservedReg, RegClass));
79
return *
Found
;
Target.cpp
135
auto
Found
= llvm::lower_bound(CpuPfmCounters, CpuName);
136
if (
Found
== CpuPfmCounters.end() || StringRef(
Found
->CpuName) != CpuName) {
139
Found
= CpuPfmCounters.begin(); // The target specifies a default.
144
assert(
Found
->PCI && "Missing counters");
145
return *
Found
->PCI;
/src/usr.bin/make/unit-tests/
deptgt-phony.exp
11
Found
'all' as '(not
found
)'
32
Found
'all' as '(not
found
)'
41
Found
'.END' as '(not
found
)'
dir.exp
49
Found
'.END' as '(not
found
)'
/src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
NativeFunctionSymbol.cpp
62
bool
Found
= false;
71
Found
= true;
75
if (
Found
&& OffsetInFunc < CodeOffset)
77
Found
= false;
83
Found
= false;
112
bool
Found
= false;
129
Found
= true;
138
if (!
Found
)
/src/external/apache2/llvm/dist/llvm/lib/Testing/Support/
SupportHelpers.cpp
37
bool
Found
= false;
39
std::tie(
Found
, InputFilePath) = findSrcDirMap(Argv0);
41
EXPECT_TRUE(
Found
) << "Unit test source directory file does not exist.";
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaCXXScopeSpec.cpp
368
LookupResult
Found
(*this, NNS->getAsIdentifier(), SourceLocation(),
370
LookupName(
Found
, S);
371
assert(!
Found
.isAmbiguous() && "Cannot handle ambiguities here yet");
373
if (!
Found
.isSingleResult())
376
NamedDecl *Result =
Found
.getFoundDecl();
386
LookupResult
Found
(*this, IdInfo.Identifier, IdInfo.IdentifierLoc,
403
Found
.setContextRange(SS.getRange());
417
LookupQualifiedName(
Found
, LookupCtx);
421
LookupName(
Found
, S);
423
Found
.suppressDiagnostics()
[
all
...]
SemaAccess.cpp
1007
// Short-circuit if we
found
a public path.
1288
/// the declaration
found
is unaccessible (private) and that declaration
1546
DeclAccessPair
Found
) {
1549
Found
.getAccess() == AS_public)
1553
Found
, QualType());
1562
DeclAccessPair
Found
) {
1564
Found
.getAccess() == AS_public)
1572
Found
, BaseType);
1581
DeclAccessPair
Found
,
1586
if (
Found
.getAccess() == AS_public || !getLangOpts().AccessControl
[
all
...]
/src/sys/external/bsd/acpica/dist/utilities/
utpredef.c
107
* RETURN: Pointer to entry in predefined table. NULL indicates not
found
.
140
return (NULL); /* Not
found
*/
241
*
found
.
277
return (NULL); /* Not
found
*/
429
UINT32
Found
;
434
Found
= 0;
442
Found
++;
448
return (
Found
);
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/
ProcessImplicitDefs.cpp
99
bool
Found
= false;
109
Found
= true;
113
if (
Found
)
117
// If we
found
the using MI, we can erase the IMPLICIT_DEF.
118
if (
Found
) {
124
// Using instr wasn't
found
, it could be in another block.
/src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/IPO/
OpenMPOpt.h
26
OpenMPInModule &operator=(bool
Found
) {
27
if (
Found
)
28
Value = OpenMPInModule::OpenMP::
FOUND
;
48
enum class OpenMP {
FOUND
, NOT_FOUND, UNKNOWN } Value = OpenMP::UNKNOWN;
/src/external/apache2/llvm/dist/clang/tools/diagtool/
TreeView.cpp
99
const GroupRecord *
Found
= llvm::lower_bound(AllGroups, RootGroup);
100
if (
Found
== AllGroups.end() ||
Found
->getName() != RootGroup) {
105
printGroup(*
Found
);
/src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderInternals.h
57
llvm::DenseSet<DeclID>
Found
;
63
if (
Found
.empty() && !Data.empty()) {
65
for (auto I :
Found
)
72
// Switch to tracking
found
IDs in the set.
73
Found
.insert(Data.begin(), Data.end());
76
if (
Found
.insert(ID).second)
/src/external/apache2/llvm/dist/clang/lib/Basic/Targets/
PPC.cpp
264
bool
Found
= FindVSXSubfeature("+power8-vector", "-mpower8-vector");
265
Found
|= FindVSXSubfeature("+direct-move", "-mdirect-move");
266
Found
|= FindVSXSubfeature("+float128", "-mfloat128");
267
Found
|= FindVSXSubfeature("+power9-vector", "-mpower9-vector");
268
Found
|= FindVSXSubfeature("+paired-vector-memops", "-mpaired-vector-memops");
269
Found
|= FindVSXSubfeature("+mma", "-mmma");
270
Found
|= FindVSXSubfeature("+power10-vector", "-mpower10-vector");
272
// Return false if any vsx subfeatures was
found
.
273
return !
Found
;
/src/external/apache2/llvm/dist/llvm/lib/IR/
DebugLoc.cpp
81
if (auto *
Found
= Cache[IA]) {
82
Last = cast<DILocation>(
Found
);
/src/external/gpl2/texinfo/dist/util/
fixfonts
43
echo "
Found
lcircle10.tfm."
/src/external/apache2/llvm/dist/clang/include/clang/Sema/
Lookup.h
42
/// single name lookup, which can return no result (nothing
found
),
49
/// No entity
found
met the criteria.
52
/// No entity
found
met the criteria within the current
57
/// Name lookup
found
a single declaration that met the
59
Found
,
61
/// Name lookup
found
a set of overloaded functions that
65
/// Name lookup
found
an unresolvable value declaration
78
/// entities that meet the lookup criteria were
found
in
92
/// nonstatic entities that meet the lookup criteria were
found
100
/// return d.x; // error: 'x' is
found
in two A subobjects (of B and C
[
all
...]
TemplateDeduction.h
302
void set(DeclAccessPair
Found
, Decl *Spec, DeductionFailureInfo Info) {
303
FoundDecl =
Found
;
/src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
MustExecute.h
355
/// if none was
found
.
468
/// The context is expanded until \p I was
found
or no more expansion is
471
/// \returns True, iff \p I was
found
.
479
/// The context is expanded until \p I was
found
or no more expansion is
482
/// \returns True, iff \p I was
found
.
484
bool
Found
= EIt.count(I);
485
while (!
Found
&& EIt != EEnd)
486
Found
= (++EIt).getCurrentInst() == I;
487
return
Found
;
/src/external/apache2/llvm/dist/llvm/lib/Analysis/
AssumptionCache.cpp
150
bool
Found
= false;
154
Found
= true;
158
if (HasNonnull &&
Found
)
161
assert(
Found
&& "already unregistered or incorrect cache state");
219
// be
found
when we scan later.
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
VPlanValue.h
132
bool
Found
= false;
135
erase_if(Users, [&User, &
Found
](VPUser *Other) {
136
if (
Found
)
139
Found
= true;
/src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCSubtargetInfo.h
228
auto
Found
= llvm::lower_bound(ProcDesc, CPU);
229
return
Found
!= ProcDesc.end() && StringRef(
Found
->Key) == CPU;
Completed in 37 milliseconds
1
2
3
4
5
6
Indexes created Fri Apr 17 00:22:50 UTC 2026