Searched full:index (Results 1 - 25 of 3505) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/lib/libsqlite/test/
H A Dindex.test15 # focus of this file is testing the CREATE INDEX statement.
17 # $Id: index.test,v 1.24.2.1 2004/07/20 00:50:30 drh Exp $
22 # Create a basic index and verify it is added to sqlite_master
24 do_test index-1.1 {
26 execsql {CREATE INDEX index1 ON test1(f1)}
29 do_test index-1.1b {
32 } {index1 {CREATE INDEX index1 ON test1(f1)} test1 index}
33 do_test index-1.1c {
38 } {index1 {CREATE INDEX index
[all...]
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/funcs/
H A Dtst.index.d.out4 if (index("foobarbaz", "barbaz") != 3) {
5 printf("perl => index(\"foobarbaz\", \"barbaz\") = %d\n",
6 index("foobarbaz", "barbaz"));
7 printf(" D => index(\"foobarbaz\", \"barbaz\") = 3\n");
18 if (index("foofoofoo", "foo") != 0) {
19 printf("perl => index(\"foofoofoo\", \"foo\") = %d\n",
20 index("foofoofoo", "foo"));
21 printf(" D => index(\"foofoofoo\", \"foo\") = 0\n");
32 if (index("boofoofoo", "foo") != 3) {
33 printf("perl => index(\"boofoofo
[all...]
H A Dtst.substr.d33 int index;
48 command[i].index = 3;
52 command[i].index = 300;
56 command[i].index = -10;
60 command[i].index = 0;
64 command[i].index = 1;
68 command[i].index = strlen(str) - 1;
72 command[i].index = strlen(str);
76 command[i].index = strlen(str) + 1;
80 command[i].index
[all...]
/illumos-gate/usr/src/cmd/dtrace/demo/
H A Dchapters3 index: 0
8 index: 10
13 index: 9
18 index: 34
23 index: 11
28 index: 17
33 index: 20
38 index: 1
43 index: 27
48 index
[all...]
/illumos-gate/usr/src/uts/common/io/usb/clients/hidparser/
H A DREADME106 hid1: Index = 0 value =0x5
107 hid1: Index = 1 value =0x1
108 hid1: Index = 2 value =0x9
109 hid1: Index = 3 value =0x8
110 hid1: Index = 4 value =0xa1
111 hid1: Index = 5 value =0x1
112 hid1: Index = 6 value =0xa1
113 hid1: Index = 7 value =0x0
114 hid1: Index = 8 value =0x85
115 hid1: Index
[all...]
/illumos-gate/usr/src/uts/sun4u/io/px/
H A Dpx_csr.h40 #define CSRA_XR(base, off, index) \
41 (*(volatile uint64_t *)((base) + ((off) + ((index) * 8))))
46 #define CSRA_XS(base, off, index, val) \
47 ((*(volatile uint64_t *)((base) + ((off) + ((index) * 8)))) = (val))
54 #define CSRA_FR(base, off, index, bit) \
55 (((*(volatile uint64_t *) ((base) + ((off) + ((index) * 8)))) >> \
64 #define CSRA_FS(base, off, index, bit, val) \
65 ((*(volatile uint64_t *) ((base) + ((off) + ((index) * 8)))) = \
66 (((*(volatile uint64_t *) ((base) + ((off) + ((index) * 8)))) & \
75 #define CSRA_FC(base, off, index, bi
[all...]
/illumos-gate/usr/src/cmd/sgs/liblddbg/common/
H A Ddynamic.c48 char index[INDEX_STR_SIZE]; local
50 (void) snprintf(index, sizeof (index), MSG_ORIG(MSG_FMT_INDEX), ndx);
51 dbg_print(lml, MSG_INTL(MSG_DYN_ENTRY), index,
59 * a single line using an index range instead of a single index.
65 char index[2 * INDEX_STR_SIZE]; local
71 (void) snprintf(index, sizeof (index),
73 dbg_print(lml, MSG_INTL(MSG_DYN_ENTRY), index,
[all...]
/illumos-gate/usr/src/lib/libnsctl/common/
H A Dhash.c46 int index; local
58 * in this index for a duplicate
60 index = calc_hash(key);
61 node->next = hash[ index ];
62 hash[ index ] = node;
80 int index; local
83 index = calc_hash(key);
84 node = hash[ index ];
96 int index; local
100 index
[all...]
/illumos-gate/usr/src/stand/lib/inet/
H A Dudp.c96 * Arguments: index: index into the open socket table, ip is the inetgram
100 udp_input(int index) argument
108 printf("udp_input(%d) ###############################\n", index);
110 while ((igp = sockets[index].inq) != NULL) {
114 index, igp->igm_level);
116 del_gram(&sockets[index].inq, igp, TRUE);
122 header_len = (sockets[index].headerlen[TRANSPORT_LVL])(NULL);
129 &igp->igm_target, sockets[index].proto) != 0) {
131 "from %s.\n", index,
170 udp_output(int index, struct inetgram *ogp) argument
[all...]
/illumos-gate/usr/src/boot/sys/boot/arm/at91/bootiic/
H A Denv_vars.c109 * void SetBootCommand(int index, char *command)
110 * This global function replaces the specified index with the string residing
112 * associated command index.
116 SetBootCommand(int index, char *command) argument
120 if ((unsigned)index < MAX_BOOT_COMMANDS) {
122 p_memset(boot_commands[index], 0, MAX_INPUT_SIZE);
128 boot_commands[index][i] = command[i];
129 if (!(boot_commands[index][i]))
163 * coverts it to the standard, command-index format. Notice, the processed
172 int index, local
[all...]
/illumos-gate/usr/src/uts/intel/io/acpica/dispatcher/
H A Ddsmthdat.c59 UINT32 Index,
65 UINT32 Index,
73 UINT32 Index,
156 UINT32 Index; local
164 for (Index = 0; Index < ACPI_METHOD_NUM_LOCALS; Index++)
166 if (WalkState->LocalVariables[Index].Object)
169 Index, WalkState->LocalVariables[Index]
219 UINT32 Index = 0; local
275 AcpiDsMethodDataGetNode( UINT8 Type, UINT32 Index, ACPI_WALK_STATE *WalkState, ACPI_NAMESPACE_NODE **Node) argument
347 AcpiDsMethodDataSetValue( UINT8 Type, UINT32 Index, ACPI_OPERAND_OBJECT *Object, ACPI_WALK_STATE *WalkState) argument
406 AcpiDsMethodDataGetValue( UINT8 Type, UINT32 Index, ACPI_WALK_STATE *WalkState, ACPI_OPERAND_OBJECT **DestDesc) argument
519 AcpiDsMethodDataDeleteValue( UINT8 Type, UINT32 Index, ACPI_WALK_STATE *WalkState) argument
585 AcpiDsStoreObjectToLocal( UINT8 Type, UINT32 Index, ACPI_OPERAND_OBJECT *ObjDesc, ACPI_WALK_STATE *WalkState) argument
742 AcpiDsMethodDataGetType( UINT16 Opcode, UINT32 Index, ACPI_WALK_STATE *WalkState) argument
[all...]
/illumos-gate/usr/src/lib/libast/common/misc/
H A Doptjoin.c32 * possible starting at (opt_info.index,opt_info.offset) using
42 * to be parsed at opt_info.index
72 last_index = opt_info.index;
76 more = argv[opt_info.index] != 0;
86 if (*argv[opt_info.index] != '+')
98 if (opt_info.again > 0 && (!err || err_index < opt_info.index || err_index == opt_info.index && err_offset < opt_info.offset))
101 err_index = opt_info.index;
105 opt_info.index = opt_info.state->pindex ? opt_info.state->pindex : 1;
108 if (!rep || opt_info.index !
[all...]
/illumos-gate/usr/src/lib/sun_sas/common/
H A DSun_sasGetAdapterName.c34 * index the index to which adapter to retrive the name
37 HBA_STATUS Sun_sasGetAdapterName(HBA_UINT32 index, char *name) { argument
48 if (hba_ptr->index == index) {
62 "Unable to find adapter index %d.", index);
H A DSun_sasGetAdapterPortAttributes.c39 int index; local
49 index = RetrieveIndex(handle);
51 hba_ptr = RetrieveHandle(index);
76 "Internal failure: Adapter at index %d contains no port "
77 "data", hba_ptr->index);
85 if (hba_port_ptr->index == port) {
89 if (hba_port_ptr == NULL || hba_port_ptr->index != port) {
91 "Invalid port index %d for handle %08lx.",
/illumos-gate/usr/src/lib/libast/common/regex/
H A Dregrexec.c46 register size_t index; local
72 index = leftlen++;
75 while ((index += skip[buf[index]]) < mid);
76 if (index < HIT)
78 index -= HIT;
79 m = mask[n = exactlen - 1][buf[index]];
84 } while (m &= mask[n][buf[--index]]);
85 if ((index += fail[n + 1]) < len)
96 r = (l = buf + index)
[all...]
/illumos-gate/usr/src/cmd/sgs/include/
H A Dmonv.h48 typedef unsigned long long Index; typedef
96 Index buffer;
104 Index functions;
111 Index modules;
115 Index next;
116 Index path;
122 Index next_to;
123 Index next_from;
127 Index next_hash;
/illumos-gate/usr/src/lib/libgss/
H A Dg_rel_oid_set.c45 OM_uint32 index; local
56 for (index = 0; index < (*set)->count; index++) {
57 oid = &(*set)->elements[index];
/illumos-gate/usr/src/lib/libnisdb/
H A Ddb_index_c.x76 % STRUCTRWLOCK(index);
88 %/* Constructor: creates empty index. */
91 %/* Constructor: creates index by loading it from the specified file.
92 % If loading fails, creates empty index. */
95 %/* Destructor: deletes index, including all associated db_index_entry. */
98 %/* Empty table (deletes index, including all associated db_index_entry) */
101 %/* Initialize index according to the specification of the key descriptor.
102 % Currently, only affects case_insens flag of index. */
105 %/* Moves an index from an xdr index */
[all...]
H A Dldap_scheme.c51 int index = q->components.components_val[i].which_index; local
52 if (index >= s->keys.keys_len) {
54 "%s: query index %d out-of-range (%d)",
55 myself, index, s->keys.keys_len-1);
60 s->keys.keys_val[index].column_number - 1;
107 int index; local
112 "%s: query index %d out-of-range (%d)",
119 index = s->keys.keys_val[i].column_number - 1;
120 if (index >= nc) {
122 "%s: column index ou
[all...]
/illumos-gate/usr/src/lib/pkcs11/libpkcs11/common/
H A DmetaMechManager.c221 unsigned long index, num_found = 0; local
232 found = find_mech_index(mech_support_info->mech, &index);
239 if (!mechlist[index].slots[i].initialized ||
240 !mechlist[index].slots[i].supported)
244 info = mechlist[index].slots[i].mechanism_info;
252 = &mechlist[index].slots[i];
286 unsigned long index = 0; local
290 rv = meta_mechManager_allocmechs(&mech, 1, &index);
298 * index as a hint to quickly find the mechanism.
300 found = find_mech_index(mech, &index);
337 unsigned long index = 0; local
445 update_slotmech(CK_MECHANISM_TYPE mech, CK_ULONG slotnum, unsigned long index) argument
506 unsigned long i, index = 0; local
605 find_mech_index(CK_MECHANISM_TYPE mechanism, unsigned long *index) argument
653 unsigned long index; local
[all...]
/illumos-gate/usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/include/
H A Dlm5710_hsi.h13 /* index values - which counter to update */
36 #define HC_SP_INDEX_ETH_FW_TX_CQ_CONS 0 // ETH : FW connection TX CQ index (Formerly HC_INDEX_DEF_C_ETH_FW_TX_CQ_CONS)
37 #define HC_SP_INDEX_EQ_CONS 1 // COMMMON: Event queue index
/illumos-gate/usr/src/lib/libast/common/comp/
H A Dstrchr.c36 #undef index
38 extern char* index(const char*, int);
43 return(index(s, c));
/illumos-gate/usr/src/uts/common/io/xge/drv/
H A Dxge.c272 int index)
276 (void) xge_os_snprintf(msg, MSG_SIZE, "ring%d_configured", index);
277 device_config->ring.queue[index].configured =
279 msg, index < XGELL_RX_RING_NUM_MAX ? 1 : 0);
282 if (!device_config->ring.queue[index].configured)
286 device_config->ring.queue[index].no_snoop_bits = 1;
289 (void) xge_os_snprintf(msg, MSG_SIZE, "ring%d_max", index);
290 device_config->ring.queue[index].max =
295 (void) xge_os_snprintf(msg, MSG_SIZE, "ring%d_initial", index);
296 device_config->ring.queue[index]
271 xge_ring_config(dev_info_t *dev_info, xge_hal_device_config_t *device_config, int index) argument
418 xge_fifo_config(dev_info_t *dev_info, xge_hal_device_config_t *device_config, int index) argument
[all...]
/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dslk.c192 int index; local
201 for (index = 0; index < 8; ++index) {
202 i = format[__m_slk_format][index];
209 for (index = 0; index < 8; ++index) {
211 p = __m_screen->_slk._saved[index];
216 __m_screen->_slk._saved[index]
292 int index; local
305 slk_label(int index) argument
318 slk_set(int index, const char *label, int justify) argument
332 slk_wset(int index, const wchar_t *label, int justify) argument
[all...]
/illumos-gate/usr/src/uts/common/io/chxge/com/
H A Dch_mac.c77 u32 index; member in struct:_cmac_instance
98 mac_intr |= static_aPorts[mac->instance->index];
124 mac_intr &= ~(static_aPorts[mac->instance->index]);
149 mac_intr |= (static_aPorts[mac->instance->index]);
162 MAC_REG_IDLO(mac->instance->index));
164 MAC_REG_IDHI(mac->instance->index));
179 int idx = mac->instance->index;
207 MAC_REG_CSR(mac->instance->index));
212 MAC_REG_CSR(mac->instance->index), val);
223 MAC_REG_CSR(mac->instance->index));
373 mac_create(adapter_t *adapter, int index) argument
[all...]

Completed in 6433 milliseconds

1234567891011>>