Searched refs:nn (Results 1 - 25 of 73) sorted by relevance

123

/freebsd-current/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-current/crypto/openssl/crypto/lhash/
H A Dlhash.c89 OPENSSL_LH_NODE *n, *nn; local
97 nn = n->next;
99 n = nn;
110 OPENSSL_LH_NODE *nn, **rn; local
120 if ((nn = OPENSSL_malloc(sizeof(*nn))) == NULL) {
124 nn->data = data;
125 nn->next = NULL;
126 nn->hash = hash;
127 *rn = nn;
140 OPENSSL_LH_NODE *nn, **rn; local
294 unsigned long hash, nn; local
[all...]
/freebsd-current/contrib/ncurses/ncurses/base/
H A Dlib_insnstr.c65 size_t nn = (n > 0) ? (size_t) n : strlen(s); local
66 wchar_t *buffer = typeMalloc(wchar_t, nn + 1);
71 n3 = mbstowcs(buffer, s, nn);
/freebsd-current/contrib/ncurses/ncurses/tinfo/
H A Dmake_hash.c257 unsigned nn; local
309 nn = tableused;
314 nn = j;
319 if (nn == tableused) {
320 name_table[nn].ute_link = -1; /* end-of-hash */
321 name_table[nn].ute_name = strmalloc(list[column]);
326 SetType(nn, BOOLEAN);
327 name_table[nn].ute_index = BoolCount++;
329 SetType(nn, NUMBER);
330 name_table[nn]
[all...]
/freebsd-current/contrib/mandoc/
H A Dman_term.c154 struct roff_node *n, *nc, *nn; local
173 for (nn = NULL; n != NULL; n = n->next) {
181 if (nn == NULL && strcmp(nc->string, "NAME") == 0)
182 nn = n;
185 n = nn;
288 struct roff_node *nn; local
319 for (i = 0, nn = n->child; nn != NULL; nn = nn
414 const struct roff_node *nn; local
508 const struct roff_node *nn; local
581 struct roff_node *nn; local
817 const struct roff_node *nn; local
[all...]
H A Dman_macro.c204 const struct roff_node *nn; local
215 for (nn = man->last->parent; nn; nn = nn->parent)
216 if (nn->tok == ntok && nn->type == ROFFT_BLOCK)
246 for (nn = man->last->parent; nn; nn
[all...]
H A Dman_html.c341 const struct roff_node *nn; local
346 for (i = 0, nn = n->child; nn != NULL; nn = nn->next, i++) {
376 print_text(h, nn->string);
444 struct roff_node *nn; local
449 nn = n->type == ROFFT_BLOCK ? n : n->parent;
450 list_type = list_continues(roff_node_prev(nn), nn);
[all...]
H A Dmdoc_term.c251 struct roff_node *n, *nn; local
263 for (nn = NULL; n != NULL; n = n->next) {
268 if (nn == NULL && n->sec == SEC_NAME)
269 nn = n;
272 n = nn;
583 struct roff_node *nn; local
593 nn = n;
594 while (roff_node_prev(nn) == NULL) {
596 nn = nn
627 const struct roff_node *bl, *nn; local
1037 struct roff_node *nn; local
1054 struct roff_node *nn; local
1398 const struct roff_node *nn; local
1830 struct roff_node *nn; local
[all...]
H A Dmdoc_html.c608 struct roff_node *nn; local
613 ((nn = roff_node_next(n)) != NULL &&
614 nn->type != ROFFT_TEXT &&
615 (nn->flags & NODE_LINE) == 0))
934 struct roff_node *nn; local
952 for (nn = n; nn != NULL && comp == 0; nn = nn->parent) {
953 if (nn
1026 const struct roff_node *nn; local
1483 struct roff_node *nn; local
1549 struct roff_node *nn; local
[all...]
H A Dmdoc_validate.c433 const struct roff_node *np, *nn; local
437 nn = mdoc->last->next;
471 nn != NULL &&
472 nn->type == ROFFT_TEXT &&
473 isalpha((unsigned char)*nn->string))) {
1108 struct roff_node *nn; /* The next node after the .Tg node. */ local
1115 for (nn = n; nn != NULL; nn = nn
2767 struct roff_node *nn, *n; local
[all...]
H A Dmdoc_markdown.c798 struct roff_node *nn; local
804 if ((nn = roff_node_next(n)) != NULL) {
806 if (nn->tok == n->tok &&
807 (nn = roff_node_prev(n)) != NULL &&
808 nn->tok == n->tok)
1070 struct roff_node *nn; local
1072 if ((nn = roff_node_next(n)) != NULL && nn->tok == MDOC_Fa)
1094 struct roff_node *nn; local
1097 if (n->child == NULL && (nn
[all...]
/freebsd-current/sys/dev/nvmf/controller/
H A Dnvmft_subr.h44 const char *subnqn, int nn, uint32_t ioccsz, uint32_t iorcsz,
H A Dnvmft_subr.c184 const char *subnqn, int nn, uint32_t ioccsz, uint32_t iorcsz,
235 cdata->nn = htole32(nn);
182 _nvmf_init_io_controller_data(uint16_t cntlid, uint32_t max_io_qsize, const char *serial, const char *model, const char *firmware_version, const char *subnqn, int nn, uint32_t ioccsz, uint32_t iorcsz, struct nvme_controller_data *cdata) argument
/freebsd-current/lib/msun/ld80/
H A De_powl.c560 powil(long double x, int nn) argument
568 if( nn == 0 )
570 else if( nn < 0 )
576 if( nn == 0 )
589 if( nn < 0 )
592 n = -nn;
597 n = nn;
609 s = (2.9142135623730950L * s - 0.5L + lx) * nn * LOGE2L;
/freebsd-current/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
[all...]
/freebsd-current/contrib/smbfs/lib/smb/
H A Dnbns_rq.c66 struct nb_name nn; local
76 bzero(&nn, sizeof(nn));
77 strlcpy(nn.nn_name, name, sizeof(nn.nn_name));
78 nn.nn_scope = ctx->nb_scope;
79 nn.nn_type = NBT_SERVER;
81 rqp->nr_qdname = &nn;
H A Dctx.c509 struct nb_name nn; local
550 nn.nn_scope = ctx->ct_nb->nb_scope;
551 nn.nn_type = NBT_SERVER;
554 strlcpy(nn.nn_name, ssn->ioc_srvname, sizeof(nn.nn_name));
555 error = nb_sockaddr(sap, &nn, &saserver);
574 strlcpy(nn.nn_name, ctx->ct_locname, NB_NAMELEN);
575 nn.nn_type = NBT_WKSTA;
576 nn.nn_scope = ctx->ct_nb->nb_scope;
577 error = nb_sockaddr(NULL, &nn,
[all...]
/freebsd-current/lib/libc/net/
H A Dgetnetbynis.c189 int nn; local
216 for (nn = 4, net2 = addr; net2; net2 >>= 8) {
217 netbr[--nn] = net2 & 0xff;
220 switch (nn) {
/freebsd-current/crypto/openssl/crypto/txt_db/
H A Dtxt_db.c190 long i, j, n, nn, l, tot = 0; local
198 nn = db->num_fields;
203 for (j = 0; j < nn; j++) {
207 if (!BUF_MEM_grow_clean(buf, (int)(l * 2 + nn)))
211 for (j = 0; j < nn; j++) {
/freebsd-current/bin/test/
H A Dtest.c278 enum token nn; local
285 if ((nn = t_lex(nargc > 0 ? (--nargc, *++t_wp) : NULL)) ==
290 res = oexpr(nn);
312 nn = t_lex(nargc > 0 ? t_wp[1] : NULL);
313 if (TOKEN_TYPE(nn) == BINOP)
314 return binop(nn);
/freebsd-current/sys/arm/ti/am335x/
H A Dam335x_dmtpps.c154 struct nicknames *nn; local
156 for (nn = dmtpps_pin_nicks; nn->nick != NULL; nn++)
157 if (strcasecmp(nick, nn->nick) == 0)
158 return nn->name;
/freebsd-current/contrib/bzip2/
H A Ddecompress.c432 UInt32 nn; local
433 nn = (UInt32)(nextSym - 1);
435 if (nn < MTFL_SIZE) {
438 uc = s->mtfa[pp+nn];
439 while (nn > 3) {
440 Int32 z = pp+nn;
445 nn -= 4;
447 while (nn > 0) {
448 s->mtfa[(pp+nn)] = s->mtfa[(pp+nn)
[all...]
H A Dcompress.c364 # define BZ_ITER(nn) \
365 icv = mtfv[gs+(nn)]; \
413 # define BZ_ITUR(nn) s->rfreq[bt][ mtfv[gs+(nn)] ]++
562 # define BZ_ITAH(nn) \
563 mtfv_i = mtfv[gs+(nn)]; \
/freebsd-current/sys/libkern/
H A Dqdivrem.c212 u_long nn = COMBINE(uj0, uj1); local
213 qhat = nn / v1;
214 rhat = nn % v1;
/freebsd-current/sys/contrib/openzfs/module/os/linux/spl/
H A Dspl-generic.c339 boolean_t nn = B_FALSE; local
342 nn = B_TRUE;
350 return (nn ? -q : q);
374 boolean_t nn = B_FALSE; local
377 nn = B_TRUE;
387 if (nn != nd)
389 if (nn)

Completed in 208 milliseconds

123