Home
last modified time | relevance | path

Searched full:snum (Results 1 – 17 of 17) sorted by relevance

/freebsd/crypto/openssl/crypto/bn/
H A Dbn_div.c268 BIGNUM *tmp, *snum, *sdiv, *res; in bn_div_fixed_top() local
283 snum = BN_CTX_get(ctx); in bn_div_fixed_top()
300 if (!(bn_lshift_fixed_top(snum, num, norm_shift))) in bn_div_fixed_top()
304 num_n = snum->top; in bn_div_fixed_top()
308 if (bn_wexpand(snum, div_n + 1) == NULL) in bn_div_fixed_top()
310 memset(&(snum->d[num_n]), 0, (div_n - num_n + 1) * sizeof(BN_ULONG)); in bn_div_fixed_top()
311 snum->top = num_n = div_n + 1; in bn_div_fixed_top()
316 * Lets setup a 'window' into snum This is the part that corresponds to in bn_div_fixed_top()
319 wnum = &(snum->d[loop]); in bn_div_fixed_top()
320 wnumtop = &(snum->d[num_n - 1]); in bn_div_fixed_top()
[all …]
/freebsd/contrib/bc/src/
H A Dlang.c196 BcNum* snum; in bc_array_copy() local
199 snum = bc_vec_item(s, i); in bc_array_copy()
202 if (BC_PROG_STR(snum)) in bc_array_copy()
205 memcpy(dnum, snum, sizeof(BcNum)); in bc_array_copy()
207 else bc_num_createCopy(dnum, snum); in bc_array_copy()
/freebsd/sys/dev/speaker/
H A Dspkr.c189 int sound, silence, snum = 1, sdenom = 1; in playtone() local
194 snum *= NUM_MULT; in playtone()
202 rest(whole * snum / (value * sdenom)); in playtone()
204 sound = (whole * snum) / (value * sdenom) in playtone()
206 silence = whole * (FILLTIME-fill) * snum / (FILLTIME * value * sdenom); in playtone()
/freebsd/sys/contrib/device-tree/Bindings/soc/fsl/cpm_qe/
H A Dfsl,qe.yaml52 defining the array of serial number (SNUM) values for the virtual
75 define how many serial number(SNUM) the QE can use
H A Dqe.txt22 defining the array of serial number (SNUM) values for the virtual
39 - fsl,qe-num-snums: define how many serial number(SNUM) the QE can use
/freebsd/contrib/bmake/
H A Dsuff.c143 static int sNum = 0; variable
178 int sNum; member
417 if (listSuff->sNum >= suff->sNum) in SuffixList_Insert()
423 suff->name, suff->sNum); in SuffixList_Insert()
425 } else if (listSuff->sNum != suff->sNum) { in SuffixList_Insert()
427 suff->name, suff->sNum, listSuff->name, listSuff->sNum); in SuffixList_Insert()
431 suff->name, suff->sNum); in SuffixList_Insert()
452 suff->sNum = sNum++; in Suffix_New()
476 sNum = 0; in Suff_ClearSuffixes()
2088 suff->name, suff->sNum, suff->refCount); in Suffix_Print()
/freebsd/crypto/openssl/crypto/evp/
H A De_camellia.c327 int snum = EVP_CIPHER_CTX_get_num(ctx); in camellia_ctr_cipher() local
331 if (snum < 0) in camellia_ctr_cipher()
333 num = snum; in camellia_ctr_cipher()
/freebsd/contrib/tcsh/
H A Dtw.help.c161 cleanf(int snum) in cleanf() argument
163 USE(snum); in cleanf()
H A Dsh.hist.c1231 Char *snum, *rs; in rechist() local
1250 if (((snum = varval(STRsavehist)) == STRNULL) && in rechist()
1251 ((snum = varval(STRhistory)) == STRNULL)) in rechist()
1252 snum = STRmaxint; in rechist()
1338 dumphist[2] = snum; in rechist()
H A Dsh.dir.c1366 Char *snum; in recdirs() local
1390 if ((snum = varval(STRsavedirs)) == STRNULL || snum[0] == '\0') in recdirs()
1393 num = (unsigned int) atoi(short2str(snum)); in recdirs()
H A Ded.init.c119 window_change(int snum) in window_change() argument
121 USE(snum); in window_change()
H A Dsh.sem.c767 vffree(int snum) in vffree() argument
769 USE(snum); in vffree()
H A Dtc.func.c1875 palarm(int snum) in palarm() argument
1877 USE(snum); in palarm()
/freebsd/usr.sbin/bhyve/
H A Dpci_emul.c275 int error, bnum, snum, fnum; in pci_parse_slot() local
295 if (sscanf(str, "%d:%d:%d", &bnum, &snum, &fnum) != 3) { in pci_parse_slot()
298 if (sscanf(str, "%d:%d", &snum, &fnum) != 2) { in pci_parse_slot()
301 if (sscanf(str, "%d", &snum) != 1) { in pci_parse_slot()
302 snum = -1; in pci_parse_slot()
307 if (bnum < 0 || bnum >= MAXBUSES || snum < 0 || snum >= MAXSLOTS || in pci_parse_slot()
315 EPRINTLN("pci slot %d:%d:%d: unknown device \"%s\"", bnum, snum, in pci_parse_slot()
320 snprintf(node_name, sizeof(node_name), "pci.%d.%d.%d", bnum, snum, in pci_parse_slot()
324 EPRINTLN("pci slot %d:%d:%d already occupied!", bnum, snum, in pci_parse_slot()
/freebsd/sys/ofed/drivers/infiniband/core/
H A Dib_cma.c214 struct rdma_bind_list *bind_list, int snum) in cma_ps_alloc() argument
218 return idr_alloc(idr, bind_list, snum, snum + 1, GFP_KERNEL); in cma_ps_alloc()
222 enum rdma_port_space ps, int snum) in cma_ps_find() argument
226 return idr_find(idr, snum); in cma_ps_find()
229 static void cma_ps_remove(struct vnet *net, enum rdma_port_space ps, int snum) in cma_ps_remove() argument
233 idr_remove(idr, snum); in cma_ps_remove()
3192 struct rdma_id_private *id_priv, unsigned short snum) in cma_alloc_port() argument
3202 snum); in cma_alloc_port()
3291 unsigned short snum; in cma_use_port() local
3294 snum = ntohs(cma_port(cma_src_addr(id_priv))); in cma_use_port()
[all …]
/freebsd/contrib/sqlite3/
H A Dshell.c28188 appendText(&sSelect, " AS snum, ", 0); in do_meta_command()
28227 " ORDER BY snum, rowid", 0); in do_meta_command()
/freebsd/share/dict/
H A Dweb2184271 snum