HomeSort by: relevance | last modified time | path
    Searched defs:Valid (Results 1 - 25 of 30) sorted by relevancy

1 2

  /src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_recursion_guard.h 36 const bool Valid;
40 : Running(R), Valid(!atomic_exchange(&R, 1, memory_order_acq_rel)) {}
47 explicit inline operator bool() const { return Valid; }
50 if (Valid)
  /src/external/apache2/llvm/dist/clang/lib/Driver/
XRayArgs.cpp 121 auto Valid = llvm::StringSwitch<bool>(P)
126 if (!Valid) {
  /src/sys/external/bsd/acpica/dist/namespace/
nsxfname.c 118 * Valid cases are:
302 UINT16 Valid = 0;
353 * not be present for this device. The Info->Valid bitfield is used
363 Valid |= ACPI_VALID_HID;
372 Valid |= ACPI_VALID_UID;
383 Valid |= ACPI_VALID_CID;
392 Valid |= ACPI_VALID_CLS;
417 * not be present for this device. The Info->Valid bitfield is used
427 Valid |= ACPI_VALID_ADR;
437 Valid |= ACPI_VALID_SXWS
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
Iterator.h 32 // Whether iterator is valid
33 const bool Valid;
39 : Cont(C), Valid(V), Offset(Of) {}
43 bool isValid() const { return Valid; }
55 return IteratorPosition(Cont, Valid, NewOf);
59 return IteratorPosition(NewCont, Valid, Offset);
63 return Cont == X.Cont && Valid == X.Valid && Offset == X.Offset;
67 return Cont != X.Cont || Valid != X.Valid || Offset != X.Offset
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
InstructionCost.h 30 /// These states can currently be used to indicate whether a cost is valid or
36 enum CostState { Valid, Invalid };
40 CostState State = Valid;
48 // A default constructed InstructionCost is a valid zero cost
52 InstructionCost(CostType Val) : Value(Val), State(Valid) {}
60 bool isValid() const { return State == Valid; }
61 void setValid() { State = Valid; }
151 /// ordering where valid costs are always considered to be less than invalid
153 /// the states are valid and users can test for validity of the cost
CommandLine.h 434 // want. This is only valid on "opt" arguments, not on "list" arguments.
564 bool Valid = false;
574 bool hasValue() const { return Valid; }
577 assert(Valid && "invalid option value");
582 Valid = true;
586 bool compare(const DataType &V) const { return Valid && (Value != V); }
  /src/external/apache2/llvm/dist/llvm/lib/Support/
Triple.cpp 844 // component movement when a component parses as (eg) both a valid arch and a
845 // valid os.
874 // positions by seeing if they parse as a valid architecture, and if so moving
885 // Does this component parse as valid for the target position?
886 bool Valid = false;
892 Valid = Arch != UnknownArch;
896 Valid = Vendor != UnknownVendor;
902 Valid = OS != UnknownOS || IsCygwin || IsMinGW32;
906 Valid = Environment != UnknownEnvironment;
907 if (!Valid) {
    [all...]
  /src/external/bsd/elftosb/dist/common/
rijndael.h 100 enum State { Valid , Invalid };
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
RuntimeDyldMachOAArch64.h 308 bool Valid =
310 if (!Valid)
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonNewValueJump.cpp 256 bool Valid = false;
263 Valid = (isUInt<5>(v) || v == -1);
267 Valid = isUInt<5>(v);
271 Valid = (v == 0);
275 if (!Valid)
  /src/external/apache2/llvm/dist/llvm/tools/llvm-cfi-verify/lib/
FileAnalysis.h 82 bool Valid; // Is this a valid instruction? If false, Instr::Instruction is
173 // allow analysis of raw binary, without requiring a fully valid ELF file.
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachineRegisterInfo.cpp 219 bool Valid = true;
227 Valid = false;
236 Valid = false;
242 Valid = false;
248 Valid = false;
251 assert(Valid && "Invalid use list");
TargetInstrInfo.cpp 539 bool Valid =
541 if (!Valid)
1255 /// Both DefMI and UseMI must be valid. By default, call directly to the
MachinePipeliner.cpp 502 // Can't schedule a loop without a valid MII.
1017 // No valid Schedule Class Desc for schedClass, should be
1060 // No valid Schedule Class Desc for schedClass, should be
2029 // Keep increasing II until a valid schedule is found.
2098 // If a schedule is found, check if it is a valid schedule too.
2716 // Check if the generated schedule is valid. This function checks if
2761 bool Valid = true;
2762 (void)Valid;
2767 // valid.
2815 Valid = false
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonShuffler.h 89 // Flag whether the HVX resources are valid.
90 bool Valid;
101 bool isValid() const { return Valid; }
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
MergeFunctions.cpp 336 bool Valid = true;
357 Valid = false;
392 Valid = false;
398 dbgs() << "MERGEFUNC-SANITY: " << (Valid ? "Passed." : "Failed.") << "\n";
399 return Valid;
SampleProfile.cpp 275 // longer valid at this point.
743 bool Valid =
746 // No valid value profile so no promoted targets have been recorded
748 if (!Valid)
783 bool Valid =
794 if (Valid) {
810 if (Valid) {
  /src/sys/external/bsd/acpica/dist/include/
acbuffer.h 89 UINT8 Valid;
  /src/external/apache2/llvm/dist/clang/utils/TableGen/
RISCVVEmitter.cpp 44 // This class is compact representation of a valid and invalid RVVType.
68 bool Valid;
100 bool isValid() const { return Valid; }
115 // Verify RVV vector type and set Valid.
307 Valid = verifyType();
308 if (Valid) {
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LoopFuse.cpp 137 /// represents a valid candidate. It caches several parts of a loop that are
143 /// no longer a valid candidate for fusion. Similarly, the isValid() method can
144 /// be used to ensure that the FusionCandidate is still valid for fusion.
166 /// Are all of the members of this fusion candidate still valid
167 bool Valid;
191 Latch(L->getLoopLatch()), L(L), Valid(true),
234 /// Check if all members of the class are valid.
237 !L->isInvalid() && Valid;
242 assert(isValid() && "Candidate is not valid!!");
281 /// This method is only valid for guarded loops
    [all...]
LoopRerollPass.cpp 216 bool valid() const { function in struct:__anon5449::LoopReroll::SimpleLoopReduction
217 return Valid;
221 assert(Valid && "Using invalid reduction");
226 assert(Valid && "Using invalid reduction");
231 assert(Valid && "Using invalid reduction");
239 assert(Valid && "Using invalid reduction");
247 assert(Valid && "Using invalid reduction");
252 assert(Valid && "Using invalid reduction");
260 bool Valid = false;
402 /// Stage 2: Validate if the found roots are valid
    [all...]
  /src/sys/external/bsd/acpica/dist/compiler/
asltypes.h 339 BOOLEAN Valid;
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseExpr.cpp 531 // be a throw-expression, which is not a valid cast-expression.
1044 // annot_cxxscope if it would be valid. This handles things like x::y, etc.
1737 // we have a valid lambda expression, we have an invalid lambda
1884 // if the contents of the square brackets are obviously not a valid
3467 // fill ParamInfo with an initial valid range, so do it manually.
3557 bool Valid = true;
3562 Valid = false;
3577 Valid = false;
3588 return !Valid;
ParsePragma.cpp 1122 // Return a valid hint if pragma unroll or nounroll were specified
1178 bool Valid = StateInfo &&
1185 if (!Valid) {
2152 assert(RParenLoc.isValid() && "Valid '#pragma unused' must have ')'");
2153 assert(!Identifiers.empty() && "Valid '#pragma unused' must have arguments");
  /src/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/
InstrProf.h 626 bool Valid;
630 Valid(false) {}

Completed in 69 milliseconds

1 2