Home
last modified time | relevance | path

Searched refs:prototype (Results 1 – 25 of 177) sorted by relevance

12345678

/freebsd/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/contrib/ntp/sntp/libevent/cmake/
H A DCheckPrototypeDefinition.cmake4 # 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/contrib/libevent/cmake/
H A DCheckPrototypeDefinition.cmake4 # 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/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/contrib/llvm-project/clang/include/clang/Basic/
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_types, UseGPR, "">;
[all …]
/freebsd/sys/cddl/dev/
H A Dprototype.c141 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/contrib/llvm-project/clang/include/clang/CodeGen/
H A DCGFunctionInfo.h497 static RequiredArgs forPrototypePlus(const FunctionProtoType *prototype, in forPrototypePlus() argument
499 if (!prototype->isVariadic()) return All; in forPrototypePlus()
501 if (prototype->hasExtParameterInfos()) in forPrototypePlus()
503 prototype->getExtParameterInfos(), in forPrototypePlus()
508 return RequiredArgs(prototype->getNumParams() + additional); in forPrototypePlus()
511 static RequiredArgs forPrototypePlus(CanQual<FunctionProtoType> prototype, in forPrototypePlus() argument
513 return forPrototypePlus(prototype.getTypePtr(), additional); in forPrototypePlus()
516 static RequiredArgs forPrototype(const FunctionProtoType *prototype) { in forPrototype() argument
517 return forPrototypePlus(prototype, 0); in forPrototype()
520 static RequiredArgs forPrototype(CanQual<FunctionProtoType> prototype) { in forPrototype() argument
[all …]
/freebsd/sys/tools/
H A Dmakeobjops.awk302 prototype = "typedef " ret " " mname "_t(";
303 printh(format_line(prototype argument_list ");",
304 line_width, length(prototype)));
318 prototype = "static __inline " ret " " umname "(";
319 printh(format_line(prototype argument_list ")",
320 line_width, length(prototype)));
/freebsd/contrib/kyua/model/
H A Dtest_program.cpp329 model::test_program prototype; member
345 prototype(prototype_), in impl()
432 return test_program(_pimpl->prototype.interface_name(), in build()
433 _pimpl->prototype.relative_path(), in build()
434 _pimpl->prototype.root(), in build()
435 _pimpl->prototype.test_suite_name(), in build()
/freebsd/crypto/openssh/
H A Dbuildpkg.sh.in40 POST_PROTOTYPE_EDITS=./pkg-post-prototype-edit.sh
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
658 pkgmk -d ${FAKE_ROOT} -f $FAKE_ROOT/prototype -o
669 pkgmk -d ${FAKE_ROOT} -f $FAKE_ROOT/prototype -o
/freebsd/sys/modules/dtrace/prototype/
H A DMakefile5 KMOD= prototype
6 SRCS= prototype.c
/freebsd/sys/modules/dtrace/
H A DMakefile.inc8 -kldload prototype
18 -kldunload prototype
H A DMakefile11 prototype \
/freebsd/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/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanCallFunctionUsingABI.cpp24 Thread &thread, const Address &function, llvm::Type &prototype, in ThreadPlanCallFunctionUsingABI() argument
37 start_load_addr, prototype, args)) in ThreadPlanCallFunctionUsingABI()
/freebsd/contrib/unbound/doc/
H A DCREDITS5 the prototype, which was built by David Blacka and Matt Larson of VeriSign.
7 based on the existing prototype and using experience NLnet Labs gained
/freebsd/contrib/ldns/
H A Dacx_nlnetlabs.m491 # AHX_CONFIG_SNPRINTF - snprintf compat prototype
92 # AHX_CONFIG_INET_PTON - inet_pton compat prototype
93 # AHX_CONFIG_INET_NTOP - inet_ntop compat prototype
94 # AHX_CONFIG_INET_ATON - inet_aton compat prototype
95 # AHX_CONFIG_MEMMOVE - memmove compat prototype
96 # AHX_CONFIG_STRLCAT - strlcat compat prototype
97 # AHX_CONFIG_STRLCPY - strlcpy compat prototype
98 # AHX_CONFIG_GMTIME_R - gmtime_r compat prototype
1104 dnl detect malloc and provide malloc compat prototype.
1160 dnl provide snprintf, vsnprintf compat prototype
[all …]
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_stats.cpp510 static std::string generateFilename(char const *prototype, in generateFilename() argument
514 for (int i = 0; prototype[i] != char(0); i++) { in generateFilename()
515 char ch = prototype[i]; in generateFilename()
519 if (prototype[i] == char(0)) in generateFilename()
522 switch (prototype[i]) { in generateFilename()
539 res += prototype[i]; in generateFilename()
/freebsd/contrib/unbound/
H A Dacx_nlnetlabs.m4100 # AHX_CONFIG_SNPRINTF - snprintf compat prototype
101 # AHX_CONFIG_INET_PTON - inet_pton compat prototype
102 # AHX_CONFIG_INET_NTOP - inet_ntop compat prototype
103 # AHX_CONFIG_INET_ATON - inet_aton compat prototype
104 # AHX_CONFIG_MEMMOVE - memmove compat prototype
105 # AHX_CONFIG_STRLCAT - strlcat compat prototype
106 # AHX_CONFIG_STRLCPY - strlcpy compat prototype
107 # AHX_CONFIG_GMTIME_R - gmtime_r compat prototype
1189 dnl detect malloc and provide malloc compat prototype.
1245 dnl provide snprintf, vsnprintf compat prototype
[all …]
/freebsd/sys/contrib/openzfs/config/
H A Dkernel-vfs-fsync.m43 dnl # Unused 'struct dentry *' removed from vfs_fsync() prototype.
/freebsd/sys/contrib/dev/acpica/include/
H A Dacpixf.h449 #define ACPI_HW_DEPENDENT_RETURN_UINT32(prototype) \ argument
450 ACPI_EXTERNAL_RETURN_UINT32(prototype)
462 #define ACPI_HW_DEPENDENT_RETURN_UINT32(prototype) \ argument
463 static ACPI_INLINE prototype {return(0);}
/freebsd/contrib/ntp/html/hints/
H A Dchanges7 - Removed conflicting prototype for Linux (sscanf)
/freebsd/crypto/heimdal/lib/com_err/
H A DChangeLog93 * com_err.h (add_to_error_table): add prototype
115 * com_right.h (initialize_error_table_r): fix prototype
161 * parse.y: prototype for error_message
/freebsd/contrib/sendmail/cf/cf/
H A Dsubmit.mc13 # This is the prototype file for a set-group-ID sm-msp sendmail that
/freebsd/contrib/dialog/
H A Dconfigure6300 /* Override any gcc2 internal prototype to avoid an error. */
6305 builtin and then its argument prototype would still apply. */
6342 /* Override any gcc2 internal prototype to avoid an error. */
6347 builtin and then its argument prototype would still apply. */
6396 /* Override any gcc2 internal prototype to avoid an error. */
6401 builtin and then its argument prototype would still apply. */
6468 builtin and then its argument prototype would still apply. */
6522 /* Override any gcc2 internal prototype to avoid an error. */
6527 builtin and then its argument prototype would still apply. */
6576 /* Override any gcc2 internal prototype to avoid an error. */
[all …]

12345678