Home
last modified time | relevance | path

Searched refs:rs1 (Results 1 – 6 of 6) sorted by relevance

/external/javasqlite/src/main/java/SQLite/JDBC2z/
DJDBCDatabaseMetaData.java732 JDBCResultSet rs1 = null; in getBestRowIdentifier() local
742 rs1 = (JDBCResultSet) in getBestRowIdentifier()
766 rs1 != null && rs1.tr != null && rs1.tr.nrows > 0) { in getBestRowIdentifier()
772 for (int i = 0; i < rs1.tr.ncolumns; i++) { in getBestRowIdentifier()
773 h1.put(rs1.tr.column[i], Integer.valueOf(i)); // android-changed in getBestRowIdentifier()
806 for (int m = 0; m < rs1.tr.nrows; m++) { in getBestRowIdentifier()
807 String r1[] = (String [])(rs1.tr.rows.elementAt(m)); in getBestRowIdentifier()
904 JDBCResultSet rs1 = null; in getPrimaryKeys() local
906 rs1 = (JDBCResultSet) in getPrimaryKeys()
913 if (rs1 == null || rs1.tr == null || rs1.tr.nrows <= 0) { in getPrimaryKeys()
[all …]
/external/openssl/crypto/sha/asm/
Dsha1-sparcv9a.pl551 my ($mnemonic,$rs1,$rs2,$rd)=@_;
559 $ref = "$mnemonic\t$rs1,$rs2,$rd";
562 foreach ($rs1,$rs2,$rd) {
573 0x81b00000|$rd<<25|$rs1<<14|$opf<<5|$rs2,
580 my ($mnemonic,$rs1,$rs2,$rd)=@_;
582 my $ref="$mnemonic\t$rs1,$rs2,$rd";
584 foreach ($rs1,$rs2,$rd) {
589 0x81b00300|$rd<<25|$rs1<<14|$rs2,
/external/llvm/lib/Target/Sparc/
DSparcInstrFormats.td69 bits<5> rs1;
73 let Inst{18-14} = rs1;
DSparcInstrInfo.td226 let rd = 0, rs1 = 0, rs2 = 0 in
230 let rd = 0, rs1 = 1, simm13 = 3 in
299 let rd = O7.Num, rs1 = G0.Num in
303 let rd = I7.Num, rs1 = G0.Num in
/external/qemu/tcg/sparc/
Dtcg-target.c286 static inline void tcg_out_arith(TCGContext *s, int rd, int rs1, int rs2, in tcg_out_arith() argument
289 tcg_out32(s, op | INSN_RD(rd) | INSN_RS1(rs1) | in tcg_out_arith()
293 static inline void tcg_out_arithi(TCGContext *s, int rd, int rs1, in tcg_out_arithi() argument
296 tcg_out32(s, op | INSN_RD(rd) | INSN_RS1(rs1) | in tcg_out_arithi()
300 static void tcg_out_arithc(TCGContext *s, int rd, int rs1, in tcg_out_arithc() argument
303 tcg_out32(s, op | INSN_RD(rd) | INSN_RS1(rs1) in tcg_out_arithc()
451 static void tcg_out_div32(TCGContext *s, int rd, int rs1, in tcg_out_div32() argument
458 tcg_out_arithi(s, TCG_REG_I5, rs1, 31, SHIFT_SRA); in tcg_out_div32()
462 tcg_out_arithc(s, rd, rs1, val2, val2const, in tcg_out_div32()
/external/stlport/test/unit/
Dstring_test.cpp1154 string& rs1 = s1; in oper_tmp() local
1157 CPPUNIT_CHECK( (mypath( string( "/root" ) ) / (rs1 + rs2)).str() == "/root/path1.ext" ); in oper_tmp()