HomeSort by: relevance | last modified time | path
    Searched refs:slot (Results 1 - 25 of 1074) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/sys/arch/newsmips/apbus/
apbusvar.h 37 int apa_slotno; /* which slot in */
53 #define NEWS5000_SLOTTOMASK(slot) ((slot) ? (0x0100 << ((slot) - 1)) : 0)
54 #define NEWS4000_SLOTTOMASK(slot) ((slot) ? (0x0001 << ((slot) - 1)) : 0)
55 #define SLOTTOMASK(slot) (systype == NEWS5000 ? \
56 NEWS5000_SLOTTOMASK(slot) : NEWS4000_SLOTTOMASK(slot))
    [all...]
  /src/crypto/external/apache2/openssl/dist/ssl/quic/
quic_reactor_wait_ctx.c 27 static void slot_activate(QUIC_REACTOR_WAIT_SLOT *slot)
29 if (++slot->blocking_count == 1)
30 ossl_quic_reactor_enter_blocking_section(slot->rtor);
33 static void slot_deactivate(QUIC_REACTOR_WAIT_SLOT *slot)
35 assert(slot->blocking_count > 0);
37 if (--slot->blocking_count > 0)
40 ossl_quic_reactor_leave_blocking_section(slot->rtor);
46 QUIC_REACTOR_WAIT_SLOT *slot; local
48 OSSL_LIST_FOREACH(slot, quic_reactor_wait_slot, &ctx->slots)
49 if (slot->rtor == rtor
67 QUIC_REACTOR_WAIT_SLOT *slot; local
79 QUIC_REACTOR_WAIT_SLOT *slot, *nslot; local
    [all...]
  /src/sys/arch/hp300/dev/
sgcvar.h 36 int saa_slot; /* slot number */
44 /* Macros to switch between SGC slot numbers and kernel conscode */
45 #define SGC_SLOT_TO_CONSCODE(slot) (256 + (slot))
sgc.c 99 int slot, rv; local
111 for (slot = 0; slot < SGC_NSLOTS; slot++) {
112 pa = sgc_slottopa(slot);
114 aprint_error_dev(self, "can't map slot %d\n", slot);
124 DPRINTF(("%s: no valid device at slot %d\n",
125 device_xname(self), slot));
131 saa.saa_slot = slot;
    [all...]
  /src/sys/arch/atari/isa/
isa_hades.c 57 * for a slot are wired together and connected to either IO3 (slot1) or
58 * IO7 (slot2). Since no info can be obtained about the slot position
60 * - irq <= 6 -> slot 1
61 * - irq > 6 -> slot 2
71 iifun(int slot, int sr)
76 iinfo_p = &iinfo[slot];
81 if (slot == 0) {
92 add_sicallback((si_farg)iifun, (void*)slot, 0);
96 if (slot == 0) {
119 * XXXX to only generate interrupts for the slot the card is in..
125 int slot, i; local
156 int slot; local
    [all...]
  /src/external/gpl2/gmake/dist/
hash.c 34 potentially hit every slot in the table during collision
80 /* Returns the address of the table slot matching `key'. If `key' is
81 not found, return the address of an empty slot suitable for
88 void **slot; local
97 slot = &ht->ht_vec[hash_1];
99 if (*slot == 0)
100 return (deleted_slot ? deleted_slot : slot);
101 if (*slot == hash_deleted_item)
104 deleted_slot = slot;
108 if (key == *slot)
123 void **slot = hash_find_slot (ht, key); local
130 void **slot = hash_find_slot (ht, item); local
160 void **slot = hash_find_slot (ht, item); local
226 void **slot; local
239 void **slot; local
270 void **slot = hash_find_slot (ht, *ovp); local
298 void **slot; local
    [all...]
  /src/external/bsd/openpam/dist/lib/libpam/
pam_set_item.c 67 void **slot; local
71 slot = &pamh->item[item_type];
76 if (*slot != NULL && item != NULL)
90 if (*slot != NULL)
91 osize = strlen(*slot) + 1;
107 if (*slot != NULL) {
108 memset(*slot, 0xd0, osize);
109 FREE(*slot);
112 if ((*slot = malloc(nsize)) == NULL)
114 memcpy(*slot, item, nsize)
    [all...]
  /src/external/gpl3/binutils/dist/gas/
hash.c 44 are overwritten. If ELEMENT already exists, a pointer to the slot
50 void **slot = htab_find_slot (htab, element, INSERT); local
51 if (*slot != NULL)
56 (*htab->del_f) (*slot);
57 *slot = element;
59 return slot;
61 *slot = element;
  /src/external/gpl3/binutils.old/dist/gas/
hash.c 44 are overwritten. If ELEMENT already exists, a pointer to the slot
50 void **slot = htab_find_slot (htab, element, INSERT); local
51 if (*slot != NULL)
56 (*htab->del_f) (*slot);
57 *slot = element;
59 return slot;
61 *slot = element;
  /src/crypto/external/bsd/heimdal/dist/lib/roken/
dlfcn_w32.c 46 DWORD slot = TlsAlloc(); local
49 if (slot == TLS_OUT_OF_INDEXES)
52 if ((old_slot = InterlockedCompareExchange(&dlfcn_tls, slot,
57 TlsFree(slot);
60 return slot;
73 DWORD slot = get_tl_error_slot(); local
75 if (slot == TLS_OUT_OF_INDEXES)
83 old_s = (char *) TlsGetValue(slot);
84 TlsSetValue(slot, (LPVOID) s);
91 DWORD slot = get_tl_error_slot() local
127 DWORD slot = get_tl_error_slot(); local
    [all...]
  /src/external/bsd/pkg_install/dist/lib/
license.c 137 size_t slot, i; local
139 slot = hash_license(license, len);
145 if (license_hash[slot] == NULL) {
146 license_hash[slot] = calloc(sizeof(char *), 2);
147 license_hash[slot][0] = new_license;
149 for (i = 0; license_hash[slot][i]; ++i) {
150 if (!memcmp(license_hash[slot][i], license, len) &&
151 license_hash[slot][i][len] == '\0') {
161 license_hash[slot] = realloc(license_hash[slot],
191 size_t slot, i; local
    [all...]
  /src/external/apache2/mDNSResponder/dist/unittests/
uds_daemon_ut.c 11 mDNSu32 CacheUsed =0, CacheActive =0, slot; local
17 for (slot = 0; slot < CACHE_HASH_SLOTS; slot++)
19 for (cg = mDNSStorage.rrcache_hash[slot]; cg; cg=cg->next)
31 PrintOneCacheRecordToFD(STDOUT_FILENO, cr, slot, remain, ifname, &CacheUsed);
32 PrintCachedRecordsToFD(STDOUT_FILENO, cr, slot, remain, ifname, &CacheUsed);
  /src/crypto/external/bsd/heimdal/dist/lib/hx509/
ks_p11.c 71 struct p11_slot *slot; member in struct:p11_module
99 struct p11_slot *slot; member in struct:p11_rsa
147 ret = p11_get_session(NULL, p11rsa->p, p11rsa->slot, NULL, &session);
153 p11_put_session(p11rsa->p, p11rsa->slot, session);
159 p11_put_session(p11rsa->p, p11rsa->slot, session);
185 ret = p11_get_session(NULL, p11rsa->p, p11rsa->slot, NULL, &session);
191 p11_put_session(p11rsa->p, p11rsa->slot, session);
197 p11_put_session(p11rsa->p, p11rsa->slot, session);
246 struct p11_slot *slot,
252 ret = P11FUNC(p, GetMechanismList, (slot->id, NULL_PTR, &i))
    [all...]
  /src/sys/arch/alpha/tc/
tc_dma_3000_300.c 44 * Return the DMA tag for the given slot.
47 tc_dma_get_tag_3000_300(int slot)
  /src/sys/arch/evbmips/alchemy/
omsal400.c 195 omsal400_slot_irq(int slot, int which)
197 static const int irqmap[1/*slot*/][2/*which*/] = {
198 { 35, 37 }, /* Slot 0: CF connector Type2 */
201 if ((slot >= 1) || (which >= 2))
204 return irqmap[slot][which];
208 omsal400_slot_offset(int slot)
211 switch (slot) {
219 omsal400_slot_enable(int slot)
226 omsal400_slot_disable(int slot)
233 omsal400_slot_status(int slot)
    [all...]
  /src/sys/arch/sparc64/dev/
centralvar.h 52 #define central_bus_map(t, slot, offset, sz, flags, hp) \
53 bus_space_map(t, BUS_ADDR(slot, offset), sz, flags, hp)
  /src/sys/external/bsd/drm2/linux/
linux_dmi.c 38 dmi_match(enum dmi_field slot, const char *text)
42 switch (slot) {
93 aprint_error("%s: unknown DMI field(%d)\n", __func__, slot);
108 if (dsi->matches[i].slot == DMI_NONE)
110 if (!dmi_match(dsi->matches[i].slot, dsi->matches[i].substr))
122 for (dsi = sysid; dsi->matches[0].slot != DMI_NONE; dsi++) {
  /src/external/gpl2/gettext/dist/gettext-runtime/gnulib-lib/
allocsa.c 78 size_t slot; local
86 slot = (unsigned long) p % HASH_TABLE_SIZE;
87 ((struct header *) (p - HEADER_SIZE))->next = mallocsa_results[slot];
88 mallocsa_results[slot] = p;
119 size_t slot = (unsigned long) p % HASH_TABLE_SIZE; local
120 void **chain = &mallocsa_results[slot];
  /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
allocsa.c 78 size_t slot; local
86 slot = (unsigned long) p % HASH_TABLE_SIZE;
87 ((struct header *) (p - HEADER_SIZE))->next = mallocsa_results[slot];
88 mallocsa_results[slot] = p;
119 size_t slot = (unsigned long) p % HASH_TABLE_SIZE; local
120 void **chain = &mallocsa_results[slot];
  /src/external/gpl2/gettext/dist/gettext-tools/libgettextpo/
allocsa.c 78 size_t slot; local
86 slot = (unsigned long) p % HASH_TABLE_SIZE;
87 ((struct header *) (p - HEADER_SIZE))->next = mallocsa_results[slot];
88 mallocsa_results[slot] = p;
119 size_t slot = (unsigned long) p % HASH_TABLE_SIZE; local
120 void **chain = &mallocsa_results[slot];
  /src/external/gpl2/xcvs/dist/lib/
allocsa.c 83 size_t slot; local
91 slot = (unsigned long) p % HASH_TABLE_SIZE;
92 ((struct header *) (p - HEADER_SIZE))->next = mallocsa_results[slot];
93 mallocsa_results[slot] = p;
124 size_t slot = (unsigned long) p % HASH_TABLE_SIZE; local
125 void **chain = &mallocsa_results[slot];
  /src/sys/dev/pckbport/
pckbport.c 105 pckbport_poll_data1(pckbport_tag_t t, pckbport_slot_t slot)
108 return t->t_ops->t_poll_data1(t->t_cookie, slot);
112 pckbport_send_devcmd(struct pckbport_tag *t, pckbport_slot_t slot, u_char val)
115 return t->t_ops->t_send_devcmd(t->t_cookie, slot, val);
135 pckbport_slot_t slot)
144 pa.pa_slot = slot;
146 if (t->t_slotdata[slot] == NULL) {
149 t->t_slotdata[slot] = sdata;
150 pckbport_init_slotdata(t->t_slotdata[slot]);
154 locs[PCKBPORTCF_SLOT] = slot;
    [all...]
  /src/external/gpl3/binutils/dist/libctf/
ctf-hash.c 214 ctf_helem_t **slot; local
216 slot = ctf_hashtab_lookup (htab, key, INSERT);
218 if (!slot)
224 if (!*slot)
229 *slot = malloc (sizeof (ctf_helem_t));
233 *slot = p;
235 if (!*slot)
237 (*slot)->key = key;
244 value_free ((*slot)->value);
246 (*slot)->value = value
253 ctf_helem_t *slot; local
299 ctf_helem_t **slot; local
314 ctf_helem_t **slot; local
422 ctf_helem_t *slot; local
658 void **slot; local
701 void **slot = htab_find_slot ((struct htab *) hp, local
713 void **slot = htab_find_slot ((struct htab *) hp, local
727 void **slot = htab->entries; local
747 void *slot; local
    [all...]
  /src/external/gpl3/binutils.old/dist/libctf/
ctf-hash.c 214 ctf_helem_t **slot; local
216 slot = ctf_hashtab_lookup (htab, key, INSERT);
218 if (!slot)
224 if (!*slot)
229 *slot = malloc (sizeof (ctf_helem_t));
233 *slot = p;
235 if (!*slot)
237 (*slot)->key = key;
244 value_free ((*slot)->value);
246 (*slot)->value = value
253 ctf_helem_t *slot; local
299 ctf_helem_t **slot; local
314 ctf_helem_t **slot; local
422 ctf_helem_t *slot; local
658 void **slot; local
701 void **slot = htab_find_slot ((struct htab *) hp, local
713 void **slot = htab_find_slot ((struct htab *) hp, local
727 void **slot = htab->entries; local
747 void *slot; local
    [all...]
  /src/external/gpl3/gdb.old/dist/libctf/
ctf-hash.c 214 ctf_helem_t **slot; local
216 slot = ctf_hashtab_lookup (htab, key, INSERT);
218 if (!slot)
224 if (!*slot)
229 *slot = malloc (sizeof (ctf_helem_t));
233 *slot = p;
235 if (!*slot)
237 (*slot)->key = key;
244 value_free ((*slot)->value);
246 (*slot)->value = value
253 ctf_helem_t *slot; local
299 ctf_helem_t **slot; local
314 ctf_helem_t **slot; local
421 ctf_helem_t *slot; local
633 void **slot; local
676 void **slot = htab_find_slot ((struct htab *) hp, local
688 void **slot = htab_find_slot ((struct htab *) hp, local
702 void **slot = htab->entries; local
722 void *slot; local
    [all...]

Completed in 32 milliseconds

1 2 3 4 5 6 7 8 91011>>