/freebsd/lib/libc/aarch64/string/ |
H A D | Makefile.inc | 45 .for FUNC in ${AARCH64_STRING_FUNCS} 46 .if !exists(${FUNC}.S) 47 ${FUNC}.S: 49 printf '#define __%s_aarch64 %s\n' ${FUNC} ${FUNC} >> ${.TARGET} 50 printf '#include "aarch64/%s.S"\n' ${FUNC} >> ${.TARGET} 51 CLEANFILES+= ${FUNC}.S 54 MDSRCS+= ${FUNC}.S 55 CFLAGS.${FUNC}.S+=-I${SRCTOP}/contrib/arm-optimized-routines/string
|
/freebsd/contrib/arm-optimized-routines/math/test/ |
H A D | runulp.sh | 68 if [ -z "$FUNC" ] || [ "$FUNC" == "_ZGVsMxvv_powi" ]; then 74 if [ -z "$FUNC" ] || [ "$FUNC" == "_ZGVsMxvv_powk" ]; then 89 $(grep "\b$FUNC\b" $GEN_ITVS) 99 $(grep "\b$FUNC\b" $ARCH_ITVS)
|
/freebsd/crypto/heimdal/lib/krb5/ |
H A D | warn.c | 82 #define FUNC(ETEXT, CODE, LEVEL) \ macro 127 FUNC(1, code, 1); in krb5_warn() 161 FUNC(0, 0, 1); in krb5_warnx() 205 FUNC(1, code, 0); in krb5_err() 244 FUNC(0, 0, 0); in krb5_errx() 286 FUNC(1, code, 0); in krb5_abort() 314 FUNC(0, 0, 0); in krb5_abortx()
|
/freebsd/contrib/bsnmp/snmpd/ |
H A D | snmpmod.h | 125 #define INSERT_OBJECT_FUNC_LINK(PTR, LIST, LINK, FUNC) do { \ argument 129 if ((FUNC)(_lelem, (PTR)) > 0) \ 137 #define INSERT_OBJECT_FUNC_LINK_REV(PTR, LIST, HEAD, LINK, FUNC) do { \ argument 141 if ((FUNC)(_lelem, (PTR)) < 0) \ 191 #define FIND_OBJECT_FUNC_LINK(LIST, OID, SUB, LINK, FUNC) ({ \ argument 195 if ((FUNC)(OID, SUB, _lelem) == 0) \ 200 #define NEXT_OBJECT_FUNC_LINK(LIST, OID, SUB, LINK, FUNC) ({ \ argument 204 if ((FUNC)(OID, SUB, _lelem) < 0) \ 240 #define INSERT_OBJECT_FUNC_REV(PTR, LIST, HEAD, FUNC) \ argument 241 INSERT_OBJECT_FUNC_LINK_REV(PTR, LIST, HEAD, link, FUNC) [all …]
|
/freebsd/contrib/arm-optimized-routines/string/aarch64/experimental/ |
H A D | strcpy-sve.S | 20 #define FUNC __stpcpy_aarch64_sve macro 22 #define FUNC __strcpy_aarch64_sve macro 25 ENTRY (FUNC) 67 END (FUNC)
|
H A D | strchr-sve.S | 20 #define FUNC __strchrnul_aarch64_sve macro 22 #define FUNC __strchr_aarch64_sve macro 25 ENTRY (FUNC) 67 END (FUNC)
|
/freebsd/contrib/wpa/wpa_supplicant/ |
H A D | config.c | 2493 #define FUNC(f) _FUNC(f), 0 macro 2522 { FUNC(bssid) }, 2523 { FUNC(bssid_hint) }, 2524 { FUNC(bssid_ignore) }, 2525 { FUNC(bssid_accept) }, 2526 { FUNC(bssid_blacklist) }, /* deprecated alias for bssid_ignore */ 2527 { FUNC(bssid_whitelist) }, /* deprecated alias for bssid_accept */ 2532 { FUNC(proto) }, 2533 { FUNC(key_mgmt) }, 2535 { FUNC(pairwise) }, [all …]
|
/freebsd/contrib/one-true-awk/ |
H A D | lex.c | 64 { "func", FUNC, FUNC }, 65 { "function", FUNC, FUNC }, 527 case FUNC: in word()
|
H A D | awkgram.y | 55 %token <i> ARG BLTIN BREAK CLOSE CONTINUE DELETE DO EXIT FOR FUNC 83 %left ARG BLTIN BREAK CALL CLOSE CONTINUE DELETE DO EXIT FOR FUNC 185 | FUNC funcname '(' varlist rparen {infunc = true;} lbrace stmtlist '}'
|
/freebsd/sys/sys/ |
H A D | kobj.h | 97 #define KOBJMETHOD(NAME, FUNC) \ argument 98 { &NAME##_desc, (kobjop_t) (1 ? FUNC : (NAME##_t *)NULL) }
|
/freebsd/crypto/openssl/providers/ |
H A D | legacyprov.c | 29 #define ALG(NAMES, FUNC) { NAMES, "provider=legacy", FUNC } argument
|
H A D | defltprov.c | 34 #define ALGC(NAMES, FUNC, CHECK) { { NAMES, "provider=default", FUNC }, CHECK } argument 35 #define ALG(NAMES, FUNC) ALGC(NAMES, FUNC, NULL) argument
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/BTF/ |
H A D | BTF.def | 29 HANDLE_BTF_KIND(12, FUNC)
|
/freebsd/crypto/openssl/providers/fips/ |
H A D | fipsprov.c | 39 #define ALGC(NAMES, FUNC, CHECK) { { NAMES, FIPS_DEFAULT_PROPERTIES, FUNC }, CHECK } argument 40 #define ALG(NAMES, FUNC) ALGC(NAMES, FUNC, NULL) argument
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-xray/ |
H A D | xray-account.cpp | 76 FUNC, enumerator 90 clEnumValN(SortField::FUNC, "func", "function names"))); 360 case SortField::FUNC: in exportStats()
|
/freebsd/sys/dev/cardbus/ |
H A D | cardbus_cis.c | 109 #define MAKETUPLE(NAME,FUNC) { CISTPL_ ## NAME, #NAME, decode_tuple_ ## FUNC } argument
|
/freebsd/crypto/openssl/crypto/err/ |
H A D | openssl.ec | 6 L FUNC NONE NONE
|
/freebsd/contrib/llvm-project/libunwind/src/ |
H A D | Unwind-EHABI.cpp | 67 FUNC = 0x1, enumerator 127 case Descriptor::FUNC: { in ProcessDescriptors()
|
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_aead/aes256gcm/aesni/ |
H A D | aead_aes256gcm_aesni.c | 177 #define FUNC(N, MAKEN) … macro 194 FUNC(8, MAKE8)
|
/freebsd/contrib/arm-optimized-routines/math/ |
H A D | Dir.mk | 275 FUNC=$(func) \
|
/freebsd/contrib/tcpdump/ |
H A D | CMakeLists.txt | 1401 foreach(FUNC strlcat strlcpy strdup strsep getservent getopt_long) 1402 string(TOUPPER ${FUNC} FUNC_UPPERCASE) 1405 set(NETDISSECT_SOURCE_LIST_C ${NETDISSECT_SOURCE_LIST_C} missing/${FUNC}.c)
|
/freebsd/crypto/openssl/apps/ |
H A D | cmp.c | 619 #define FUNC (strcmp(OPENSSL_FUNC, "(unknown function)") == 0 \ macro 624 FUNC, OPENSSL_FILE, OPENSSL_LINE, prefix, a1, a2, a3))))
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | R600Instructions.td | 1633 def FUNC : ILFormat< (outs), (ins), 1634 "FUNC", []>;
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/ |
H A D | Execution.cpp | 523 #define IMPLEMENT_VECTOR_UNORDERED(TY, X, Y, FUNC) \ argument 526 Dest = FUNC(Src1, Src2, Ty); \
|