Home
last modified time | relevance | path

Searched full:prototype (Results 1 – 25 of 730) sorted by relevance

12345678910>>...30

/freebsd-src/contrib/tcp_wrappers/
H A DBanners.Makefile4 # It will convert a prototype banner text to a form that is suitable for
10 # The prototype text should live in the banners directory, as a file with
11 # the name "prototype". In the prototype text you can use %<character>
37 $(IN)telnetd: prototype
38 cp prototype $@
41 $(IN)ftpd: prototype
42 sed 's/^/220-/' prototype > $@
45 $(IN)rlogind: prototype nul
46 ( ./nul ; cat prototype ) > $@
56 $(IN)fingerd: prototype
[all …]
/freebsd-src/contrib/libevent/cmake/
H A DCheckPrototypeDefinition.cmake2 # check_prototype_definition(FUNCTION PROTOTYPE RETURN HEADER VARIABLE)
4 # FUNCTION - The name of the function (used to check if prototype exists)
5 # PROTOTYPE- The prototype to check.
69 set(${_VARIABLE} 1 CACHE INTERNAL "Have correct prototype for ${_FUNCTION}")
70 message(STATUS "Checking prototype ${_FUNCTION} for ${_VARIABLE} - True")
72 …"Determining if the prototype ${_FUNCTION} exists for ${_VARIABLE} passed with the following outpu…
75 message(STATUS "Checking prototype ${_FUNCTION} for ${_VARIABLE} - False")
76 set(${_VARIABLE} 0 CACHE INTERNAL "Have correct prototype for ${_FUNCTION}")
78 …"Determining if the prototype ${_FUNCTION} exists for ${_VARIABLE} failed with the following outpu…
/freebsd-src/contrib/ntp/sntp/libevent/cmake/
H A DCheckPrototypeDefinition.cmake2 # check_prototype_definition(FUNCTION PROTOTYPE RETURN HEADER VARIABLE)
4 # FUNCTION - The name of the function (used to check if prototype exists)
5 # PROTOTYPE- The prototype to check.
69 set(${_VARIABLE} 1 CACHE INTERNAL "Have correct prototype for ${_FUNCTION}")
70 message(STATUS "Checking prototype ${_FUNCTION} for ${_VARIABLE} - True")
72 …"Determining if the prototype ${_FUNCTION} exists for ${_VARIABLE} passed with the following outpu…
75 message(STATUS "Checking prototype ${_FUNCTION} for ${_VARIABLE} - False")
76 set(${_VARIABLE} 0 CACHE INTERNAL "Have correct prototype for ${_FUNCTION}")
78 …"Determining if the prototype ${_FUNCTION} exists for ${_VARIABLE} failed with the following outpu…
/freebsd-src/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyAddMissingPrototypes.cpp12 /// WebAssembly has strict function prototype checking so we need functions
13 /// declarations to match the call sites. Clang treats prototype-less functions
16 /// prototype-less function, ensure they agree, and then set the signature
66 // Find all the prototype-less function declarations in runOnModule()
68 if (!F.isDeclaration() || !F.hasFnAttribute("no-prototype")) in runOnModule()
71 LLVM_DEBUG(dbgs() << "Found no-prototype function: " << F.getName() in runOnModule()
74 // When clang emits prototype-less C functions it uses (...), i.e. varargs in runOnModule()
76 // no-prototype attribute we expect the function have these properties. in runOnModule()
79 "Functions with 'no-prototype' attribute must take varargs: " + in runOnModule()
84 report_fatal_error("Functions with 'no-prototype' attribut in runOnModule()
[all...]
/freebsd-src/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;
443 ACPI_HW_DEPENDENT_RETURN_STATUS(Prototype) global() argument
446 ACPI_HW_DEPENDENT_RETURN_OK(Prototype) global() argument
449 ACPI_HW_DEPENDENT_RETURN_UINT32(prototype) global() argument
452 ACPI_HW_DEPENDENT_RETURN_VOID(Prototype) global() argument
456 ACPI_HW_DEPENDENT_RETURN_STATUS(Prototype) global() argument
459 ACPI_HW_DEPENDENT_RETURN_OK(Prototype) global() argument
462 ACPI_HW_DEPENDENT_RETURN_UINT32(prototype) global() argument
465 ACPI_HW_DEPENDENT_RETURN_VOID(Prototype) global() argument
479 ACPI_MSG_DEPENDENT_RETURN_VOID(Prototype) global() argument
483 ACPI_MSG_DEPENDENT_RETURN_VOID(Prototype) global() argument
497 ACPI_DBG_DEPENDENT_RETURN_VOID(Prototype) global() argument
501 ACPI_DBG_DEPENDENT_RETURN_VOID(Prototype) global() argument
515 ACPI_APP_DEPENDENT_RETURN_VOID(Prototype) global() argument
519 ACPI_APP_DEPENDENT_RETURN_VOID(Prototype) global() argument
533 ACPI_DBR_DEPENDENT_RETURN_OK(Prototype) global() argument
536 ACPI_DBR_DEPENDENT_RETURN_VOID(Prototype) global() argument
540 ACPI_DBR_DEPENDENT_RETURN_OK(Prototype) global() argument
543 ACPI_DBR_DEPENDENT_RETURN_VOID(Prototype) global() argument
[all...]
/freebsd-src/contrib/llvm-project/clang/include/clang/Basic/
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"
146 class RVVBuiltin<string suffix, string prototype, string type_range,
153 // underscore (_). It is instantiated like Prototype.
162 // underscore (_). It is instantiated like Prototype.
168 // We use each type described in TypeRange and LMUL with prototype to
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
[all …]
H A Driscv_sifive_vector.td29 string prototype, string type_range,
31 : RVVBuiltin<suffix, prototype, type_range> {
40 string prototype, string type_range,
42 if !find(prototype, "0") then {
43 def : VCIXBuiltinSet<name, IR_name, suffix, prototype, type_range, intrinsic_types>;
45 def : VCIXBuiltinSet<name # "_se", IR_name # "_se", suffix, prototype, type_range, intrinsic_types>;
48 multiclass RVVVCIXBuiltinSet<list<string> range, string prototype,
54 defm : VCIXBuiltinSet<NAME, NAME, suffix, prototype, r, intrinsic_types>;
57 multiclass RVVVCIXBuiltinSetWOSuffix<list<string> range, string prototype,
60 defm NAME : RVVVCIXBuiltinSet<range, prototype, intrinsic_type
[all...]
/freebsd-src/contrib/llvm-project/clang/lib/Headers/
H A Dvecintrin.h125 // This prototype is deprecated.
145 // This prototype is deprecated.
167 // This prototype is deprecated.
188 // This prototype is deprecated.
489 // This prototype is deprecated.
495 // This prototype is deprecated.
501 // This prototype is deprecated.
507 // This prototype is deprecated.
1101 // This prototype is deprecated.
1110 // This prototype i
[all...]
H A Dhexagon_protos.h18 C Intrinsic Prototype: Word32 Q6_R_abs_R(Word32 Rs)
27 C Intrinsic Prototype: Word64 Q6_P_abs_P(Word64 Rss)
36 C Intrinsic Prototype: Word32 Q6_R_abs_R_sat(Word32 Rs)
45 C Intrinsic Prototype: Word32 Q6_R_add_RR(Word32 Rs, Word32 Rt)
54 C Intrinsic Prototype: Word32 Q6_R_add_RhRh_s16(Word32 Rt, Word32 Rs)
63 C Intrinsic Prototype: Word32 Q6_R_add_RhRl_s16(Word32 Rt, Word32 Rs)
72 C Intrinsic Prototype: Word32 Q6_R_add_RlRh_s16(Word32 Rt, Word32 Rs)
81 C Intrinsic Prototype: Word32 Q6_R_add_RlRl_s16(Word32 Rt, Word32 Rs)
90 C Intrinsic Prototype: Word32 Q6_R_add_RhRh_sat_s16(Word32 Rt, Word32 Rs)
99 C Intrinsic Prototype: Word32 Q6_R_add_RhRl_sat_s16(Word32 Rt, Word32 Rs)
[all …]
H A Dhvx_hexagon_protos.h25 C Intrinsic Prototype: Word32 Q6_R_vextract_VR(HVX_Vector Vu, Word32 Rs)
36 C Intrinsic Prototype: HVX_Vector Q6_V_hi_W(HVX_VectorPair Vss)
47 C Intrinsic Prototype: HVX_Vector Q6_V_lo_W(HVX_VectorPair Vss)
58 C Intrinsic Prototype: HVX_Vector Q6_V_vsplat_R(Word32 Rt)
69 C Intrinsic Prototype: HVX_VectorPred Q6_Q_and_QQ(HVX_VectorPred Qs, HVX_VectorPred Qt)
80 C Intrinsic Prototype: HVX_VectorPred Q6_Q_and_QQn(HVX_VectorPred Qs, HVX_VectorPred Qt)
91 C Intrinsic Prototype: HVX_VectorPred Q6_Q_not_Q(HVX_VectorPred Qs)
102 C Intrinsic Prototype: HVX_VectorPred Q6_Q_or_QQ(HVX_VectorPred Qs, HVX_VectorPred Qt)
113 C Intrinsic Prototype: HVX_VectorPred Q6_Q_or_QQn(HVX_VectorPred Qs, HVX_VectorPred Qt)
124 C Intrinsic Prototype: HVX_VectorPred Q6_Q_vsetq_R(Word32 Rt)
[all …]
H A Dhexagon_circ_brev_intrinsics.h18 …C Intrinsic Prototype: void Q6_circ_load_update_D(Word64 dst, Word64 *ptr, UWord32 incr, UWord32 b…
27 …C Intrinsic Prototype: void Q6_circ_load_update_W(Word32 dst, Word32 *ptr, UWord32 incr, UWord32 b…
36 …C Intrinsic Prototype: void Q6_circ_load_update_H(Word16 dst, Word16 *ptr, UWord32 incr, UWord32 b…
45 …C Intrinsic Prototype: void Q6_circ_load_update_UH( UWord16 dst, UWord16 *ptr, UWord32 incr, UWor…
54 …C Intrinsic Prototype: void Q6_circ_load_update_B(Word8 dst, Word8 *ptr, UWord32 incr, UWord32 buf…
63 …C Intrinsic Prototype: void Q6_circ_load_update_UB(UWord8 dst, UWord8 *ptr, UWord32 incr, UWord32…
73 …C Intrinsic Prototype: void Q6_circ_store_update_D(Word64 *src, Word64 *ptr, UWord32 incr, UWord32…
82 …C Intrinsic Prototype: void Q6_circ_store_update_W(Word32 *src, Word32 *ptr, UWord32 incr, UWord32…
91 …C Intrinsic Prototype: void Q6_circ_store_update_HL(Word16 *src, Word16 *ptr, UWord32 incr, UWord3…
100 …C Intrinsic Prototype: void Q6_circ_store_update_HH(Word16 *src, Word16 *ptr, UWord32 incr, UWord3…
[all …]
/freebsd-src/contrib/libcbor/src/cbor/
H A Dcallbacks.h20 /** Callback prototype */
23 /** Callback prototype */
26 /** Callback prototype */
29 /** Callback prototype */
32 /** Callback prototype */
35 /** Callback prototype */
38 /** Callback prototype */
41 /** Callback prototype */
44 /** Callback prototype */
47 /** Callback prototype */
/freebsd-src/sys/cddl/dev/
H A Dprototype.c27 .d_name = "prototype",
83 * Create the /dev/dtrace/prototype entry. in prototype_load()
87 "dtrace/prototype"); in prototype_load()
89 if (dtrace_register("prototype", &prototype_attr, DTRACE_PRIV_USER, in prototype_load()
141 DEV_MODULE(prototype, prototype_modevent, NULL);
142 MODULE_VERSION(prototype, 1);
143 MODULE_DEPEND(prototype, dtrace, 1, 1, 1);
144 MODULE_DEPEND(prototype, opensolaris, 1, 1, 1);
/freebsd-src/crypto/openssh/regress/unittests/sshsig/
H A Dwebauthn.html98 CBORDecode.prototype.empty = function() {
102 CBORDecode.prototype.getU8 = function() {
108 CBORDecode.prototype.getU16 = function() {
114 CBORDecode.prototype.getU32 = function() {
120 CBORDecode.prototype.getU64 = function() {
126 CBORDecode.prototype.getCBORTypeLen = function() {
134 CBORDecode.prototype.decodeInteger = function(len) {
148 CBORDecode.prototype.decodeNegint = function(len) {
153 CBORDecode.prototype.decodeByteString = function(len) {
159 CBORDecode.prototype.decodeTextString = function(len) {
[all …]
/freebsd-src/crypto/heimdal/include/
H A Dconfig.h.in95 /* define if prototype of gethostbyaddr is compatible with struct hostent
99 /* define if prototype of gethostbyname is compatible with struct hostent
103 /* define if prototype of getservbyname is compatible with struct servent
107 /* define if prototype of getsockname is compatible with int getsockname(int,
1323 /* define if the system is missing a prototype for asnprintf() */
1326 /* define if the system is missing a prototype for asprintf() */
1329 /* define if the system is missing a prototype for crypt() */
1332 /* define if the system is missing a prototype for daemon() */
1335 /* define if the system is missing a prototype for gethostname() */
1338 /* define if the system is missing a prototype for getusershell() */
[all …]
/freebsd-src/contrib/libdiff/lib/
H A Ddiff_output_unidiff.c205 char prototype[DIFF_FUNCTION_CONTEXT_SIZE]; member
224 memset(state->prototype, 0, sizeof(state->prototype)); in diff_output_unidiff_state_reset()
316 rc = diff_output_match_function_prototype(state->prototype, in output_unidiff_chunk()
317 sizeof(state->prototype), &state->last_prototype_idx, in output_unidiff_chunk()
326 state->prototype[0] ? " " : "", in output_unidiff_chunk()
327 state->prototype[0] ? state->prototype : ""); in output_unidiff_chunk()
331 state->prototype[0] ? " " : "", in output_unidiff_chunk()
332 state->prototype[0] ? state->prototype : ""); in output_unidiff_chunk()
336 state->prototype[0] ? " " : "", in output_unidiff_chunk()
337 state->prototype[0] ? state->prototype : ""); in output_unidiff_chunk()
[all …]
/freebsd-src/kerberos5/include/
H A Dconfig.h96 /* define if prototype of gethostbyaddr is compatible with struct hostent
100 /* define if prototype of gethostbyname is compatible with struct hostent
104 /* define if prototype of getservbyname is compatible with struct servent
108 /* define if prototype of getsockname is compatible with int getsockname(int,
1328 /* define if the system is missing a prototype for asnprintf() */
1331 /* define if the system is missing a prototype for asprintf() */
1334 /* define if the system is missing a prototype for crypt() */
1337 /* define if the system is missing a prototype for daemon() */
1340 /* define if the system is missing a prototype for gethostname() */
1343 /* define if the system is missing a prototype for getusershell() */
[all …]
/freebsd-src/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_errtags.h126 D_PROTO_LEN, /* prototype length mismatch */
127 D_PROTO_ARG, /* prototype argument mismatch */
169 D_DECL_PROTO_VARARGS, /* varargs not allowed in prototype */
170 D_DECL_PROTO_TYPE, /* type not allowed in prototype */
186 D_PRINTA_PROTO, /* printa() prototype mismatch */
201 D_STACK_PROTO, /* stack() prototype mismatch */
205 D_USTACK_PROTO, /* ustack() prototype mismatch */
215 D_QUANT_PROTO, /* quantize() prototype mismatch */
228 D_CLEAR_PROTO, /* clear() prototype mismatch */
231 D_NORMALIZE_PROTO, /* normalize() prototype mismatch */
[all …]
/freebsd-src/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroutines.cpp340 auto Prototype = ContinuationId->getPrototype(); in buildFrom()
341 this->RetconLowering.ResumePrototype = Prototype; in buildFrom()
379 Prototype->getFunctionType()->dump(); in buildFrom()
382 "match corresponding prototype function result"); in buildFrom()
388 Prototype->getFunctionType()->dump(); in buildFrom()
407 Prototype->getFunctionType()->dump(); in buildFrom()
415 Prototype->getFunctionType()->dump(); in buildFrom()
418 "match corresponding prototype function param"); in buildFrom()
514 /// Check that the given value is a well-formed prototype for the in checkWFRetconPrototype()
519 fail(I, "llvm.coro.id.retcon.* prototype no in checkWFRetconPrototype()
333 auto Prototype = ContinuationId->getPrototype(); buildFrom() local
[all...]
/freebsd-src/crypto/openssh/
H A Dbuildpkg.sh.in3 # Fake Root Solaris/SVR4/SVR5 Build System - Prototype
40 POST_PROTOTYPE_EDITS=./pkg-post-prototype-edit.sh
622 ## Next Build our prototype
623 echo "Building prototype file..."
643 find . | egrep -v "prototype|pkginfo|mk-proto.awk" | sort | \
644 pkgproto $PROTO_ARGS | ${AWK} -f mk-proto.awk > prototype
648 grep -v "^d none /usr/local ? ? ?$" prototype > prototype.new
649 mv prototype.new prototype
654 # local prototype tweeks here
658 pkgmk -d ${FAKE_ROOT} -f $FAKE_ROOT/prototype -o
[all …]
/freebsd-src/stand/efi/include/i386/
H A Defibind.h71 // EFIAPI - prototype calling convention for EFI function pointers
72 // BOOTSERVICE - prototype for implementation of a boot service interface
73 // RUNTIMESERVICE - prototype for implementation of a runtime service interface
74 // RUNTIMEFUNCTION - prototype for implementation of a runtime function that is not a service
/freebsd-src/stand/efi/include/amd64/
H A Defibind.h71 // EFIAPI - prototype calling convention for EFI function pointers
72 // BOOTSERVICE - prototype for implementation of a boot service interface
73 // RUNTIMESERVICE - prototype for implementation of a runtime service interface
74 // RUNTIMEFUNCTION - prototype for implementation of a runtime function that is not a service
/freebsd-src/contrib/elftoolchain/libelftc/
H A Delftc_demangle.348 C++ prototype.
55 denotes a programmer-specified area to place the prototype string in.
112 was too small to hold the decoded function prototype.
/freebsd-src/stand/efi/include/arm64/
H A Defibind.h76 // EFIAPI - prototype calling convention for EFI function pointers
77 // BOOTSERVICE - prototype for implementation of a boot service interface
78 // RUNTIMESERVICE - prototype for implementation of a runtime service interface
79 // RUNTIMEFUNCTION - prototype for implementation of a runtime function that is not a service
/freebsd-src/stand/efi/include/riscv/
H A Defibind.h76 // EFIAPI - prototype calling convention for EFI function pointers
77 // BOOTSERVICE - prototype for implementation of a boot service interface
78 // RUNTIMESERVICE - prototype for implementation of a runtime service interface
79 // RUNTIMEFUNCTION - prototype for implementation of a runtime function that is not a service

12345678910>>...30