Home
last modified time | relevance | path

Searched refs:KEY (Results 1 – 25 of 47) sorted by relevance

12

/titanic_44/usr/src/uts/common/io/kb8042/
H A Dat_keyprocess.c45 #define KEY(code) (code) macro
80 /* 01 */ KEY(110), /* Esc */
81 /* 02 */ KEY(2), /* 1 */
82 /* 03 */ KEY(3), /* 2 */
83 /* 04 */ KEY(4), /* 3 */
84 /* 05 */ KEY(5), /* 4 */
85 /* 06 */ KEY(6), /* 5 */
86 /* 07 */ KEY(7), /* 6 */
87 /* 08 */ KEY(8), /* 7 */
88 /* 09 */ KEY(9), /* 8 */
[all …]
/titanic_44/usr/src/common/crypto/aes/amd64/
H A Daes_intel.s705 #define KEY xmm1 /* temporary, 128 bits */ macro
711 movaps (%KEYP), %KEY / key
718 pxor %KEY, %STATE / round 0
727 movaps -0x60(%KEYP), %KEY
728 aesenc %KEY, %STATE
729 movaps -0x50(%KEYP), %KEY
730 aesenc %KEY, %STATE
735 movaps -0x40(%KEYP), %KEY
736 aesenc %KEY, %STATE
737 movaps -0x30(%KEYP), %KEY
[all …]
/titanic_44/usr/src/cmd/fs.d/cachefs/mdbug/
H A Dmdbug.h80 #define dbug_traceprint(KEY) db_traceprint(__LINE__, KEY) argument
97 #define dbug_traceprint(KEY) 0 argument
101 #define dbug_execute(KEY, CODE) 0 argument
/titanic_44/usr/src/lib/libsqlite/test/
H A Dfkey1.test27 a INTEGER PRIMARY KEY,
32 FOREIGN KEY (b,c) REFERENCES t2(x,y) ON UPDATE CASCADE
39 x INTEGER PRIMARY KEY,
49 FOREIGN KEY (a,b) REFERENCES t2(x,y)
H A Dunique.test29 a int PRIMARY KEY,
30 b int PRIMARY KEY,
38 a int PRIMARY KEY,
H A Dintpkey.test17 # with INTEGER PRIMARY KEY columns.
29 CREATE TABLE t1(a TEXT PRIMARY KEY, b, c);
48 CREATE TABLE t1(a INTEGER PRIMARY KEY, b, c);
82 } {1 {PRIMARY KEY must be unique}}
432 CREATE TABLE t2(x INTEGER PRIMARY KEY, y, z);
456 CREATE TABLE t2(x INTEGER PRIMARY KEY, y, z);
H A Dmisc1.test204 a TYPE PRIMARY KEY,
205 b TYPE PRIMARY KEY
212 a INTEGER PRIMARY KEY,
213 b TYPE PRIMARY KEY
219 CREATE TABLE t5(a,b,c,PRIMARY KEY(a,b));
529 CREATE TABLE RealTable(TestID INTEGER PRIMARY KEY, TestString TEXT);
530 CREATE TEMP TABLE TempTable(TestID INTEGER PRIMARY KEY, TestString TEXT);
H A Dtable.test426 FOREIGN KEY (a) REFERENCES t4(b) DEFERRABLE INITIALLY DEFERRED
434 FOREIGN KEY (b,c) REFERENCES t4(x,y) MATCH PARTIAL
443 FOREIGN KEY (b,c) REFERENCES t4(x)
451 FOREIGN KEY (b,c) REFERENCES t4(x,y,z)
465 FOREIGN KEY (b,x) REFERENCES t4(x,y)
473 FOREIGN KEY (x,b) REFERENCES t4(x,y)
H A Djoin.test230 CREATE TABLE t5(a INTEGER PRIMARY KEY);
337 CREATE TABLE t9(a INTEGER PRIMARY KEY, b);
340 CREATE TABLE t10(x INTEGER PRIMARY KEY, y);
343 CREATE TABLE t11(p INTEGER PRIMARY KEY, q);
H A Din.test162 # Make sure the IN operator works with INTEGER PRIMARY KEY fields.
166 CREATE TABLE ta(a INTEGER PRIMARY KEY, b);
180 CREATE TABLE tb(a INTEGER PRIMARY KEY, b);
H A Dtrigger2.test61 {CREATE TABLE tbl (a INTEGER PRIMARY KEY, b);}
62 {CREATE TEMPORARY TABLE tbl (a INTEGER PRIMARY KEY, b);}
63 {CREATE TABLE tbl (a, b PRIMARY KEY);}
278 CREATE TABLE tbl(a PRIMARY KEY, b, c);
582 CREATE TABLE tlog(ii INTEGER PRIMARY KEY,
H A Dtclsqlite.test29 set r "sqlite_orig HANDLE FILENAME ?-key CODEC-KEY?"
H A Dindex.test333 PRIMARY KEY(b)
402 b float PRIMARY KEY,
421 } {1 {index associated with UNIQUE or PRIMARY KEY constraint cannot be dropped}}
H A Dvacuum.test37 CREATE TABLE t1(a INTEGER PRIMARY KEY, b, c);
H A Dversion.test101 CREATE TABLE t2(a INTEGER PRIMARY KEY, b UNIQUE, c);
/titanic_44/usr/src/lib/libast/common/port/
H A Dastlicense.c125 #define KEY(s) {s,sizeof(s)-1,0} macro
129 KEY("author"),
130 KEY("class"),
131 KEY("company"),
132 KEY("contributor"),
133 KEY("corporation"),
134 KEY("domain"),
135 KEY("incorporation"),
136 KEY("license"),
137 KEY("location"),
[all …]
/titanic_44/usr/src/lib/libkmf/
H A DTHIRDPARTYLICENSE.descrip1 PORTIONS OF KEY MANAGEMENT FRAMEWORK API (LIBKMF)
/titanic_44/usr/src/cmd/loadkeys/
H A Dloadkeys.y554 %term TABLENAME INT CHAR CHARSTRING CONSTANT FKEY KEY SAME AS SWAP WITH
573 KEY number entrylist '\n'
577 | KEY number SAME AS number '\n'
718 { "key", KEY, 0 },
/titanic_44/usr/src/cmd/truss/
H A Dprint.h124 #define KEY 82 /* print key_t 0 as IPC_PRIVATE */ macro
/titanic_44/usr/src/lib/libnsl/
H A DMakefile.com98 KEY= publickey.o xcrypt.o gen_dhkeys.o
101 $(NSL) $(WRAPPERS) $(RPC) $(SAF) $(YP) $(NIS) $(KEY)
/titanic_44/usr/src/lib/krb5/plugins/kdb/db2/libdb2/hash/
H A Dpage.h128 #define KEY(P, N) (((PAGE8 *)(P)) + KEY_OFF((P), (N))) macro
/titanic_44/usr/src/uts/common/sys/ib/mgt/
H A Dsm_attr.h207 uint32_t KEY; /* qkey or pkey */ member
224 uint32_t KEY; /* qkey or pkey */ member
/titanic_44/usr/src/lib/krb5/plugins/kdb/ldap/libkdb_ldap/
H A Dkdb_ldap.h246 }KEY; typedef
/titanic_44/usr/src/grub/grub-0.97/stage2/
H A Dfsys_reiserfs.c350 #define KEY(cache) ((struct key *) ((int) cache + BLKH_SIZE)) macro
840 key = KEY (cache); in search_stat()
/titanic_44/usr/src/lib/libsqlite/src/
H A Dparse.y129 GLOB IGNORE IMMEDIATE INITIALLY INSTEAD LIKE MATCH KEY
193 ccons ::= PRIMARY KEY sortorder onconf(R). {sqliteAddPrimaryKey(pParse,0,R);} in onconf()
238 tcons ::= PRIMARY KEY LP idxlist(X) RP onconf(R).
243 tcons ::= FOREIGN KEY LP idxlist(FA) RP

12