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

/freebsd-10.1-release/crypto/openssl/crypto/bn/
H A Dbn_div.c194 BIGNUM *tmp, wnum, *snum, *sdiv, *res; local
245 snum = BN_CTX_get(ctx);
251 if (sdiv == NULL || res == NULL || tmp == NULL || snum == NULL)
260 if (!(BN_lshift(snum, num, norm_shift)))
262 snum->neg = 0;
266 * Since we don't know whether snum is larger than sdiv, we pad snum
269 if (snum->top <= sdiv->top + 1) {
270 if (bn_wexpand(snum, sdiv->top + 2) == NULL)
272 for (i = snum
[all...]
/freebsd-10.1-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-10.1-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-10.1-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-10.1-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-10.1-release/usr.sbin/bhyve/
H A Dpci_emul.c159 int error, bnum, snum, fnum; local
178 if (sscanf(str, "%d:%d:%d", &bnum, &snum, &fnum) != 3) {
181 if (sscanf(str, "%d:%d", &snum, &fnum) != 2) {
184 if (sscanf(str, "%d", &snum) != 1) {
185 snum = -1;
190 if (bnum < 0 || bnum >= MAXBUSES || snum < 0 || snum >= MAXSLOTS ||
200 si = &bi->slotinfo[snum];
204 snum, fnum);
210 snum, fnu
[all...]
/freebsd-10.1-release/crypto/openssl/crypto/
H A Dcryptlib.c464 unsigned char snum = sizeof(id->ptr); local
465 while (snum--)
466 accum += *(src++) * hash_coeffs[(snum + dnum) & 7];
/freebsd-10.1-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 165 milliseconds