Searched refs:nname (Results 1 - 20 of 20) sorted by relevance

/freebsd-current/usr.bin/gprof/
H A Dkernel.c37 nname = 0;
39 nname++;
41 if ((nl = (nltype *)calloc(nname + 1, sizeof(nltype))) == NULL)
H A Dlookup.c51 for ( low = 0 , high = nname - 1 ; low != high ; ) {
59 printf( "[nllookup] %d (%d) probes\n" , probes , nname-1 );
79 nname-1 );
H A Delf.c99 nname = 0;
102 nname++;
105 if ((nl = (nltype *)calloc(nname + 1, sizeof(nltype))) == NULL)
H A Darcs.c196 topsortnlp = (nltype **) calloc( nname , sizeof(nltype *) );
199 for ( index = 0 ; index < nname ; index += 1 ) {
202 qsort( topsortnlp , nname , sizeof(nltype *) , topcmp );
206 for ( index = 0 ; index < nname ; index += 1 ) {
232 timesortnlp = (nltype **) calloc( nname + ncycle , sizeof(nltype *) );
235 for ( index = 0 ; index < nname ; index++ ) {
239 timesortnlp[nname+index-1] = &cyclenl[index];
241 qsort( timesortnlp , nname + ncycle , sizeof(nltype *) , totalcmp );
242 for ( index = 0 ; index < nname + ncycle ; index++ ) {
254 for ( index = 0 ; index < nname ; inde
[all...]
H A Dprintgprof.c55 sortednlp = (nltype **) calloc( nname , sizeof(nltype *) );
58 for ( idx = 0 ; idx < nname ; idx += 1 ) {
61 qsort( sortednlp , nname , sizeof(nltype *) , timecmp );
62 for ( idx = 0 ; idx < nname ; idx += 1 ) {
224 for ( idx = 0 ; idx < nname + ncycle ; idx ++ ) {
707 namesortnlp = (nltype **) calloc( nname + ncycle , sizeof(nltype *) );
710 for ( idx = 0 , nnames = 0 ; idx < nname ; idx++ ) {
H A Dgprof.h139 EXTERN int nname; /* the number of function names */ variable
H A Dgprof.c154 qsort(nl, nname, sizeof(nltype), valcmp);
498 for (j = j - 1; j < nname; j++) {
/freebsd-current/bin/pax/
H A Dtables.h91 char *nname; /* new name typed in by the user */ member in struct:namt
H A Dpat_rep.c839 char nname[PAXPATHLEN+1]; /* final result of all replacements */ local
845 * replacement. We build up the final result in nname. inpt points at
853 outpt = nname;
940 name, nname);
948 if (*nname == '\0')
952 (void)fprintf(stderr,"%s >> %s\n", name, nname);
959 if (*nname == '\0')
961 *nlen = l_strncpy(name, nname, PAXPATHLEN + 1);
H A Dtables.c502 add_name(char *oname, int onamelen, char *nname) argument
532 if (strcmp(nname, pt->nname) == 0)
535 free(pt->nname);
536 if ((pt->nname = strdup(nname)) == NULL) {
549 if ((pt->nname = strdup(nname)) != NULL) {
593 *onamelen = l_strncpy(oname, pt->nname, onamesize - 1);
/freebsd-current/usr.sbin/jls/
H A Djls.c348 char *nname, *p; local
350 nname = malloc(strlen(name) + 3);
351 if (nname == NULL)
355 sprintf(nname, "%.*s.no%s", (int)(p - name), name, p + 1);
357 sprintf(nname, "no%s", name);
358 return nname;
364 char *nname, *p; local
369 nname = malloc(strlen(name) - 1);
370 if (nname == NULL)
373 sprintf(nname, "
382 char *nname, *xo_nname; local
[all...]
/freebsd-current/tools/tools/locale/tools/
H A Dfinalize81 nname=`echo $oldname | awk '{ split($0, a, "_"); print a[1]"_"a[3]"@"a[2];} '`
82 mv -f ${oldname}.src ${nname}.src
83 sed -i '' -e "s/${oldname}/${nname}/g" Makefile
/freebsd-current/lib/libc/nameser/
H A Dns_name.c714 /* Find the number of octets an nname takes up, including the root label.
719 ns_name_length(ns_nname_ct nname, size_t namesiz) { argument
720 ns_nname_ct orig = nname;
723 while (namesiz-- > 0 && (n = *nname++) != 0) {
732 nname += n;
735 return (nname - orig);
738 /* Compare two nname's for equality. Return -1 on error (setting errno).
784 /* Build an array of <base,len> tuples from an nname, top-down order.
788 ns_name_map(ns_nname_ct nname, size_t namelen, ns_namemap_t map, int mapsize) { argument
792 n = *nname
838 ns_name_labels(ns_nname_ct nname, size_t namesiz) argument
[all...]
H A Dns_parse.c230 rr->nname, NS_MAXNNAME, &rr->nnamel);
/freebsd-current/lib/libjail/
H A Djail.c491 char *nname; local
512 nname = jp[j].jp_flags & JP_BOOL
515 if (nname == NULL) {
520 jiov[i - 1].iov_base = nname;
521 jiov[i - 1].iov_len = strlen(nname) + 1;
874 char *p, *name, *nname; local
909 nname = nononame(name);
910 if (nname == NULL) {
917 name = alloca(strlen(nname) + 1);
918 strcpy(name, nname);
1084 char *nname, *p; local
1102 char *p, *nname; local
[all...]
/freebsd-current/crypto/openssl/crypto/ec/
H A Deck_prn.c99 const char *nname; local
111 nname = EC_curve_nid2nist(nid);
112 if (nname) {
115 if (BIO_printf(bp, "NIST CURVE: %s\n", nname) <= 0)
/freebsd-current/contrib/bsnmp/snmp_target/
H A Dtarget_snmp.c524 char nname[SNMP_ADM_STR32_SIZ]; local
580 target_decode_index(&val->var, sub, nname) < 0)
582 if ((notify = target_new_notify(nname)) == NULL)
758 char nname[SNMP_ADM_STR32_SIZ]; local
761 if (target_decode_index(oid, sub, nname) < 0)
766 if (strcmp(nname, notify->name) == 0)
775 char nname[SNMP_ADM_STR32_SIZ]; local
781 if (target_decode_index(oid, sub, nname) < 0)
786 if (strcmp(nname, notify->name) == 0)
/freebsd-current/contrib/bsnmp/snmpd/
H A Dtrap.c835 target_new_notify(char *nname) argument
841 if (strcmp(nname, notify->name) == 0)
848 strlcpy(notify->name, nname, sizeof(notify->name));
851 strcmp(nname, prev->name) < 0) {
857 if ((cmp = strcmp(nname, temp->name)) <= 0)
/freebsd-current/include/arpa/
H A Dnameser.h163 ns_nname nname; member in struct:__ns_rr2
174 #define ns_rr_nname(rr) ((const ns_nname_t)(rr).nname)
/freebsd-current/contrib/unbound/services/
H A Dauthzone.c3458 char zname[256], qname[256], nname[256], cename[256], local
3467 nname, sizeof(nname));
3468 else snprintf(nname, sizeof(nname), "NULL");
3477 "ce %s, rrset %s", zname, qname, tpstr, nname,

Completed in 338 milliseconds