Home
last modified time | relevance | path

Searched refs:nn (Results 1 – 25 of 160) sorted by relevance

1234567

/freebsd/crypto/openssl/crypto/lhash/
H A Dlhash.c89 OPENSSL_LH_NODE *n, *nn; in OPENSSL_LH_flush() local
97 nn = n->next; in OPENSSL_LH_flush()
99 n = nn; in OPENSSL_LH_flush()
110 OPENSSL_LH_NODE *nn, **rn; in OPENSSL_LH_insert() local
120 if ((nn = OPENSSL_malloc(sizeof(*nn))) == NULL) { in OPENSSL_LH_insert()
124 nn->data = data; in OPENSSL_LH_insert()
125 nn->next = NULL; in OPENSSL_LH_insert()
126 nn->hash = hash; in OPENSSL_LH_insert()
127 *rn = nn; in OPENSSL_LH_insert()
140 OPENSSL_LH_NODE *nn, **rn; in OPENSSL_LH_delete() local
[all …]
/freebsd/sys/crypto/openssl/
H A Dossl_sha256.c74 unsigned int nn; \
77 for (nn=0;nn<SHA224_DIGEST_LENGTH/4;nn++) \
78 { ll=(c)->h[nn]; (void)HOST_l2c(ll,(s)); } \
81 for (nn=0;nn<SHA256_DIGEST_LENGTH/4;nn++) \
82 { ll=(c)->h[nn]; (void)HOST_l2c(ll,(s)); } \
/freebsd/crypto/libecc/src/examples/sig/dsa/
H A Ddsa.h36 nn p;
37 nn q;
38 nn g;
39 nn y;
49 nn p;
50 nn q;
51 nn g;
52 nn x;
/freebsd/crypto/libecc/src/examples/sig/rsa/
H A Drsa.h34 nn n;
35 nn e;
63 nn n;
64 nn d;
69 nn n;
70 nn d;
71 nn p;
72 nn q;
77 nn r;
78 nn d;
[all …]
/freebsd/contrib/ncurses/ncurses/tinfo/
H A Dmake_hash.c257 unsigned nn; in main() local
309 nn = tableused; in main()
314 nn = j; in main()
319 if (nn == tableused) { in main()
320 name_table[nn].ute_link = -1; /* end-of-hash */ in main()
321 name_table[nn].ute_name = strmalloc(list[column]); in main()
326 SetType(nn, BOOLEAN); in main()
327 name_table[nn].ute_index = BoolCount++; in main()
329 SetType(nn, NUMBER); in main()
330 name_table[nn].ute_index = NumCount++; in main()
[all …]
/freebsd/contrib/mandoc/
H A Dman_term.c155 struct roff_node *n, *nc, *nn; in terminal_man() local
170 for (nn = NULL; n != NULL; n = n->next) { in terminal_man()
178 if (nn == NULL && strcmp(nc->string, "NAME") == 0) in terminal_man()
179 nn = n; in terminal_man()
182 n = nn; in terminal_man()
277 struct roff_node *nn; in pre_alternate() local
308 for (i = 0, nn = n->child; nn != NULL; nn = nn->next, i = 1 - i) { in pre_alternate()
310 assert(nn->type == ROFFT_TEXT); in pre_alternate()
311 term_word(p, nn->string); in pre_alternate()
312 if (nn->flags & NODE_EOS) in pre_alternate()
[all …]
H A Dman_macro.c209 const struct roff_node *nn; in blk_close() local
220 for (nn = man->last->parent; nn; nn = nn->parent) in blk_close()
221 if (nn->tok == ntok && nn->type == ROFFT_BLOCK) in blk_close()
251 for (nn = man->last->parent; nn; nn = nn->parent) in blk_close()
252 if (nn->tok == ntok && nn->type == ROFFT_BLOCK && ! --nrew) in blk_close()
255 if (nn == NULL) { in blk_close()
271 man_unscope(man, nn); in blk_close()
273 if (tok == MAN_RE && nn->head->aux > 0) in blk_close()
274 roff_setreg(man->roff, "an-margin", nn->head->aux, '-'); in blk_close()
294 if (tok == MAN_YS && man->last == nn) { in blk_close()
H A Dman_html.c345 const struct roff_node *nn; in man_alt_pre() local
350 for (i = 0, nn = n->child; nn != NULL; nn = nn->next, i++) { in man_alt_pre()
380 print_text(h, nn->string); in man_alt_pre()
450 struct roff_node *nn; in man_IP_pre() local
455 nn = n->type == ROFFT_BLOCK ? n : n->parent; in man_IP_pre()
456 list_type = list_continues(roff_node_prev(nn), nn); in man_IP_pre()
459 list_type = list_continues(nn, roff_node_next(nn)); in man_IP_pre()
509 nn = n->child; in man_IP_pre()
510 while (nn != NULL && (NODE_LINE & nn->flags) == 0) in man_IP_pre()
511 nn = nn->next; in man_IP_pre()
[all …]
H A Dmdoc_validate.c433 const struct roff_node *np, *nn; in check_text_em() local
437 nn = mdoc->last->next; in check_text_em()
471 nn != NULL && in check_text_em()
472 nn->type == ROFFT_TEXT && in check_text_em()
473 isalpha((unsigned char)*nn->string))) { in check_text_em()
1108 struct roff_node *nn; /* The next node after the .Tg node. */ in post_tg() local
1115 for (nn = n; nn != NULL; nn = nn->parent) { in post_tg()
1116 if (nn->type != ROFFT_HEAD && nn->type != ROFFT_BODY && in post_tg()
1117 nn->type != ROFFT_TAIL && nn->next != NULL) { in post_tg()
1118 nn = nn->next; in post_tg()
[all …]
H A Dmdoc_term.c251 struct roff_node *n, *nn; in terminal_mdoc() local
262 for (nn = NULL; n != NULL; n = n->next) { in terminal_mdoc()
267 if (nn == NULL && n->sec == SEC_NAME) in terminal_mdoc()
268 nn = n; in terminal_mdoc()
271 n = nn; in terminal_mdoc()
581 struct roff_node *nn; in print_bvspace() local
591 nn = n; in print_bvspace()
592 while (roff_node_prev(nn) == NULL) { in print_bvspace()
594 nn = nn->parent; in print_bvspace()
595 if (nn->type == ROFFT_ROOT) in print_bvspace()
[all …]
H A Dmdoc_html.c613 struct roff_node *nn; in mdoc_fl_pre() local
618 ((nn = roff_node_next(n)) != NULL && in mdoc_fl_pre()
619 nn->type != ROFFT_TEXT && in mdoc_fl_pre()
620 (nn->flags & NODE_LINE) == 0)) in mdoc_fl_pre()
947 struct roff_node *nn; in mdoc_bd_pre() local
965 for (nn = n; nn != NULL && comp == 0; nn = nn->parent) { in mdoc_bd_pre()
966 if (nn->type != ROFFT_BLOCK) in mdoc_bd_pre()
968 if (nn->tok == MDOC_Sh || nn->tok == MDOC_Ss) in mdoc_bd_pre()
970 if (roff_node_prev(nn) != NULL) in mdoc_bd_pre()
1039 const struct roff_node *nn; in mdoc_fa_pre() local
[all …]
/freebsd/crypto/libecc/include/libecc/
H A Dmeson.build112 'nn/nn_mul_redc1.h',
113 'nn/nn_mul.h',
114 'nn/nn_logical.h',
115 'nn/nn_add.h',
116 'nn/nn_modinv.h',
117 'nn/nn_div_public.h',
118 'nn/nn_rand.h',
119 'nn/nn_add.h',
120 'nn/nn_config.h',
121 'nn/nn_mul_public.h',
[all …]
/freebsd/crypto/libecc/include/libecc/fp/
H A Dfp.h37 nn p;
44 nn r;
47 nn r_square;
52 nn p_normalized;
74 nn fp_val;
/freebsd/lib/msun/ld80/
H A De_powl.c560 powil(long double x, int nn) in powil() argument
568 if( nn == 0 ) in powil()
570 else if( nn < 0 ) in powil()
576 if( nn == 0 ) in powil()
589 if( nn < 0 ) in powil()
592 n = -nn; in powil()
597 n = nn; in powil()
609 s = (2.9142135623730950L * s - 0.5L + lx) * nn * LOGE2L; in powil()
/freebsd/crypto/openssl/crypto/sha/
H A Dsha256.c82 unsigned int nn; \
85 for (nn=0;nn<SHA224_DIGEST_LENGTH/4;nn++) \
86 { ll=(c)->h[nn]; (void)HOST_l2c(ll,(s)); } \
89 for (nn=0;nn<SHA256_DIGEST_LENGTH/4;nn++) \
90 { ll=(c)->h[nn]; (void)HOST_l2c(ll,(s)); } \
95 for (nn=0;nn<(c)->md_len/4;nn++) \
96 { ll=(c)->h[nn]; (void)HOST_l2c(ll,(s)); } \
/freebsd/contrib/smbfs/lib/smb/
H A Dnbns_rq.c66 struct nb_name nn; in nbns_resolvename() local
76 bzero(&nn, sizeof(nn)); in nbns_resolvename()
77 strlcpy(nn.nn_name, name, sizeof(nn.nn_name)); in nbns_resolvename()
78 nn.nn_scope = ctx->nb_scope; in nbns_resolvename()
79 nn.nn_type = NBT_SERVER; in nbns_resolvename()
81 rqp->nr_qdname = &nn; in nbns_resolvename()
H A Dctx.c509 struct nb_name nn; in smb_ctx_resolve() local
550 nn.nn_scope = ctx->ct_nb->nb_scope; in smb_ctx_resolve()
551 nn.nn_type = NBT_SERVER; in smb_ctx_resolve()
554 strlcpy(nn.nn_name, ssn->ioc_srvname, sizeof(nn.nn_name)); in smb_ctx_resolve()
555 error = nb_sockaddr(sap, &nn, &saserver); in smb_ctx_resolve()
574 strlcpy(nn.nn_name, ctx->ct_locname, NB_NAMELEN); in smb_ctx_resolve()
575 nn.nn_type = NBT_WKSTA; in smb_ctx_resolve()
576 nn.nn_scope = ctx->ct_nb->nb_scope; in smb_ctx_resolve()
577 error = nb_sockaddr(NULL, &nn, &salocal); in smb_ctx_resolve()
/freebsd/contrib/bzip2/
H A Ddecompress.c432 UInt32 nn; in BZ2_decompress() local
433 nn = (UInt32)(nextSym - 1); in BZ2_decompress()
435 if (nn < MTFL_SIZE) { in BZ2_decompress()
438 uc = s->mtfa[pp+nn]; in BZ2_decompress()
439 while (nn > 3) { in BZ2_decompress()
440 Int32 z = pp+nn; in BZ2_decompress()
445 nn -= 4; in BZ2_decompress()
447 while (nn > 0) { in BZ2_decompress()
448 s->mtfa[(pp+nn)] = s->mtfa[(pp+nn)-1]; nn--; in BZ2_decompress()
453 lno = nn / MTFL_SIZE; in BZ2_decompress()
[all …]
/freebsd/contrib/ncurses/ncurses/base/
H A Dlib_insnstr.c65 size_t nn = (n > 0) ? (size_t) n : strlen(s); in NCURSES_EXPORT() local
66 wchar_t *buffer = typeMalloc(wchar_t, nn + 1); in NCURSES_EXPORT()
71 n3 = mbstowcs(buffer, s, nn); in NCURSES_EXPORT()
/freebsd/usr.bin/localedef/
H A Dcharmap.c338 char *nn; in add_charmap_range() local
339 (void) asprintf(&nn, "%s%0*u", s, ls - si, i); in add_charmap_range()
340 if (nn == NULL) { in add_charmap_range()
345 add_charmap_impl(nn, wc, 1); in add_charmap_range()
/freebsd/crypto/libecc/include/libecc/nn/
H A Dnn.h71 } nn; typedef
73 typedef nn *nn_t;
74 typedef const nn *nn_src_t;
/freebsd/sys/arm/ti/am335x/
H A Dam335x_dmtpps.c154 struct nicknames *nn; in dmtpps_translate_nickname() local
156 for (nn = dmtpps_pin_nicks; nn->nick != NULL; nn++) in dmtpps_translate_nickname()
157 if (strcasecmp(nick, nn->nick) == 0) in dmtpps_translate_nickname()
158 return nn->name; in dmtpps_translate_nickname()
/freebsd/crypto/libecc/src/nn/
H A Dnn_mod_pow.c41 nn T[3]; in _nn_exp_monty_ladder_ltr()
42 nn mask; in _nn_exp_monty_ladder_ltr()
202 nn _out; in _nn_mod_pow()
224 nn _out; in _nn_mod_pow_redc_aliased()
264 nn _mod; in nn_mod_pow_redc()
306 nn r, r_square; in nn_mod_pow()
/freebsd/contrib/libucl/tests/basic/
H A D4.in30 post-install : "cd /usr/local\nn",
31 pre-deinstall : "cd /usr/local\nn",
32 post-deinstall : "cd /usr/local\nn",
H A D4.res37 post-install = "cd /usr/local\nn";
38 pre-deinstall = "cd /usr/local\nn";
39 post-deinstall = "cd /usr/local\nn";

1234567