Searched refs:slot (Results 1 - 25 of 623) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/execute/
H A D20000717-4.c7 struct slot struct in struct:__anon5440
11 slot[4]; member in struct:__anon5440
18 int r = s.slot[0].field[!toggle];
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/execute/
H A D20000717-4.c7 struct slot struct in struct:__anon3709
11 slot[4]; member in struct:__anon3709
18 int r = s.slot[0].field[!toggle];
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/lto/
H A D20090218-2_1.c10 void **slot; local
11 *slot = malloc (3);
12 memcpy (*slot, 0, 3);
/netbsd-6-1-5-RELEASE/sys/arch/hp300/dev/
H A Dsgcvar.h36 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))
H A Dsgc.c99 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;
154 sgc_slottopa(int slot) argument
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/ElectricFence/
H A Defence.c125 * allocationList points to the array of slot structures used to manage the
149 * slotsPerPage is the number of slot structures that fit in a virtual
194 Slot * slot; local
278 slot = allocationList = (Slot *)Page_Create(size);
281 slot[0].internalSize = slot[0].userSize = allocationListSize;
282 slot[0].internalAddress = slot[0].userAddress = allocationList;
283 slot[0].mode = INTERNAL_USE;
285 slot[
363 register Slot * slot; local
572 register Slot * slot = allocationList; local
590 register Slot * slot = allocationList; local
609 register Slot * slot = allocationList; local
624 Slot * slot; local
717 Slot * slot; local
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/lib/roken/
H A Ddlfcn_w32.c46 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 local
127 DWORD slot = get_tl_error_slot(); local
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/newsmips/apbus/
H A Dapbusvar.h37 int apa_slotno; /* which slot in */
52 #define SLOTTOMASK(slot) ((slot) ? (0x0100 << ((slot) - 1)) : 0)
/netbsd-6-1-5-RELEASE/sys/arch/atari/isa/
H A Disa_hades.c57 * 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) argument
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 th
125 int slot, i; local
156 int slot; local
[all...]
/netbsd-6-1-5-RELEASE/sys/dev/pci/n8/common/api/commands/
H A Dn8_cb_dh.c127 unsigned int slot[4]; local
134 /* Initialize the slot values. These are to address temporary
137 for (i = 0; i < sizeof(slot)/sizeof(unsigned int); i++)
139 slot[i] = i * keyDigits;
158 /* 3.1) Construct a command to load R mod p to slot 1 */
161 ldst_wr_ptr->r_offset = slot[1];
165 /* 3.2) Construct a command to load g to slot 2 */
168 ldst_wr_ptr->r_offset = slot[2];
172 /* 3.3) Construct a command to load p to slot 3 */
175 ldst_wr_ptr->r_offset = slot[
256 unsigned int slot[5]; local
395 unsigned int slot[5]; local
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/gas/testsuite/gas/mips/
H A Dmips-gp64-fp64.l2 .*:92: Warning: Macro instruction expanded into multiple instructions in a branch delay slot
3 .*:96: Warning: Macro instruction expanded into multiple instructions in a branch delay slot
4 .*:100: Warning: Macro instruction expanded into multiple instructions in a branch delay slot
H A Dmacro-warn-1-n32.l5 .*:16: Warning: Macro instruction expanded into multiple instructions.*slot
6 .*:20: Warning: Macro instruction expanded into multiple instructions.*slot
H A Dmacro-warn-2.l3 .*:9: Warning: Macro instruction expanded into multiple instructions.*slot
H A Dmacro-warn-3.l3 .*:7: Warning: Macro instruction expanded into multiple instructions.*slot
H A Dmacro-warn-4.l3 .*:5: Warning: Macro instruction expanded into multiple instructions.*slot
/netbsd-6-1-5-RELEASE/gnu/dist/gmake/
H A Dhash.c35 potentially hit every slot in the table during collision
88 /* Returns the address of the table slot matching `key'. If `key' is
89 not found, return the address of an empty slot suitable for
98 void **slot; local
107 slot = &ht->ht_vec[hash_1];
109 if (*slot == 0)
110 return (deleted_slot ? deleted_slot : slot);
111 if (*slot == hash_deleted_item)
114 deleted_slot = slot;
118 if (key == *slot)
135 void **slot = hash_find_slot (ht, key); local
144 void **slot = hash_find_slot (ht, item); local
179 void **slot = hash_find_slot (ht, item); local
253 void **slot; local
269 void **slot; local
301 void **slot = hash_find_slot (ht, *ovp); local
334 void **slot; local
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/openpam/dist/lib/
H A Dpam_set_item.c66 void **slot, *tmp; local
72 slot = &pamh->item[item_type];
77 if (*slot != NULL)
91 if (*slot != NULL)
92 osize = strlen(*slot) + 1;
108 if (*slot != NULL) {
109 memset(*slot, 0xd0, osize);
110 FREE(*slot);
119 *slot = tmp;
/netbsd-6-1-5-RELEASE/external/public-domain/xz/dist/src/xz/
H A Dutil.c138 check_thousand_sep(uint32_t slot) argument
141 bufs[slot][0] = '\0';
142 snprintf(bufs[slot], sizeof(bufs[slot]), "%'u", 1U);
143 thousand = bufs[slot][0] == '1' ? WORKS : BROKEN;
151 uint64_to_str(uint64_t value, uint32_t slot) argument
153 assert(slot < ARRAY_SIZE(bufs));
155 check_thousand_sep(slot);
158 snprintf(bufs[slot], sizeof(bufs[slot]), "
167 uint64_to_nicestr(uint64_t value, enum nicestr_unit unit_min, enum nicestr_unit unit_max, bool always_also_bytes, uint32_t slot) argument
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/pkg_install/dist/lib/
H A Dlicense.c99 size_t slot, i; local
101 slot = hash_license(license, len);
107 if (license_hash[slot] == NULL) {
108 license_hash[slot] = calloc(sizeof(char *), 2);
109 license_hash[slot][0] = new_license;
111 for (i = 0; license_hash[slot][i]; ++i) {
112 if (!memcmp(license_hash[slot][i], license, len) &&
113 license_hash[slot][i][len] == '\0') {
123 license_hash[slot] = realloc(license_hash[slot],
153 size_t slot, i; local
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/lib/hx509/
H A Dks_p11.c70 struct p11_slot *slot; member in struct:p11_module
98 struct p11_slot *slot; member in struct:p11_rsa
146 ret = p11_get_session(NULL, p11rsa->p, p11rsa->slot, NULL, &session);
152 p11_put_session(p11rsa->p, p11rsa->slot, session);
158 p11_put_session(p11rsa->p, p11rsa->slot, session);
184 ret = p11_get_session(NULL, p11rsa->p, p11rsa->slot, NULL, &session);
190 p11_put_session(p11rsa->p, p11rsa->slot, session);
196 p11_put_session(p11rsa->p, p11rsa->slot, session);
241 struct p11_slot *slot,
247 ret = P11FUNC(p, GetMechanismList, (slot
239 p11_mech_info(hx509_context context, struct p11_module *p, struct p11_slot *slot, int num) argument
303 p11_init_slot(hx509_context context, struct p11_module *p, hx509_lock lock, CK_SLOT_ID id, int num, struct p11_slot *slot) argument
370 p11_get_session(hx509_context context, struct p11_module *p, struct p11_slot *slot, hx509_lock lock, CK_SESSION_HANDLE *psession) argument
480 p11_put_session(struct p11_module *p, struct p11_slot *slot, CK_SESSION_HANDLE session) argument
492 iterate_entries(hx509_context context, struct p11_module *p, struct p11_slot *slot, CK_SESSION_HANDLE session, CK_ATTRIBUTE *search_data, int num_search_data, CK_ATTRIBUTE *query, int num_query, int (*func)(hx509_context, struct p11_module *, struct p11_slot *, CK_SESSION_HANDLE session, CK_OBJECT_HANDLE object, void *, CK_ATTRIBUTE *, int), void *ptr) argument
568 getattr_bn(struct p11_module *p, struct p11_slot *slot, CK_SESSION_HANDLE session, CK_OBJECT_HANDLE object, unsigned int type) argument
602 collect_private_key(hx509_context context, struct p11_module *p, struct p11_slot *slot, CK_SESSION_HANDLE session, CK_OBJECT_HANDLE object, void *ptr, CK_ATTRIBUTE *query, int num_query) argument
678 collect_cert(hx509_context context, struct p11_module *p, struct p11_slot *slot, CK_SESSION_HANDLE session, CK_OBJECT_HANDLE object, void *ptr, CK_ATTRIBUTE *query, int num_query) argument
738 p11_list_keys(hx509_context context, struct p11_module *p, struct p11_slot *slot, CK_SESSION_HANDLE session, hx509_lock lock, hx509_certs *certs) argument
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/
H A Dpr18241-2.c19 struct radix_tree_node *node, **slot; member in struct:radix_tree_path
32 path[0].slot = &root->rnode;
39 pathp[1].node = *pathp[0].slot;
40 pathp[1].slot = (struct radix_tree_node **)
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.dg/
H A Dpr18241-2.c19 struct radix_tree_node *node, **slot; member in struct:radix_tree_path
32 path[0].slot = &root->rnode;
39 pathp[1].node = *pathp[0].slot;
40 pathp[1].slot = (struct radix_tree_node **)
/netbsd-6-1-5-RELEASE/sys/arch/alpha/tc/
H A Dtc_dma_3000_300.c44 * Return the DMA tag for the given slot.
47 tc_dma_get_tag_3000_300(int slot) argument
/netbsd-6-1-5-RELEASE/sys/arch/evbmips/alchemy/
H A Domsal400.c190 omsal400_slot_irq(int slot, int which) argument
192 static const int irqmap[1/*slot*/][2/*which*/] = {
196 if ((slot >= 1) || (which >= 2))
199 return irqmap[slot][which];
203 omsal400_slot_offset(int slot) argument
206 switch (slot) {
214 omsal400_slot_enable(int slot) argument
221 omsal400_slot_disable(int slot) argument
228 omsal400_slot_status(int slot) argument
232 switch (slot) {
242 omsal400_slot_name(int slot) argument
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/gas/testsuite/gas/iq2000/
H A Dyield1.s2 # (e.g. SLEEP) appearing in the branch delay slot. We expect
7 # sleep insn in the branch delay slot.

Completed in 401 milliseconds

1234567891011>>