Searched refs:nslots (Results 1 - 13 of 13) sorted by relevance

/freebsd-11-stable/contrib/gcclibs/libcpp/
H A Dsymtab.c56 unsigned int nslots = 1 << order; local
68 table->entries = XCNEWVEC (hashnode, nslots);
70 table->nslots = nslots;
111 sizemask = table->nslots - 1;
169 if (++table->nelements * 4 >= table->nslots * 3)
184 size = table->nslots * 2;
189 limit = p + table->nslots;
215 table->nslots = size;
226 limit = p + table->nslots;
238 ht_load(hash_table *ht, hashnode *entries, unsigned int nslots, unsigned int nelements, bool own) argument
[all...]
/freebsd-11-stable/contrib/gcc/
H A Dstringpool.c215 GTY((length ("%h.nslots"),
219 unsigned int nslots;
231 spd->nslots = ident_hash->nslots;
233 spd->entries = ggc_alloc (sizeof (spd->entries[0]) * spd->nslots);
235 spd->nslots * sizeof (spd->entries[0]));
252 ht_load (ident_hash, spd->entries, spd->nslots, spd->nelements, false);
217 unsigned int nslots; local
/freebsd-11-stable/contrib/gcclibs/libcpp/include/
H A Dsymtab.h55 unsigned int nslots; /* Total slots in the entries array. */ member in struct:ht
91 unsigned int nslots, unsigned int nelements, bool own);
/freebsd-11-stable/contrib/subversion/subversion/libsvn_delta/
H A Dxdelta.c219 apr_uint32_t nslots;
234 here, because the largest possible value for nslots is
239 nslots = (apr_uint32_t) wnslots;
240 SVN_ERR_ASSERT_NO_RETURN(wnslots == nslots);
241 blocks->max = nslots - 1;
243 blocks->slots = apr_palloc(pool, nslots * sizeof(*(blocks->slots)));
244 for (i = 0; i < nslots; ++i)
218 apr_uint32_t nslots; local
/freebsd-11-stable/gnu/usr.bin/grep/
H A Dquotearg.c532 static unsigned int nslots = 1; local
541 if (nslots <= n)
553 memset (slotvec + nslots, 0, (n1 - nslots) * sizeof (struct slotvec));
554 nslots = n;
/freebsd-11-stable/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dctfmerge.c635 int throttle, nslots, i; local
638 nslots = atoi(getenv("CTFMERGE_MAX_SLOTS"));
640 nslots = MERGE_PHASE1_MAX_SLOTS;
647 nslots = MIN(nslots, (nfiles + wq->wq_maxbatchsz - 1) /
650 wq->wq_wip = xcalloc(sizeof (wip_t) * nslots);
651 wq->wq_nwipslots = nslots;
652 wq->wq_nthreads = MIN(sysconf(_SC_NPROCESSORS_ONLN) * 3 / 2, nslots);
666 for (i = 0; i < nslots; i++) {
/freebsd-11-stable/crypto/openssh/
H A Dssh-pkcs11.c56 CK_ULONG nslots; member in struct:pkcs11_provider
101 for (i = 0; i < p->nslots; i++) {
625 if ((rv = f->C_GetSlotList(CK_TRUE, NULL, &p->nslots)) != CKR_OK) {
629 if (p->nslots == 0) {
634 p->slotlist = xcalloc(p->nslots, sizeof(CK_SLOT_ID));
635 if ((rv = f->C_GetSlotList(CK_TRUE, p->slotlist, &p->nslots))
641 p->slotinfo = xcalloc(p->nslots, sizeof(struct pkcs11_slotinfo));
644 for (i = 0; i < p->nslots; i++) {
/freebsd-11-stable/tools/tools/ath/common/
H A Ddumpregs.h92 void register_keycache(u_int nslots,
/freebsd-11-stable/sys/ufs/ufs/
H A Dufs_dirhash.c350 int dirblocks, i, j, memreqd, nblocks, narrays, nslots, slot; local
376 nslots = ip->i_size / DIRECTSIZ(1);
377 nslots = (nslots * 3 + 1) / 2;
378 narrays = howmany(nslots, DH_NBLKOFF);
379 nslots = narrays * DH_NBLKOFF;
401 dh->dh_hlen = nslots;
/freebsd-11-stable/tools/tools/ath/athregs/
H A Ddumpregs.c323 register_keycache(u_int nslots, argument
332 keyregs = (struct dumpreg *) calloc(nslots, 8*sizeof(struct dumpreg));
334 errx(-1, "no space to %d keycache slots\n", nslots);
336 for (i = 0; i < nslots; i++) {
346 register_regs(keyregs, 8*nslots,
/freebsd-11-stable/contrib/gdb/gdb/
H A Dia64-tdep.c625 rse_address_add(CORE_ADDR addr, int nslots) argument
628 int mandatory_nat_slots = nslots / 63;
629 int direction = nslots < 0 ? -1 : 1;
631 new_addr = addr + 8 * (nslots + mandatory_nat_slots);
3060 int nslots, rseslots, memslots, slotnum, nfuncargs;
3064 nslots = 0;
3073 if ((nslots & 1) && slot_alignment_is_next_even (type))
3074 nslots++;
3079 nslots += (len + 7) / 8;
3083 rseslots = (nslots >
3059 int nslots, rseslots, memslots, slotnum, nfuncargs; local
[all...]
/freebsd-11-stable/tools/tools/ath/athpoke/
H A Dathpoke.c219 register_keycache(u_int nslots, argument
/freebsd-11-stable/tools/tools/ath/athdecode/
H A Dmain.c340 register_keycache(u_int nslots, argument

Completed in 132 milliseconds