Searched refs:nm (Results 1 - 25 of 276) sorted by relevance

1234567891011>>

/freebsd-11-stable/usr.bin/clang/llvm-nm/
H A DMakefile1 # $FreeBSD: stable/11/usr.bin/clang/llvm-nm/Makefile 360660 2020-05-05 17:10:49Z dim $
3 PROG_CXX= llvm-nm
5 SRCDIR= llvm/tools/llvm-nm
6 SRCS+= llvm-nm.cpp
/freebsd-11-stable/contrib/elftoolchain/nm/
H A DMakefile6 PROG= nm
7 SRCS= nm.c
/freebsd-11-stable/usr.bin/mkimg/
H A Dformat.h40 #define FORMAT_DEFINE(nm) \
41 static void format_register_##nm(void) __attribute__((constructor)); \
42 static void format_register_##nm(void) { format_register(&nm); }
H A Dscheme.h80 #define SCHEME_DEFINE(nm) \
81 static void scheme_register_##nm(void) __attribute__((constructor)); \
82 static void scheme_register_##nm(void) { scheme_register(&nm); }
/freebsd-11-stable/contrib/bmake/
H A Dfind_lib.sh6 found=`nm $lib | egrep "$re"`
/freebsd-11-stable/usr.bin/nm/
H A DMakefile6 NMDIR= ${ELFTCDIR}/nm
10 PROG= nm
/freebsd-11-stable/contrib/groff/src/libs/libdriver/
H A Dprinter.cpp103 void printer::load_font(int n, const char *nm) argument
130 font *f = find_font(nm);
134 font *printer::find_font(const char *nm) argument
137 if (strcmp(p->p->get_name(), nm) == 0)
139 font *f = make_font(nm);
146 font *printer::make_font(const char *nm) argument
148 return font::load_font(nm);
192 void printer::set_special_char(const char *nm, const environment *env, argument
197 int i = set_char_and_width(nm, env, &w, &f);
199 set_char(i, f, env, w, nm);
205 set_char_and_width(const char *nm, const environment *env, int *widthp, font **f) argument
[all...]
/freebsd-11-stable/contrib/binutils/binutils/
H A Dsanity.sh17 for i in size objdump nm ar strip ranlib ; do
22 for i in size objdump nm ar strip ranlib ; do
26 ### nm
27 for i in size objdump nm ar strip ranlib ; do
28 ${BIN}/nm ${BIN}/$i > /dev/null
37 for i in size objdump nm ar ranlib ; do
/freebsd-11-stable/stand/efi/libefi/
H A Defichar.c57 * If nm were converted to utf8, what what would strlen
61 utf8_len_of_ucs2(const efi_char *nm) argument
67 while (*nm) {
68 c = *nm++;
81 ucs2_to_utf8(const efi_char *nm, char **name) argument
88 sz = utf8_len_of_ucs2(nm) + 1;
97 while (*nm) {
98 c = *nm++;
133 efi_char *nm; local
144 nm
[all...]
/freebsd-11-stable/sys/dev/uart/
H A Duart_bus_ebus.c66 const char *nm, *cmpt; local
73 nm = ofw_bus_get_name(dev);
77 if (!strcmp(nm, "lom-console") || !strcmp(nm, "su") ||
78 !strcmp(nm, "su_pnp") || !strcmp(cmpt, "rsc-console") ||
/freebsd-11-stable/crypto/openssl/crypto/evp/
H A Dnames.c153 static void do_all_cipher_fn(const OBJ_NAME *nm, void *arg) argument
156 if (nm->alias)
157 dc->fn(NULL, nm->name, nm->data, dc->arg);
159 dc->fn((const EVP_CIPHER *)nm->data, nm->name, NULL, dc->arg);
188 static void do_all_md_fn(const OBJ_NAME *nm, void *arg) argument
191 if (nm->alias)
192 dc->fn(NULL, nm->name, nm
[all...]
/freebsd-11-stable/contrib/unbound/ipsecmod/
H A Dipsecmod-whitelist.c61 uint8_t* nm = sldns_str2wire_dname(name, &len); local
62 if(!nm) {
69 free(nm);
73 n->name = nm;
75 n->labs = dname_count_labels(nm);
77 if(!name_tree_insert(whitelist, n, nm, len, n->labs, n->dclass)) {
/freebsd-11-stable/contrib/openpam/t/
H A Dt_pam_conv.c65 t_pam_conv(int nm, const struct pam_message **msgs, argument
73 if (nm != s->nmsg) {
75 s->nmsg, nm);
78 if (nm <= 0 || nm > PAM_MAX_NUM_MSG) {
85 if ((resps = calloc(nm, sizeof *resps)) == NULL)
87 for (i = 0; i < nm; ++i) {
130 for (i = 0; i < nm; ++i)
/freebsd-11-stable/sys/dev/scc/
H A Dscc_bfe_ebus.c52 const char *cmpt, *nm; local
55 nm = ofw_bus_get_name(dev);
59 if (!strcmp(nm, "se") || !strcmp(nm, "FJSV,se") ||
/freebsd-11-stable/crypto/openssl/crypto/pem/
H A Dpem_pkey.c81 char *nm = NULL; local
88 if (!PEM_bytes_read_bio(&data, &len, &nm, PEM_STRING_EVP_PKEY, bp, cb, u))
92 if (strcmp(nm, PEM_STRING_PKCS8INF) == 0) {
104 } else if (strcmp(nm, PEM_STRING_PKCS8) == 0) {
133 } else if ((slen = pem_check_suffix(nm, "PRIVATE KEY")) > 0) {
135 ameth = EVP_PKEY_asn1_find_str(NULL, nm, slen);
144 OPENSSL_free(nm);
166 char *nm = NULL; local
173 if (!PEM_bytes_read_bio(&data, &len, &nm, PEM_STRING_PARAMETERS,
178 if ((slen = pem_check_suffix(nm, "PARAMETER
255 char *nm = NULL; local
[all...]
/freebsd-11-stable/contrib/unbound/daemon/
H A Dcachedump.h100 * @param nm: name to lookup
105 int print_deleg_lookup(RES* ssl, struct worker* worker, uint8_t* nm,
/freebsd-11-stable/sys/cddl/contrib/opensolaris/common/zfs/
H A Dzfs_comutil.c73 char *nm; local
86 nm = nvpair_name(elem);
87 if (strcmp(nm, ZPOOL_LOAD_POLICY) == 0) {
91 } else if (strcmp(nm, ZPOOL_LOAD_REWIND_POLICY) == 0) {
95 } else if (strcmp(nm, ZPOOL_LOAD_REQUEST_TXG) == 0) {
97 } else if (strcmp(nm, ZPOOL_LOAD_META_THRESH) == 0) {
99 } else if (strcmp(nm, ZPOOL_LOAD_DATA_THRESH) == 0) {
/freebsd-11-stable/contrib/groff/src/roff/troff/
H A Dreg.cpp306 symbol nm = get_name(1); local
307 if (nm.is_null()) {
311 reg *r = (reg *)number_reg_dictionary.lookup(nm);
319 number_reg_dictionary.define(nm, r);
336 symbol nm = get_name(1);
337 if (nm.is_null())
339 reg *r = (reg *)number_reg_dictionary.lookup(nm);
342 number_reg_dictionary.define(nm, r);
361 void set_number_reg(symbol nm, units n) argument
363 reg *r = (reg *)number_reg_dictionary.lookup(nm);
371 lookup_number_reg(symbol nm) argument
384 symbol nm = get_name(1); local
[all...]
/freebsd-11-stable/usr.bin/mkimg/tests/
H A Dmkimg.sh132 local nm
135 for nm in $mkimg_tests; do
136 ${nm}_body
143 local B F G S nm
149 nm="${S}_${G}_${B}_${F}"
150 atf_test_case $nm
151 eval "${nm}_body() { mkimg_test $G $B $S $F; }"
152 mkimg_tests="${mkimg_tests} ${nm}"
153 atf_add_test_case $nm
H A Dmkimg_test.sh132 local nm
135 for nm in $mkimg_tests; do
136 ${nm}_body
143 local B F G S nm
149 nm="${S}_${G}_${B}_${F}"
150 atf_test_case $nm
151 eval "${nm}_body() { mkimg_test $G $B $S $F; }"
152 mkimg_tests="${mkimg_tests} ${nm}"
153 atf_add_test_case $nm
/freebsd-11-stable/usr.sbin/ctm/mkCTM/
H A DmkCTM111 set nm [format "%s.%04d%s" $CTMname $CTMnbr $CTMsuff]
118 set r1 [catch "exec ${CTMSW}/mkctm -I ${CTMignore} -B ${CTMbogus} -l ${CTMtmp}.log -D $max_damage $CTMname $CTMnbr $CTMdate . $x1 $CTMref | md5 -p | gzip -9 > ${CTMtmp}:${nm}.gz 2>@ stderr" r2]
144 exec sh -e -c "cd $CTMcopy ; $CTMSW/ctm -v -v -v ${CTMtmp}:${nm}.gz" >& ${CTMtmp}.apply
149 exec mv ${CTMtmp}:${nm}.gz $CTMdest/.CTMtmp_${nm}.gz >&@ stdout
150 exec mv $CTMdest/.CTMtmp_${nm}.gz $CTMdest/${nm}.gz >&@ stdout
158 exec $CTMSW/ctm_smail -m $CTMmaxmsg -c $CTMmaxctm $CTMdest/${nm}.gz $CTMmail >&@ stdout
162 exec $CTMSW/ctm_smail -m $CTMmaxmsg -c $CTMmaxctm -q $CTMqueue $CTMdest/${nm}.gz $CTMqueuemail >&@ stdout
/freebsd-11-stable/sys/fs/procfs/
H A Dprocfs_ctl.c300 findname(struct namemap *nm, char *buf, int buflen) argument
303 for (; nm->nm_name; nm++)
304 if (bcmp(buf, nm->nm_name, buflen+1) == 0)
305 return (nm);
314 struct namemap *nm; local
332 nm = findname(ctlnames, sbuf_data(sb), sbuf_len(sb));
333 if (nm) {
335 error = procfs_control(td, p, nm->nm_val);
337 nm
[all...]
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/
H A Dtst.eliminate.ksh91 nm test.o | grep \$dtrace > /dev/null
97 nm test | grep \$dtrace > /dev/null
/freebsd-11-stable/gnu/usr.bin/gdb/arch/arm/
H A DMakefile10 nm.h:
11 #XXX this should be arm/nm-fbsd.h but won't until it's merged into the gdb repo
12 echo '#include "nm-fbsd.h"' > ${.TARGET}
/freebsd-11-stable/gnu/usr.bin/gdb/arch/mips/
H A DMakefile12 nm.h:
13 echo '#include "mips/nm-fbsd.h"' > ${.TARGET}

Completed in 165 milliseconds

1234567891011>>