Home
last modified time | relevance | path

Searched refs:Valid (Results 1 – 25 of 93) sorted by relevance

1234

/freebsd-12.1/contrib/compiler-rt/lib/xray/
H A Dxray_recursion_guard.h36 const bool Valid; variable
40 : Running(R), Valid(!atomic_exchange(&R, 1, memory_order_acq_rel)) {} in RecursionGuard()
47 explicit inline operator bool() const { return Valid; }
50 if (Valid) in ~RecursionGuard()
/freebsd-12.1/sys/contrib/dev/acpica/components/namespace/
H A Dnsxfname.c409 UINT16 Valid = 0; in AcpiGetObjectInfo() local
470 Valid |= ACPI_VALID_HID; in AcpiGetObjectInfo()
479 Valid |= ACPI_VALID_UID; in AcpiGetObjectInfo()
490 Valid |= ACPI_VALID_CID; in AcpiGetObjectInfo()
499 Valid |= ACPI_VALID_CLS; in AcpiGetObjectInfo()
534 Valid |= ACPI_VALID_ADR; in AcpiGetObjectInfo()
544 Valid |= ACPI_VALID_SXWS; in AcpiGetObjectInfo()
554 Valid |= ACPI_VALID_SXDS; in AcpiGetObjectInfo()
624 Info->Valid = Valid; in AcpiGetObjectInfo()
/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DMachineRegisterInfo.cpp220 bool Valid = true; in verifyUseList() local
228 Valid = false; in verifyUseList()
237 Valid = false; in verifyUseList()
243 Valid = false; in verifyUseList()
249 Valid = false; in verifyUseList()
252 assert(Valid && "Invalid use list"); in verifyUseList()
/freebsd-12.1/contrib/llvm/lib/Target/Hexagon/
H A DHexagonNewValueJump.cpp256 bool Valid = false; in canCompareBeNewValueJump() local
263 Valid = (isUInt<5>(v) || v == -1); in canCompareBeNewValueJump()
267 Valid = isUInt<5>(v); in canCompareBeNewValueJump()
271 Valid = (v == 0); in canCompareBeNewValueJump()
275 if (!Valid) in canCompareBeNewValueJump()
/freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/
H A DLoopRerollPass.cpp207 return Valid; in valid()
211 assert(Valid && "Using invalid reduction"); in getPHI()
216 assert(Valid && "Using invalid reduction"); in getReducedValue()
221 assert(Valid && "Using invalid reduction"); in get()
229 assert(Valid && "Using invalid reduction"); in size()
237 assert(Valid && "Using invalid reduction"); in begin()
242 assert(Valid && "Using invalid reduction"); in begin()
250 bool Valid = false; member
611 assert(!Valid && "Cannot add to an already-valid chain"); in add()
648 Valid = true; in add()
/freebsd-12.1/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonShuffler.h87 bool Valid; variable
99 bool isValid() const { return Valid; } in isValid()
/freebsd-12.1/sys/contrib/dev/acpica/components/debugger/
H A Ddbnames.c1124 if (Info->Valid & ACPI_VALID_ADR) in AcpiDbBusWalk()
1134 if (Info->Valid & ACPI_VALID_HID) in AcpiDbBusWalk()
1143 if (Info->Valid & ACPI_VALID_UID) in AcpiDbBusWalk()
1152 if (Info->Valid & ACPI_VALID_CID) in AcpiDbBusWalk()
H A Ddbdisply.c835 if (Info->Valid & ACPI_VALID_HID) in AcpiDbDisplayObjectType()
840 if (Info->Valid & ACPI_VALID_UID) in AcpiDbDisplayObjectType()
845 if (Info->Valid & ACPI_VALID_CID) in AcpiDbDisplayObjectType()
/freebsd-12.1/contrib/llvm/lib/Transforms/IPO/
H A DMergeFunctions.cpp317 bool Valid = true; in doSanityCheck() local
338 Valid = false; in doSanityCheck()
373 Valid = false; in doSanityCheck()
379 dbgs() << "MERGEFUNC-SANITY: " << (Valid ? "Passed." : "Failed.") << "\n"; in doSanityCheck()
380 return Valid; in doSanityCheck()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Driver/
H A DXRayArgs.cpp109 auto Valid = llvm::StringSwitch<bool>(P) in XRayArgs() local
113 if (!Valid) { in XRayArgs()
/freebsd-12.1/contrib/llvm/lib/Support/
H A DTriple.cpp825 bool Valid = false; in normalize() local
831 Valid = Arch != UnknownArch; in normalize()
835 Valid = Vendor != UnknownVendor; in normalize()
841 Valid = OS != UnknownOS || IsCygwin || IsMinGW32; in normalize()
845 Valid = Environment != UnknownEnvironment; in normalize()
846 if (!Valid) { in normalize()
848 Valid = ObjectFormat != UnknownObjectFormat; in normalize()
852 if (!Valid) in normalize()
H A DYAMLParser.cpp1897 StringRef Valid(UnquotedValue.begin(), i); in getValue() local
1898 Storage.insert(Storage.end(), Valid.begin(), Valid.end()); in getValue()
1920 StringRef Valid(UnquotedValue.begin(), i); in unescapeDoubleQuoted() local
1921 Storage.insert(Storage.end(), Valid.begin(), Valid.end()); in unescapeDoubleQuoted()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DClangASTImporter.h157 return origin.Valid(); in ResolveDeclOrigin()
227 bool Valid() { return (ctx != nullptr || decl != nullptr); } in Valid() function
/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DClangASTImporter.cpp551 if (!decl_origin.Valid()) in CompleteTagDecl()
594 if (!decl_origin.Valid()) in CompleteObjCInterfaceDecl()
621 if (!decl_origin.Valid()) in CompleteAndFetchChildren()
644 if (!decl_origin.Valid()) in CompleteAndFetchChildren()
698 if (decl_origin.Valid()) in GetDeclMetadata()
/freebsd-12.1/contrib/libucl/tests/basic/
H A D4.in43 # Valid ending + empty string
H A D4.res50 # Valid ending + empty string
/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DIteratorChecker.cpp93 const bool Valid; member
99 : Cont(C), Valid(V), Offset(Of) {} in IteratorPosition()
103 bool isValid() const { return Valid; } in isValid()
115 return IteratorPosition(Cont, Valid, NewOf); in setTo()
119 return IteratorPosition(NewCont, Valid, Offset); in reAssign()
123 return Cont == X.Cont && Valid == X.Valid && Offset == X.Offset; in operator ==()
127 return Cont != X.Cont || Valid != X.Valid || Offset != X.Offset; in operator !=()
132 ID.AddInteger(Valid); in Profile()
/freebsd-12.1/sys/sys/
H A Daac_ioctl.h191 u_int32_t Valid; member
/freebsd-12.1/sys/gnu/dts/arm/
H A Dversatile-pb.dts13 * Valid interrupt lines mask according to
/freebsd-12.1/contrib/binutils/gas/doc/
H A Dc-arc.texi220 Opcode to be used. (Bits 27:31 in the encoding). Valid values
224 Subopcode to be used. Valid values are from 0x09-0x3f. However the
228 Determines the kinds of suffixes to be allowed. Valid values are
/freebsd-12.1/sys/contrib/dev/acpica/compiler/
H A Dasltypes.h405 BOOLEAN Valid; member
/freebsd-12.1/contrib/llvm/include/llvm/Support/
H A DCommandLine.h508 bool Valid = false; variable
518 bool hasValue() const { return Valid; } in hasValue()
521 assert(Valid && "invalid option value"); in getValue()
526 Valid = true; in setValue()
530 bool compare(const DataType &V) const { return Valid && (Value != V); } in compare()
/freebsd-12.1/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldMachOAArch64.h309 bool Valid = in processRelocationRef() local
311 if (!Valid) in processRelocationRef()
/freebsd-12.1/crypto/openssl/doc/man3/
H A DOPENSSL_init_ssl.pod38 initialised. Valid options for libcrypto are described on the
/freebsd-12.1/sys/dev/acpica/
H A Dacpi.c887 (adinfo->Valid & ACPI_VALID_HID) ? in acpi_child_pnpinfo_str_method()
889 (adinfo->Valid & ACPI_VALID_UID) ? in acpi_child_pnpinfo_str_method()
1611 pnpid = (devinfo->Valid & ACPI_VALID_HID) != 0 && in acpi_isa_get_logicalid()
1637 if ((devinfo->Valid & ACPI_VALID_CID) == 0) { in acpi_isa_get_compatid()
2093 if ((devinfo->Valid & ACPI_VALID_CLS) != 0 && in acpi_probe_child()
2265 if ((devinfo->Valid & ACPI_VALID_HID) != 0) in acpi_has_hid()
2267 else if ((devinfo->Valid & ACPI_VALID_CID) != 0) in acpi_has_hid()
2290 if ((devinfo->Valid & ACPI_VALID_HID) != 0 && in acpi_MatchHid()
2293 else if ((devinfo->Valid & ACPI_VALID_CID) != 0) in acpi_MatchHid()

1234