Searched refs:sth (Results 1 - 25 of 105) sorted by relevance

12345

/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/nios2/
H A Dcdx_sth.s1 # Source file used to test the sth.n instruction
4 sth.n r4,0(r17)
5 sth.n r4,4(r17)
6 sth.n r4,0xe(r17)
7 sth.n r4,0x1e(r17)
8 sth.n r4,0(r5)
9 sth.n r4,4(r5)
10 sth.n r4,0xe(r5)
11 sth.n r4,0x1e(r5)
H A Dcdx_sth.d2 #name: NIOS2 CDX sth.n
5 # Test the sth.n instruction
10 0+0000 <[^>]*> 086d sth.n r4,0\(r17\)
11 0+0002 <[^>]*> 286d sth.n r4,4\(r17\)
12 0+0004 <[^>]*> 786d sth.n r4,14\(r17\)
13 0+0006 <[^>]*> f86d sth.n r4,30\(r17\)
14 0+0008 <[^>]*> 096d sth.n r4,0\(r5\)
15 0+000a <[^>]*> 296d sth.n r4,4\(r5\)
16 0+000c <[^>]*> 796d sth.n r4,14\(r5\)
17 0+000e <[^>]*> f96d sth
[all...]
H A Dsth-r2.s15 sth r4,0(r0)
16 sth r4,4(r0)
17 sth r4,0x7fc(r0)
18 sth r4,-0x800(r0)
19 sth r4,0(r5)
20 sth r4,4(r5)
21 sth r4,0x7fc(r5)
22 sth r4,-0x800(r5)
23 sth r4,data_label(r0)
24 sth r
[all...]
H A Dsth.s15 sth r4,0(r0)
16 sth r4,4(r0)
17 sth r4,0x7ffc(r0)
18 sth r4,-0x8000(r0)
19 sth r4,0(r5)
20 sth r4,4(r5)
21 sth r4,0x7ffc(r5)
22 sth r4,-0x8000(r5)
23 sth r4,data_label(r0)
24 sth r
[all...]
H A Dsth-r2.d2 #name: NIOS2 R2 sth
10 0+0000 <[^>]*> 0000202f sth r4,0\(zero\)
11 0+0004 <[^>]*> 0004202f sth r4,4\(zero\)
12 0+0008 <[^>]*> 07fc202f sth r4,2044\(zero\)
13 0+000c <[^>]*> f800202f sth r4,-2048\(zero\)
14 0+0010 <[^>]*> 0000216f sth r4,0\(r5\)
15 0+0014 <[^>]*> 0004216f sth r4,4\(r5\)
16 0+0018 <[^>]*> 07fc216f sth r4,2044\(r5\)
17 0+001c <[^>]*> f800216f sth r4,-2048\(r5\)
18 0+0020 <[^>]*> 0000202f sth r
[all...]
H A Dsth.d2 #name: NIOS2 sth
9 0+0000 <[^>]*> 0100000d sth r4,0\(zero\)
10 0+0004 <[^>]*> 0100010d sth r4,4\(zero\)
11 0+0008 <[^>]*> 011fff0d sth r4,32764\(zero\)
12 0+000c <[^>]*> 0120000d sth r4,-32768\(zero\)
13 0+0010 <[^>]*> 2900000d sth r4,0\(r5\)
14 0+0014 <[^>]*> 2900010d sth r4,4\(r5\)
15 0+0018 <[^>]*> 291fff0d sth r4,32764\(r5\)
16 0+001c <[^>]*> 2920000d sth r4,-32768\(r5\)
17 0+0020 <[^>]*> 0100000d sth r
[all...]
/netbsd-current/external/bsd/openldap/dist/servers/slapd/back-sql/
H A Dadd.c143 SQLHSTMT sth = SQL_NULL_HSTMT; local
146 rc = backsql_Prepare( dbh, &sth, at->bam_delete_proc, 0 );
155 sth, rc );
164 rc = backsql_BindParamInt( sth, 1,
172 sth, rc );
173 SQLFreeStmt( sth, SQL_DROP );
181 rc = backsql_BindParamID( sth, pno + 1 + po,
189 sth, rc );
190 SQLFreeStmt( sth, SQL_DROP );
208 rc = backsql_BindParamStr( sth, pn
425 SQLHSTMT sth = SQL_NULL_HSTMT; local
583 SQLHSTMT sth = SQL_NULL_HSTMT; local
738 SQLHSTMT sth = SQL_NULL_HSTMT; local
904 SQLHSTMT sth = SQL_NULL_HSTMT; local
[all...]
H A Dproto-sql.h189 RETCODE backsql_Prepare( SQLHDBC dbh, SQLHSTMT *sth, const char* query, int timeout );
191 #define backsql_BindParamStr( sth, par_ind, io, str, maxlen ) \
192 SQLBindParameter( (sth), (SQLUSMALLINT)(par_ind), \
197 #define backsql_BindParamBerVal( sth, par_ind, io, bv ) \
198 SQLBindParameter( (sth), (SQLUSMALLINT)(par_ind), \
204 #define backsql_BindParamInt( sth, par_ind, io, val ) \
205 SQLBindParameter( (sth), (SQLUSMALLINT)(par_ind), \
209 #define backsql_BindParamNumID( sth, par_ind, io, val ) \
210 SQLBindParameter( (sth), (SQLUSMALLINT)(par_ind), \
215 #define backsql_BindParamID( sth, par_in
[all...]
H A Ddelete.c95 SQLHSTMT sth = SQL_NULL_HSTMT; local
101 sth = *sthp;
109 rc = backsql_Prepare( dbh, &sth, eid->eid_oc->bom_delete_proc, 0 );
114 backsql_PrintErrors( bi->sql_db_env, dbh, sth, rc );
124 rc = backsql_BindParamInt( sth, 1, SQL_PARAM_OUTPUT, &prc );
131 sth, rc );
132 SQLFreeStmt( sth, SQL_DROP );
141 rc = backsql_BindParamID( sth, pno + 1, SQL_PARAM_INPUT, &eid->eid_keyval );
148 sth, rc );
149 SQLFreeStmt( sth, SQL_DRO
406 SQLHSTMT sth = SQL_NULL_HSTMT; local
[all...]
H A Dmodrdn.c42 SQLHSTMT sth = SQL_NULL_HSTMT; local
279 SQLFreeStmt( sth, SQL_DROP );
290 rc = backsql_Prepare( dbh, &sth, bi->sql_renentry_stmt, 0 );
296 sth, rc );
304 rc = backsql_BindParamBerVal( sth, 1, SQL_PARAM_INPUT, &realnew_dn );
311 sth, rc );
312 SQLFreeStmt( sth, SQL_DROP );
320 rc = backsql_BindParamID( sth, 2, SQL_PARAM_INPUT, &n_id.eid_id );
327 sth, rc );
328 SQLFreeStmt( sth, SQL_DRO
[all...]
H A Dentry-id.c126 SQLHSTMT sth = SQL_NULL_HSTMT; local
193 rc = backsql_Prepare( dbh, &sth, bi->sql_id_query, 0 );
199 backsql_PrintErrors( bi->sql_db_env, dbh, sth, rc );
248 rc = backsql_BindParamBerVal( sth, 1, SQL_PARAM_INPUT, &tbbDN );
254 backsql_PrintErrors( bi->sql_db_env, dbh, sth, rc );
259 rc = SQLExecute( sth );
264 backsql_PrintErrors( bi->sql_db_env, dbh, sth, rc );
269 backsql_BindRowAsStrings_x( sth, &row, op->o_tmpmemctx );
270 rc = SQLFetch( sth );
373 if ( sth !
392 SQLHSTMT sth = SQL_NULL_HSTMT; local
512 SQLHSTMT sth = SQL_NULL_HSTMT; local
[all...]
H A Dsql-wrap.c41 backsql_PrintErrors( SQLHENV henv, SQLHDBC hdbc, SQLHSTMT sth, int rc ) argument
50 for ( ; rc = SQLError( henv, hdbc, sth, state, &iSqlCode, msg,
60 backsql_Prepare( SQLHDBC dbh, SQLHSTMT *sth, const char *query, int timeout ) argument
64 rc = SQLAllocStmt( dbh, sth );
96 rc = SQLSetStmtOption( *sth, SQL_CONCURRENCY,
102 backsql_PrintErrors( SQL_NULL_HENV, dbh, *sth, rc );
103 SQLFreeStmt( *sth, SQL_DROP );
114 rc = SQLSetStmtOption( *sth, SQL_QUERY_TIMEOUT, timeout );
116 backsql_PrintErrors( SQL_NULL_HENV, dbh, *sth, rc );
117 SQLFreeStmt( *sth, SQL_DRO
130 backsql_BindRowAsStrings_x( SQLHSTMT sth, BACKSQL_ROW_NTS *row, void *ctx ) argument
283 backsql_BindRowAsStrings( SQLHSTMT sth, BACKSQL_ROW_NTS *row ) argument
[all...]
H A Dschema-map.c496 SQLHSTMT sth = SQL_NULL_HSTMT; local
512 rc = backsql_Prepare( dbh, &sth,
524 SQLFreeStmt( sth, SQL_DROP );
530 rc = backsql_Prepare( dbh, &sth, bi->sql_oc_query, 0 );
535 backsql_PrintErrors( bi->sql_db_env, dbh, sth, rc );
539 rc = SQLExecute( sth );
543 backsql_PrintErrors( bi->sql_db_env, dbh, sth, rc );
547 backsql_BindRowAsStrings( sth, &oc_row );
548 rc = SQLFetch( sth );
555 for ( ; BACKSQL_SUCCESS( rc ); rc = SQLFetch( sth ) ) {
[all...]
/netbsd-current/sys/arch/amiga/stand/bootblock/ppcboot/
H A Dkickstart.S56 sth 14,0(13)
59 sth 14,0(13)
92 sth 14,0(13)
115 sth 14,0(13)
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/hppa/reloc/
H A Dapplybug.s88 sth %r20,R'p-$global$(%r22)
90 sth %r20,4(%r26)
91 sth %r19,2(%r26)
95 sth %r19,6(%r26)
/netbsd-current/common/lib/libc/arch/hppa/atomic/
H A Datomic_cas_up.S54 sth %arg2, 0(%arg0)
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/bpf/
H A Dmem.s22 sth [%r1+0x7eef], 0x11223344
/netbsd-current/sys/arch/amigappc/amigappc/
H A Dlocore.S135 sth 8,0x9a(7) /* INTENA */
136 sth 8,0x9c(7) /* INTREQ */
137 sth 8,0x96(7) /* DMACON */
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/m32r/
H A Dsigned-relocs.s61 sth r0, @(#low(0x87654320),r0)
68 sth r0, @(#low(0x1234fff0),r0)
75 sth r0, @(#LOW(0x87654320),r0)
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/tic6x/
H A Dinsns-c674x-reloc.s100 sth .D2T2 b1,*+b14(ext1)
101 sth .D2T1 a1,*+b15(ext2+6)
102 sth .D2T2 b1,*+b15(b1)
103 sth .D2T1 a1,*+b14(a1)
104 sth .D2T2 b1,*+b14(w2-w1)
105 sth .D2T1 a1,*+b14(w4-w3)
H A Dinsns16-doff4.d57 [0-9a-f]+[02468ace] <[^>]*> 0204[ \t]+sth \.D1T1 a16,\*\+a4\(0\)
61 [0-9a-f]+[02468ace] <[^>]*> 0205[ \t]+sth \.D2T1 a16,\*\+b4\(0\)
64 [0-9a-f]+[02468ace] <[^>]*> 0205[ \t]+sth \.D2T1 a16,\*\+b4\(0\)
72 [0-9a-f]+[02468ace] <[^>]*> 0204[ \t]+sth \.D1T1 a16,\*\+a4\(0\)
76 [0-9a-f]+[02468ace] <[^>]*> 0205[ \t]+sth \.D2T1 a16,\*\+b4\(0\)
79 [0-9a-f]+[02468ace] <[^>]*> 0205[ \t]+sth \.D2T1 a16,\*\+b4\(0\)
132 [0-9a-f]+[02468ace] <[^>]*> 0204[ \t]+sth \.D1T1 a16,\*\+a4\(0\)
136 [0-9a-f]+[02468ace] <[^>]*> 0205[ \t]+sth \.D2T1 a16,\*\+b4\(0\)
139 [0-9a-f]+[02468ace] <[^>]*> 0205[ \t]+sth \.D2T1 a16,\*\+b4\(0\)
147 [0-9a-f]+[02468ace] <[^>]*> 0214[ \t]+sth \
[all...]
/netbsd-current/sys/lib/libkern/arch/powerpc/
H A Dmemset.S82 sth r_val, 0(r_dst)
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/arc/
H A Dsda-relocs.d25 0x[0-9a-f]+ 1a00 31c4 sth r7,\[gp\]
33 0x[0-9a-f]+ 1a00 31dc sth.as r7,\[gp\]
/netbsd-current/external/gpl3/gdb.old/dist/ld/testsuite/ld-arc/
H A Dsda-relocs.s18 sth.as r0,[gp,@a@sda]
/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.arch/
H A Dppc64-isa207-atomic-inst.S46 sth 0,0(4)

Completed in 319 milliseconds

12345