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

/freebsd-9.3-release/sys/contrib/ia64/libuwx/src/
H A Duwx_context.h25 extern uint64_t uwx_add_to_bsp(uint64_t bsp, int nslots);
H A Duwx_context.c299 uint64_t uwx_add_to_bsp(uint64_t bsp, int nslots) argument
320 * <--- nslots --->
324 * <------------ nslots + bias ----------->
336 * <--- (-nslots) --->
341 * -(nslots + bias)
345 nslots += (nslots + bias + 63*8) / 63 - 8;
346 return bsp + nslots * DWORDSZ;
H A Duwx.h173 __EXTERN_C uint64_t uwx_add_to_bsp(uint64_t bsp, int nslots);
/freebsd-9.3-release/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-9.3-release/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-9.3-release/sys/ia64/include/
H A Dmd_var.h54 ia64_bsp_adjust(uint64_t bsp, int nslots) argument
57 nslots += (nslots + bias + 63*8) / 63 - 8;
58 return bsp + (nslots << 3);
/freebsd-9.3-release/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-9.3-release/contrib/gnu-sort/lib/
H A Dquotearg.c568 static unsigned int nslots = 1; local
581 if (nslots <= n0)
594 memset (slotvec + nslots, 0, (n1 - nslots) * sizeof *slotvec);
595 nslots = n1;
/freebsd-9.3-release/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-9.3-release/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-9.3-release/crypto/openssh/
H A Dssh-pkcs11.c56 CK_ULONG nslots; member in struct:pkcs11_provider
101 for (i = 0; i < p->nslots; i++) {
600 if ((rv = f->C_GetSlotList(CK_TRUE, NULL, &p->nslots)) != CKR_OK) {
604 if (p->nslots == 0) {
608 p->slotlist = xcalloc(p->nslots, sizeof(CK_SLOT_ID));
609 if ((rv = f->C_GetSlotList(CK_TRUE, p->slotlist, &p->nslots))
614 p->slotinfo = xcalloc(p->nslots, sizeof(struct pkcs11_slotinfo));
617 for (i = 0; i < p->nslots; i++) {
/freebsd-9.3-release/sys/ia64/ia64/
H A Dunaligned.c76 int nslots; local
81 nslots = IA64_CFM_SOF(mc->mc_special.cfm) - gr + 32;
82 p = (void *)ia64_bsp_adjust(mc->mc_special.bspstore, -nslots);
/freebsd-9.3-release/tools/tools/ath/common/
H A Ddumpregs.h92 void register_keycache(u_int nslots,
/freebsd-9.3-release/sys/ufs/ufs/
H A Dufs_dirhash.c347 int dirblocks, i, j, memreqd, nblocks, narrays, nslots, slot; local
373 nslots = ip->i_size / DIRECTSIZ(1);
374 nslots = (nslots * 3 + 1) / 2;
375 narrays = howmany(nslots, DH_NBLKOFF);
376 nslots = narrays * DH_NBLKOFF;
398 dh->dh_hlen = nslots;
/freebsd-9.3-release/tools/tools/ath/athregs/
H A Ddumpregs.c307 register_keycache(u_int nslots, argument
316 keyregs = (struct dumpreg *) calloc(nslots, 8*sizeof(struct dumpreg));
318 errx(-1, "no space to %d keycache slots\n", nslots);
320 for (i = 0; i < nslots; i++) {
330 register_regs(keyregs, 8*nslots,
/freebsd-9.3-release/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-9.3-release/tools/tools/ath/athpoke/
H A Dathpoke.c219 register_keycache(u_int nslots, argument
/freebsd-9.3-release/tools/tools/ath/athdecode/
H A Dmain.c336 register_keycache(u_int nslots, argument

Completed in 218 milliseconds