| /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)
|
| 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)
|
| 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) {
|
| XRayArgs.cpp | 121 auto Valid = llvm::StringSwitch<bool>(P) 126 if (!Valid) {
|
| 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...] |
| 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...] |
| 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...] |
| 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...] |
| 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
|
| 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
|
| 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
|
| /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...] |
| 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...] |
| 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 };
|
| rijndael.h | 100 enum State { Valid , Invalid };
|
| 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)
|
| 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.
|