/titanic_50/usr/src/lib/libsqlite/test/ |
H A D | lastinsert.test | 38 select last_insert_rowid(); 46 select last_insert_rowid(); 54 select last_insert_rowid(); 62 create view v as select * from t1; 63 select last_insert_rowid(); 80 select last_insert_rowid(); 87 select val1 from t2; 94 select val2 from t2; 101 select val3 from t2; 119 select last_insert_rowid(); [all …]
|
H A D | null.test | 37 select * from t1; 45 select ifnull(a+b,99) from t1; 50 select ifnull(b*c,99) from t1; 60 select ifnull(case when b<>0 then 1 else 0 end, 99) from t1; 65 select ifnull(case when not b<>0 then 1 else 0 end, 99) from t1; 70 select ifnull(case when b<>0 and c<>0 then 1 else 0 end, 99) from t1; 75 select ifnull(case when not (b<>0 and c<>0) then 1 else 0 end, 99) from t1; 80 select ifnull(case when b<>0 or c<>0 then 1 else 0 end, 99) from t1; 85 select ifnull(case when not (b<>0 or c<>0) then 1 else 0 end, 99) from t1; 90 select ifnull(case b when c then 1 else 0 end, 99) from t1; [all …]
|
H A D | trigger4.test | 24 select test1.id as id,a as a,b as b 32 select * from test1; 37 select * from test2; 45 select * from test1; 50 select * from test2; 62 select * from test1; 67 select * from test2; 75 select * from test1; 80 select * from test2; 104 select * from test1; [all …]
|
H A D | laststmtchanges.test | 43 select last_statement_change_count(); 51 select last_statement_change_count(); 59 select count() from t0 where x=8; 67 select last_statement_change_count(); 75 select last_statement_change_count(); 93 select last_statement_change_count(); 100 select v1 from t2; 107 select v2 from t2; 125 select last_statement_change_count(); 132 select v1 from t2; [all …]
|
H A D | join4_28.test | 37 select * from t1 left outer join t2 on t1.a=t2.x where t2.z='ok' 42 select * from t1 left outer join t2 on t1.a=t2.x and t2.z='ok' 50 select * from t1 left outer join t2 on t1.a=t2.x where t2.z='ok' 55 select * from t1 left outer join t2 on t1.a=t2.x and t2.z='ok' 60 select * from t1 left outer join t2 on t1.a=t2.x where t2.z>='ok' 65 select * from t1 left outer join t2 on t1.a=t2.x and t2.z>='ok' 70 select * from t1 left outer join t2 on t1.a=t2.x where t2.z IN ('ok') 75 select * from t1 left outer join t2 on t1.a=t2.x and t2.z IN ('ok')
|
H A D | sort.test | 232 select a from t3 order by b, a; 237 select a from t3 order by b, a desc; 242 select a from t3 order by b desc, a; 247 select a from t3 order by b desc, a desc; 254 select a from t3 order by b, a; 259 select a from t3 order by b, a desc; 264 select a from t3 order by b desc, a; 269 select a from t3 order by b desc, a desc;
|
/titanic_50/usr/src/cmd/sgs/rtld/common/ |
H A D | util.c | 1453 ushort_t select = 0; in ld_generic_env() local 1466 select |= SEL_PERMANT; in ld_generic_env() 1468 select |= SEL_REPLACE; in ld_generic_env() 1481 select |= SEL_ACT_STR; in ld_generic_env() 1482 str = (select & SEL_REPLACE) ? &rpl_audit : &prm_audit; in ld_generic_env() 1491 select |= SEL_ACT_SPEC_2; in ld_generic_env() 1502 select |= SEL_ACT_RT2; in ld_generic_env() 1507 select |= SEL_ACT_RT2; in ld_generic_env() 1517 select |= SEL_ACT_RT; in ld_generic_env() 1527 select |= SEL_ACT_SPEC_2; in ld_generic_env() [all …]
|
/titanic_50/usr/src/uts/intel/io/intel_nhm/ |
H A D | intel_nhm.h | 74 #define MC_COR_ECC_CNT_RD(cpu, select) \ argument 75 nhm_pci_getl(SOCKET_BUS(cpu), 3, 2, 0x80 + ((select) * 4), 0) 78 #define MC_DOD_RD(cpu, channel, select) \ argument 79 nhm_pci_getl(SOCKET_BUS(cpu), (channel) + 4, 1, 0x48 + ((select) * 4), 0) 80 #define MC_SAG_RD(cpu, channel, select) \ argument 81 nhm_pci_getl(SOCKET_BUS(cpu), (channel) + 4, 1, 0x80 + ((select) * 4), 0) 82 #define MC_RIR_LIMIT_RD(cpu, channel, select) \ argument 83 nhm_pci_getl(SOCKET_BUS(cpu), (channel) + 4, 2, 0x40 + ((select) * 4), 0) 84 #define MC_RIR_WAY_RD(cpu, channel, select) \ argument 85 nhm_pci_getl(SOCKET_BUS(cpu), (channel) + 4, 2, 0x80 + ((select) * 4), 0)
|
/titanic_50/usr/src/ucblib/libucb/port/gen/ |
H A D | scandir.c | 73 int (*select)(struct direct64 *), in scandir64() 100 if (select != NULL && !(*select)(d)) in scandir64() 140 int (*select)(struct direct *), in scandir() 170 if (select != NULL && !(*select)(d)) in scandir()
|
/titanic_50/usr/src/lib/libc/port/gen/ |
H A D | scandir.c | 75 int (*select)(const struct dirent64 *), in scandir64() 104 if (select != NULL && !(*select)(d)) in scandir64() 160 int (*select)(const struct dirent *), in scandir() 189 if (select != NULL && !(*select)(d)) in scandir()
|
H A D | select.c | 44 #pragma weak _select = select 285 select(int nfds, fd_set *in0, fd_set *out0, fd_set *ex0, struct timeval *tv) in select() function
|
/titanic_50/usr/src/cmd/fm/eversholt/files/i386/i86pc/ |
H A D | gcpu_amd.esc | 45 * register provides counts of ECC errors seen per channel and chip-select 47 * hc:///motherboard/chip/memory-controller/dram-channel/chip-select 54 * The number of pages that must be faulted on a chip-select for repeated 62 * chip-select (must be at least CS_PAGEFLT_THRESH). If a chip-select 70 * correctable ereports are experienced on a single chip-select within 77 #define CSPATH chip/memory-controller/dram-channel/chip-select 86 * members matches the chip-select path. This is used to constrain 88 * chip-select path of the propogation. This is necessary because the 89 * detector element of memory ereports is a cpu and not the chip-select itself. 107 * | includes a chip/memory-controller/dram-channel/chip-select | [all …]
|
/titanic_50/usr/src/lib/libbc/libc/gen/common/ |
H A D | scandir.c | 39 int (*select)(), int (*dcomp)()) in scandir() argument 64 if (select != NULL && !(*select)(d)) in scandir()
|
/titanic_50/usr/src/uts/common/sys/ |
H A D | select.h | 95 #pragma redefine_extname select select_large_fdset 100 #define select select_large_fdset macro 159 extern int select(int, fd_set *_RESTRICT_KYWD, fd_set *_RESTRICT_KYWD,
|
H A D | pm.h | 124 int select; /* Selects the component or dependent */ member 201 int select; /* Selects the component or dependent */ member
|
/titanic_50/usr/src/cmd/sgs/liblddbg/common/ |
H A D | version.c | 143 Dbg_ver_avail_entry(Lm_list *lml, Ver_index *vip, const char *select) in Dbg_ver_avail_entry() argument 148 if (select) { in Dbg_ver_avail_entry() 151 vip->vi_name, select); in Dbg_ver_avail_entry() 154 vip->vi_name, select); in Dbg_ver_avail_entry()
|
/titanic_50/usr/src/cmd/zic/ |
H A D | tzselect.po | 16 msgid "Please select a continent or ocean." 31 msgid "Please select a country or region." 33 msgid "Please select one of the following time zone regions."
|
/titanic_50/usr/src/cmd/cmd-inet/usr.bin/talk/ |
H A D | ctl_transact.c | 105 while ((nready = select(32, (fd_set *)&read_mask, 140 nready = select(32, (fd_set *)&read_mask, 0, 0, &wait);
|
/titanic_50/usr/src/lib/gss_mechs/mech_krb5/mech/ |
H A D | disp_major_status.c | 47 #define GSS_ERROR_STR(value, array, select, min, max, num) \ argument 48 (((select(value) < (min)) || (select(value) > (max))) ? NULL : \
|
/titanic_50/usr/src/tools/scripts/ |
H A D | git-pbchk.py | 189 def ret(select=None): argument 190 if not select: 191 select = lambda x: True function 195 if (os.path.exists(f) and select(f) and not exclude(f)):
|
/titanic_50/usr/src/uts/common/io/ |
H A D | pcic.c | 2735 int select; in pcic_set_window() local 2930 select = win * PCIC_MEM_1_OFFSET; in pcic_set_window() 2933 cmn_err(CE_CONT, "\tselect=%x\n", select); in pcic_set_window() 2952 select = PCIC_MEM_1_OFFSET * win; in pcic_set_window() 2955 PCIC_SYSMEM_0_STARTLOW + select, in pcic_set_window() 2958 PCIC_SYSMEM_0_STARTHI + select, in pcic_set_window() 3067 pcic_putb(pcic, socket, PCIC_SYSMEM_0_STOPLOW + select, in pcic_set_window() 3072 pcic_putb(pcic, socket, PCIC_SYSMEM_0_STOPHI + select, in pcic_set_window() 3082 PCIC_CARDMEM_0_LOW + select, in pcic_set_window() 3086 PCIC_CARDMEM_0_HI + select, in pcic_set_window() [all …]
|
/titanic_50/usr/src/lib/libsqlite/src/ |
H A D | parse.y | 102 create_table_args ::= AS select(S). { in select() function 274 cmd ::= CREATE(X) temp(T) VIEW nm(Y) AS select(S). { 283 cmd ::= select(X). { 288 %type select {Select*} 289 %destructor select {sqliteSelectDelete($$);} 293 select(A) ::= oneselect(X). {A = X;} 294 select(A) ::= select(X) multiselect_op(Y) oneselect(Z). { 404 seltablist_paren(A) ::= select(S). {A = S;} 508 cmd ::= insert_cmd(R) INTO nm(X) dbnm(D) inscollist_opt(F) select(S). 641 expr(A) ::= LP(B) select(X) RP(E). { [all …]
|
/titanic_50/usr/src/lib/libshell/common/fun/ |
H A D | dirs | 20 select i in "$dir" "${_push_stack[@]}" 103 select dir in "$dir" "${_push_stack[@]}"
|
/titanic_50/usr/src/cmd/sendmail/db/os/ |
H A D | os_sleep.c | 58 return (select(0, NULL, NULL, NULL, &t) == -1 ? errno : 0);
|
/titanic_50/usr/src/cmd/svr4pkg/pkgmk/ |
H A D | splpkgmap.c | 406 int i, svnodes, choice, select; in store() local 410 select = 0; in store() 417 select++; /* we need to place at least one object */ in store() 428 if (!select) in store()
|