Home
last modified time | relevance | path

Searched refs:Prototype (Results 1 – 25 of 43) sorted by relevance

12

/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DBuiltins.td90 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 DBuiltinsBPF.td15 let Prototype = "unsigned int(...)";
22 let Prototype = "long unsigned int(...)";
29 let Prototype = "long unsigned int(...)";
36 let Prototype = "long int(...)";
H A DBuiltinsX86Base.td19 let Prototype = prototype;
26 let Prototype = prototype;
31 let Prototype = prototype;
H A DBuiltinsDirectX.td14 let Prototype = "float(_ExtVector<2, _Float16>, _ExtVector<2, _Float16>, float)";
H A DBuiltinsSPIRVBase.td13 let Prototype = prototype;
H A Driscv_vector_common.td117 // 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 Darm_sve_sme_incl.td63 // Prototype modifiers
139 // Prototype modifiers added for SVE2p1
251 string Prototype = p;
H A DBuiltinsRISCVXCV.td16 let Prototype = prototype;
H A DBuiltinsBase.td102 string Prototype;
H A DBuiltinsRISCV.td17 let Prototype = prototype;
H A Darm_neon_incl.td231 // Prototype modifiers
269 string Prototype = p;
/freebsd/sys/contrib/dev/acpica/include/
H A Dacpixf.h203 #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 DClangBuiltinsEmitter.cpp164 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 DRISCVVEmitter.cpp51 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 Dgcw0_proto.dts7 model = "GCW Zero Prototype";
11 /* Prototype has only 256 MiB of RAM */
/freebsd/contrib/llvm-project/clang/lib/Support/
H A DRISCVVIntrinsicUtils.cpp920 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 DCloneDetection.cpp493 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 DCodeCompleteConsumer.h1094 OverloadCandidate(FunctionProtoTypeLoc Prototype) in OverloadCandidate() argument
1095 : Kind(CK_FunctionProtoTypeLoc), ProtoTypeLoc(Prototype) { in OverloadCandidate()
1096 assert(!Prototype.isNull()); in OverloadCandidate()
H A DDeclSpec.h1855 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 Dmmio_sram_if.m7 # Design (DSbD) Technology Platform Prototype".
/freebsd/contrib/llvm-project/clang/include/clang/Support/
H A DRISCVVIntrinsicUtils.h367 llvm::ArrayRef<PrototypeDescriptor> Prototype);
471 computeBuiltinTypes(llvm::ArrayRef<PrototypeDescriptor> Prototype,
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroutines.cpp328 auto Prototype = ContinuationId->getPrototype(); in analyze() local
329 RetconLowering.ResumePrototype = Prototype; in analyze()
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVInstrInfoXSf.td123 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 Dpfctl_test_list.inc12 * Design (DSbD) Technology Platform Prototype".
/freebsd/crypto/krb5/src/lib/krb5/asn.1/
H A DREADME.asn1467 for it, named ktest_empty_typename(). Prototype these functions in
470 2. Define an equality test for the type in ktest_equal.c. Prototype

12