Home
last modified time | relevance | path

Searched refs:hn (Results 1 – 25 of 58) sorted by relevance

123

/netbsd-src/external/lgpl3/gmp/dist/mpn/generic/
H A Dtoom_eval_pm2exp.c43 mp_srcptr xp, mp_size_t n, mp_size_t hn, unsigned shift, in mpn_toom_eval_pm2exp() argument
55 ASSERT (hn > 0); in mpn_toom_eval_pm2exp()
56 ASSERT (hn <= n); in mpn_toom_eval_pm2exp()
72 cy = mpn_addlsh_n (tp, tp, xp+k*n, hn, k*shift); in mpn_toom_eval_pm2exp()
73 MPN_INCR_U (tp + hn, n+1 - hn, cy); in mpn_toom_eval_pm2exp()
77 cy = mpn_addlsh_n (xp2, xp2, xp+k*n, hn, k*shift); in mpn_toom_eval_pm2exp()
78 MPN_INCR_U (xp2 + hn, n+1 - hn, cy); in mpn_toom_eval_pm2exp()
97 xm2[hn] = mpn_lshift (xm2, xp + k*n, hn, k*shift); in mpn_toom_eval_pm2exp()
99 mpn_add (tp, tp, n+1, xm2, hn+1); in mpn_toom_eval_pm2exp()
101 mpn_add (xp2, xp2, n+1, xm2, hn+1); in mpn_toom_eval_pm2exp()
H A Dtoom_eval_pm2.c70 mp_srcptr xp, mp_size_t n, mp_size_t hn, mp_ptr tp) in mpn_toom_eval_pm2() argument
79 ASSERT (hn > 0); in mpn_toom_eval_pm2()
80 ASSERT (hn <= n); in mpn_toom_eval_pm2()
86 DO_addlsh2 (xp2, xp + (k-2) * n, xp + k * n, hn, cy); in mpn_toom_eval_pm2()
87 if (hn != n) in mpn_toom_eval_pm2()
88 cy = mpn_add_1 (xp2 + hn, xp + (k-2) * n + hn, n - hn, cy); in mpn_toom_eval_pm2()
H A Dset_str.c144 mp_size_t ln, hn, n, sn; in mpn_dc_set_str() local
160 hn = mpn_bc_set_str (tp, str, len_hi, powtab->base); in mpn_dc_set_str()
162 hn = mpn_dc_set_str (tp, str, len_hi, powtab - 1, rp); in mpn_dc_set_str()
166 if (hn == 0) in mpn_dc_set_str()
174 if (powtab->n > hn) in mpn_dc_set_str()
175 mpn_mul (rp + sn, powtab->p, powtab->n, tp, hn); in mpn_dc_set_str()
177 mpn_mul (rp + sn, tp, hn, powtab->p, powtab->n); in mpn_dc_set_str()
192 n = hn + powtab->n + sn; in mpn_dc_set_str()
H A Dtoom_eval_pm1.c43 mp_srcptr xp, mp_size_t n, mp_size_t hn, mp_ptr tp) in mpn_toom_eval_pm1() argument
50 ASSERT (hn > 0); in mpn_toom_eval_pm1()
51 ASSERT (hn <= n); in mpn_toom_eval_pm1()
65 ASSERT_NOCARRY (mpn_add (tp, tp, n+1, xp+k*n, hn)); in mpn_toom_eval_pm1()
67 ASSERT_NOCARRY (mpn_add (xp1, xp1, n+1, xp+k*n, hn)); in mpn_toom_eval_pm1()
/netbsd-src/external/gpl3/gcc.old/dist/libcpp/
H A Dpch.c50 write_macdef (cpp_reader *pfile, cpp_hashnode *hn, void *file_p) in write_macdef() argument
54 switch (hn->type) in write_macdef()
57 if (! (hn->flags & NODE_POISONED)) in write_macdef()
66 if (hn->value.macro->kind != cmk_assert) in write_macdef()
72 s.name_length = NODE_LEN (hn); in write_macdef()
73 s.flags = hn->flags & NODE_POISONED; in write_macdef()
77 defn = NODE_NAME (hn); in write_macdef()
82 defn = cpp_macro_definition (pfile, hn); in write_macdef()
125 save_idents (cpp_reader *pfile ATTRIBUTE_UNUSED, cpp_hashnode *hn, void *ss_p) in save_idents() argument
129 if (hn->type != NT_VOID) in save_idents()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libcpp/
H A Dpch.cc50 write_macdef (cpp_reader *pfile, cpp_hashnode *hn, void *file_p) in write_macdef() argument
54 switch (hn->type) in write_macdef()
57 if (! (hn->flags & NODE_POISONED)) in write_macdef()
66 if (hn->value.macro->kind != cmk_assert) in write_macdef()
72 s.name_length = NODE_LEN (hn); in write_macdef()
73 s.flags = hn->flags & NODE_POISONED; in write_macdef()
77 defn = NODE_NAME (hn); in write_macdef()
82 defn = cpp_macro_definition (pfile, hn); in write_macdef()
125 save_idents (cpp_reader *pfile ATTRIBUTE_UNUSED, cpp_hashnode *hn, void *ss_p) in save_idents() argument
129 if (hn->type != NT_VOID) in save_idents()
[all …]
/netbsd-src/external/bsd/am-utils/dist/fsinfo/
H A Dwr_fstab.c53 static void write_aix1_dkrmount(FILE *ef, char *hn, fsmount *fp);
55 static void write_aix3_dkrmount(FILE *ef, char *hn, fsmount *fp);
57 static int write_dkrmount(FILE *ef, qelem *q, char *hn, void (*output) (FILE *, char *, fsmount *));
59 static void write_generic_dkrmount(FILE *ef, char *hn, fsmount *fp);
61 static void write_ultrix_dkrmount(FILE *ef, char *hn, fsmount *fp);
68 void (*op_mount) (FILE *ef, char *hn, fsmount *fp);
122 write_aix1_dkrmount(FILE *ef, char *hn, fsmount *fp) in write_aix1_dkrmount() argument
130 domain_strip(h, hn); in write_aix1_dkrmount()
171 write_aix3_dkrmount(FILE *ef, char *hn, fsmount *fp) in write_aix3_dkrmount() argument
175 domain_strip(h, hn); in write_aix3_dkrmount()
[all …]
H A Dwr_bparam.c54 write_nfsname(FILE *ef, fsmount *fp, char *hn) in write_nfsname() argument
59 domain_strip(h, hn); in write_nfsname()
H A Dfsi_util.c193 gen_hdr(FILE *ef, char *hn) in gen_hdr() argument
195 fprintf(ef, "# *** NOTE: Only for use on %s\n", hn); in gen_hdr()
271 pref_open(char *pref, char *hn, void (*hdr) (FILE *, char *), char *arg) in pref_open() argument
276 xsnprintf(p, sizeof(p), "%s%s", pref, hn); in pref_open()
277 fsi_log("Writing %s info for %s to %s", pref, hn, p); in pref_open()
H A Dfsinfo.h42 extern FILE *pref_open(char *pref, char *hn, void (*hdr) (FILE *, char *), char *arg);
87 extern void gen_hdr(FILE *ef, char *hn);
H A Dfsi_analyze.c110 compute_hostpath(char *hn) in compute_hostpath() argument
116 xstrlcpy(p, hn, MAXPATHLEN); in compute_hostpath()
131 fsi_log("hostpath of '%s' is '%s'", hn, path); in compute_hostpath()
/netbsd-src/external/gpl2/lvm2/dist/daemons/clvmd/
H A Dclvmd-gulm.c610 struct dm_hash_node *hn; in _csid_from_name() local
613 dm_hash_iterate(hn, node_hash) in _csid_from_name()
615 ninfo = dm_hash_get_data(node_hash, hn); in _csid_from_name()
618 memcpy(csid, dm_hash_get_key(node_hash, hn), GULM_MAX_CSID_LEN); in _csid_from_name()
673 struct dm_hash_node *hn; in _cluster_do_node_callback() local
677 dm_hash_iterate(hn, node_hash) in _cluster_do_node_callback()
682 ninfo = dm_hash_get_data(node_hash, hn); in _cluster_do_node_callback()
683 memcpy(csid, dm_hash_get_key(node_hash, hn), GULM_MAX_CSID_LEN); in _cluster_do_node_callback()
H A Dclvmd-corosync.c442 struct dm_hash_node *hn; in _cluster_do_node_callback() local
446 dm_hash_iterate(hn, node_hash) in _cluster_do_node_callback()
450 ninfo = dm_hash_get_data(node_hash, hn); in _cluster_do_node_callback()
451 memcpy(csid, dm_hash_get_key(node_hash, hn), COROSYNC_CSID_LEN); in _cluster_do_node_callback()
H A Dclvmd-openais.c467 struct dm_hash_node *hn; in _cluster_do_node_callback() local
471 dm_hash_iterate(hn, node_hash) in _cluster_do_node_callback()
475 ninfo = dm_hash_get_data(node_hash, hn); in _cluster_do_node_callback()
476 memcpy(csid, dm_hash_get_key(node_hash, hn), OPENAIS_CSID_LEN); in _cluster_do_node_callback()
/netbsd-src/external/gpl2/dtc/dist/tests/
H A Dreferences.c69 uint32_t h1, h2, h4, h5, h6, hn; in main() local
120 err = fdt_generate_phandle(fdt, &hn); in main()
122 FAIL("generated invalid phandle 0x%x\n", hn); in main()
/netbsd-src/external/bsd/libbind/dist/irs/
H A Ddns_p.h29 #define maybe_hnok(res, hn) maybe_ok((res), (hn), res_hnok) argument
/netbsd-src/external/gpl3/gcc.old/dist/contrib/header-tools/
H A Dreduce-headers150 hn = normalize_header (h)
151 if hn not in headers_list:
152 headers_list.append (hn)
153 if header_dict.get(hn):
154 for y in ii_include_list (header_dict[hn]):
/netbsd-src/external/gpl3/gcc/dist/contrib/header-tools/
H A Dreduce-headers150 hn = normalize_header (h)
151 if hn not in headers_list:
152 headers_list.append (hn)
153 if header_dict.get(hn):
154 for y in ii_include_list (header_dict[hn]):
/netbsd-src/external/bsd/openldap/dist/tests/data/tls/
H A Dcreate-crt.sh50 hn=$(hostname -f)
51 sed -e "s;@HOSTNAME@;$hn;" -e "s;@KEY_BITS@;$KEY_BITS;" conf/openssl.cnf > ./openssl.cnf
/netbsd-src/usr.sbin/bootp/bootpd/
H A Dbootptab.mcs17 # hn -- host name set for client
48 :hn:dn="mc.com":\
H A Dbootptab.cmu18 # hn -- host name set for client
46 :hn:dn=cmu.edu:\
/netbsd-src/external/cddl/dtracetoolkit/dist/Bin/
H A Ddvmstat69 while getopts hn:p: name
/netbsd-src/external/cddl/dtracetoolkit/dist/
H A Ddvmstat69 while getopts hn:p: name
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dchkformat.d242 case Format.hn: // pointer to short in checkPrintfFormat()
403 case Format.hn: in checkScanfFormat()
796 hn, // pointer to short enumerator
948 lm == 'h' ? Format.hn :
985 assert(parseGenericFormatSpecifier("hn", idx, genSpecifier) == Format.hn);
1056 assert(parsePrintfFormatSpecifier("%hn", idx, widthStar, precisionStar) == Format.hn);
/netbsd-src/crypto/external/bsd/heimdal/dist/lib/hx509/
H A Dcert.c2503 heim_printable_string hn; in hx509_verify_hostname() local
2504 hn.data = rk_UNCONST(hostname); in hx509_verify_hostname()
2505 hn.length = strlen(hostname); in hx509_verify_hostname()
2507 if (der_printable_string_cmp(&san.val[j].u.dNSName, &hn) == 0) { in hx509_verify_hostname()
2532 heim_printable_string hn; in hx509_verify_hostname() local
2533 hn.data = rk_UNCONST(hostname); in hx509_verify_hostname()
2534 hn.length = strlen(hostname); in hx509_verify_hostname()
2536 if (der_printable_string_cmp(&ds->u.printableString, &hn) == 0) in hx509_verify_hostname()
2541 heim_ia5_string hn; in hx509_verify_hostname() local
2542 hn.data = rk_UNCONST(hostname); in hx509_verify_hostname()
[all …]

123