| /freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | Builtins.td | 90 let Prototype = "T(T)"; 97 let Prototype = "__float128(__float128)"; 104 let Prototype = "T(T)"; 111 let Prototype = "__float128(__float128)"; 118 let Prototype = "T(T)"; 125 let Prototype = "__float128(__float128)"; 131 let Prototype = "__float128(__float128)"; 137 let Prototype = "T(T)"; 143 let Prototype = "T(T)"; 149 let Prototype = "T(T)"; [all …]
|
| H A D | BuiltinsBPF.td | 15 let Prototype = "unsigned int(...)"; 22 let Prototype = "long unsigned int(...)"; 29 let Prototype = "long unsigned int(...)"; 36 let Prototype = "long int(...)";
|
| H A D | BuiltinsX86Base.td | 19 let Prototype = prototype; 26 let Prototype = prototype; 31 let Prototype = prototype;
|
| H A D | BuiltinsDirectX.td | 14 let Prototype = "float(_ExtVector<2, _Float16>, _ExtVector<2, _Float16>, float)";
|
| H A D | BuiltinsSPIRVBase.td | 13 let Prototype = prototype;
|
| H A D | riscv_vector_common.td | 117 // sequence of type transformers described in Suffix and Prototype. 127 // The C/C++ prototype of the builtin is defined by the Prototype attribute. 128 // Prototype is a non-empty sequence of type transformers, the first of which 130 // builtin, in order. For instance if Prototype is "wvv" and TypeRange is "si" 153 // underscore (_). It is instantiated like Prototype. 162 // underscore (_). It is instantiated like Prototype. 170 // Prototype attribute defines the C/C++ prototype of the builtin. It is a 173 // order. For instance if Prototype is "wvv", TypeRange is "si" and LMUL=1, a 177 string Prototype = prototype;
|
| H A D | arm_sve_sme_incl.td | 63 // Prototype modifiers 139 // Prototype modifiers added for SVE2p1 251 string Prototype = p;
|
| H A D | BuiltinsRISCVXCV.td | 16 let Prototype = prototype;
|
| H A D | BuiltinsBase.td | 102 string Prototype;
|
| H A D | BuiltinsRISCV.td | 17 let Prototype = prototype;
|
| H A D | arm_neon_incl.td | 231 // Prototype modifiers 269 string Prototype = p;
|
| /freebsd/sys/contrib/dev/acpica/include/ |
| H A D | acpixf.h | 203 #define ACPI_EXTERNAL_RETURN_STATUS(Prototype) \ argument 204 Prototype; 208 #define ACPI_EXTERNAL_RETURN_OK(Prototype) \ argument 209 Prototype; 213 #define ACPI_EXTERNAL_RETURN_VOID(Prototype) \ argument 214 Prototype; 218 #define ACPI_EXTERNAL_RETURN_UINT32(Prototype) \ argument 219 Prototype; 223 #define ACPI_EXTERNAL_RETURN_PTR(Prototype) \ argument 224 Prototype; [all …]
|
| /freebsd/contrib/llvm-project/clang/utils/TableGen/ |
| H A D | ClangBuiltinsEmitter.cpp | 164 void ParsePrototype(StringRef Prototype) { in ParsePrototype() argument 165 Prototype = Prototype.trim(); in ParsePrototype() 169 if (Prototype.empty()) { in ParsePrototype() 174 ParseTypes(Prototype); in ParsePrototype() 177 void ParseTypes(StringRef &Prototype) { in ParseTypes() argument 178 auto ReturnType = Prototype.take_until([](char c) { return c == '('; }); in ParseTypes() 180 Prototype = Prototype.drop_front(ReturnType.size() + 1); in ParseTypes() 181 if (!Prototype.ends_with(")")) in ParseTypes() 183 Prototype = Prototype.drop_back(); in ParseTypes() 186 const size_t end = Prototype.size(); in ParseTypes() [all …]
|
| H A D | RISCVVEmitter.cpp | 51 SmallVector<PrototypeDescriptor> Prototype; member 354 InsertToSignatureSet(SR.Prototype); in init() 671 auto Prototype = RVVIntrinsic::computeBuiltinTypes( in createRVVIntrinsics() local 686 TypeCache.computeTypes(BT, Log2LMUL, NF, Prototype); in createRVVIntrinsics() 782 SR.Prototype = std::move(BasicPrototype); in createRVVIntrinsics() 809 R.PrototypeIndex = SST.getIndex(SR.Prototype); in createRVVIntrinsicRecords() 812 R.PrototypeLength = SR.Prototype.size(); in createRVVIntrinsicRecords()
|
| /freebsd/sys/contrib/device-tree/src/mips/ingenic/ |
| H A D | gcw0_proto.dts | 7 model = "GCW Zero Prototype"; 11 /* Prototype has only 256 MiB of RAM */
|
| /freebsd/contrib/llvm-project/clang/lib/Support/ |
| H A D | RISCVVIntrinsicUtils.cpp | 920 ArrayRef<PrototypeDescriptor> Prototype) { in computeTypes() argument 922 for (const PrototypeDescriptor &Proto : Prototype) { in computeTypes() 1036 llvm::ArrayRef<PrototypeDescriptor> Prototype, bool IsMasked, in computeBuiltinTypes() argument 1039 SmallVector<PrototypeDescriptor> NewPrototype(Prototype); in computeBuiltinTypes() 1049 PrototypeDescriptor BasePtrOperand = Prototype[1]; in computeBuiltinTypes() 1088 PrototypeDescriptor BasePtrOperand = Prototype[0]; in computeBuiltinTypes() 1100 PrototypeDescriptor MaskoffType = Prototype[1]; in computeBuiltinTypes()
|
| /freebsd/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | CloneDetection.cpp | 493 StmtSequence Prototype = HashGroup[i]; in splitCloneGroups() local 494 CloneDetector::CloneGroup PotentialGroup = {Prototype}; in splitCloneGroups() 506 if (!Compare(Prototype, Candidate)) in splitCloneGroups()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | CodeCompleteConsumer.h | 1094 OverloadCandidate(FunctionProtoTypeLoc Prototype) in OverloadCandidate() argument 1095 : Kind(CK_FunctionProtoTypeLoc), ProtoTypeLoc(Prototype) { in OverloadCandidate() 1096 assert(!Prototype.isNull()); in OverloadCandidate()
|
| H A D | DeclSpec.h | 1855 Prototype, // Within a function prototype. enumerator 2078 return (Context == DeclaratorContext::Prototype || in isPrototypeContext() 2151 case DeclaratorContext::Prototype: in mayOmitIdentifier() 2185 case DeclaratorContext::Prototype: in mayHaveIdentifier() 2226 case DeclaratorContext::Prototype: in mayHaveDecompositionDeclarator() 2289 case DeclaratorContext::Prototype: in mayBeFollowedByCXXDirectInit() 2531 case DeclaratorContext::Prototype: in isFunctionDeclarationContext() 2567 case DeclaratorContext::Prototype: in isExpressionContext()
|
| /freebsd/sys/dev/sram/ |
| H A D | mmio_sram_if.m | 7 # Design (DSbD) Technology Platform Prototype".
|
| /freebsd/contrib/llvm-project/clang/include/clang/Support/ |
| H A D | RISCVVIntrinsicUtils.h | 367 llvm::ArrayRef<PrototypeDescriptor> Prototype); 471 computeBuiltinTypes(llvm::ArrayRef<PrototypeDescriptor> Prototype,
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Coroutines/ |
| H A D | Coroutines.cpp | 328 auto Prototype = ContinuationId->getPrototype(); in analyze() local 329 RetconLowering.ResumePrototype = Prototype; in analyze()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
| H A D | RISCVInstrInfoXSf.td | 123 string Prototype = !if(!eq(type, VCIX_X), "$funct6_lo2, $rs2, $rd, $rs1", 136 info.Ins, info.OpcodeStr, info.Prototype> { 143 info.Ins, info.OpcodeStr, info.Prototype> {
|
| /freebsd/sbin/pfctl/tests/ |
| H A D | pfctl_test_list.inc | 12 * Design (DSbD) Technology Platform Prototype".
|
| /freebsd/crypto/krb5/src/lib/krb5/asn.1/ |
| H A D | README.asn1 | 467 for it, named ktest_empty_typename(). Prototype these functions in 470 2. Define an equality test for the type in ktest_equal.c. Prototype
|