Searched refs:snum (Results 1 - 11 of 11) sorted by relevance

/freebsd-9.3-release/crypto/openssl/crypto/bn/
H A Dbn_div.c194 BIGNUM *tmp, wnum, *snum, *sdiv, *res; local
240 snum = BN_CTX_get(ctx);
246 if (sdiv == NULL || res == NULL || tmp == NULL || snum == NULL)
255 if (!(BN_lshift(snum, num, norm_shift)))
257 snum->neg = 0;
259 num_n = snum->top;
262 * Lets setup a 'window' into snum This is the part that corresponds to
266 wnum.d = &(snum->d[loop]);
271 wnum.dmax = snum->dmax - loop; /* so we don't step out of bounds */
278 /* pointer to the 'top' of snum */
456 BIGNUM *tmp, wnum, *snum, *sdiv, *res; local
[all...]
/freebsd-9.3-release/contrib/tcsh/
H A Dtw.help.c165 cleanf(int snum) argument
167 USE(snum);
H A Dsh.hist.c1227 Char *snum; local
1238 if (((snum = varval(STRsavehist)) == STRNULL) &&
1239 ((snum = varval(STRhistory)) == STRNULL))
1240 snum = STRmaxint;
1286 dumphist[2] = snum;
H A Ded.init.c123 window_change(int snum) argument
125 USE(snum);
H A Dsh.dir.c1363 Char *snum; local
1384 if ((snum = varval(STRsavedirs)) == STRNULL || snum[0] == '\0')
1387 num = (unsigned int) atoi(short2str(snum));
H A Dsh.sem.c754 vffree(int snum) argument
756 USE(snum);
/freebsd-9.3-release/contrib/gcc/
H A Ddouble-int.c88 unsigned HOST_WIDE_INT snum; local
91 snum = cst.low;
95 snum = (unsigned HOST_WIDE_INT) cst.high;
97 if (((snum >> (prec - 1)) & 1) == 1)
/freebsd-9.3-release/sys/dev/speaker/
H A Dspkr.c204 register int sound, silence, snum = 1, sdenom = 1; local
209 snum *= NUM_MULT;
217 rest(whole * snum / (value * sdenom));
219 sound = (whole * snum) / (value * sdenom)
221 silence = whole * (FILLTIME-fill) * snum / (FILLTIME * value * sdenom);
/freebsd-9.3-release/usr.sbin/faithd/
H A Dfaithd.c151 char sbuf[NI_MAXSERV], snum[NI_MAXSERV]; local
189 snum, sizeof(snum), NI_NUMERICHOST) != 0)
190 snprintf(snum, sizeof(snum), "?");
192 snprintf(logname, sizeof(logname), "faithd %s", snum);
193 snprintf(procname, sizeof(procname), "accepting port %s", snum);
/freebsd-9.3-release/sys/contrib/rdma/
H A Drdma_cma.c1916 unsigned short snum)
1927 ret = kvl_alloc_above(ps, bind_list, snum, &port);
1933 if (port != snum) {
1998 unsigned short snum; local
2001 snum = ntohs(sin->sin_port);
2002 if (snum <= V_ipport_reservedhigh && snum >= V_ipport_reservedlow &&
2006 bind_list = kvl_lookup(ps, snum);
2008 return cma_alloc_port(ps, id_priv, snum);
1915 cma_alloc_port(struct kvl *ps, struct rdma_id_private *id_priv, unsigned short snum) argument
/freebsd-9.3-release/sys/ofed/drivers/infiniband/core/
H A Dcma.c2118 unsigned short snum)
2128 ret = idr_get_new_above(ps, bind_list, snum, &port);
2134 if (port != snum) {
2205 unsigned short snum; local
2208 snum = ntohs(sin->sin_port);
2210 if (snum < PROT_SOCK && !capable(CAP_NET_BIND_SERVICE))
2214 bind_list = idr_find(ps, snum);
2216 return cma_alloc_port(ps, id_priv, snum);
2117 cma_alloc_port(struct idr *ps, struct rdma_id_private *id_priv, unsigned short snum) argument

Completed in 195 milliseconds