Searched defs:rB (Results 1 - 10 of 10) sorted by relevance

/external/dropbear/libtomcrypt/testprof/
H A Decc_test.c35 void *modulus, *mp, *kA, *kB, *rA, *rB; local
40 DO(mp_init_multi(&kA, &kB, &rA, &rB, &modulus, NULL));
67 DO(mp_read_unsigned_bin(rB, buf, sizes[x]));
72 /* compute rB * G = B */
73 DO(ltc_mp.ecc_ptmul(rB, G, B, modulus, 1));
103 mp_clear_multi(kA, kB, rA, rB, modulus, NULL);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/rtasm/
H A Drtasm_ppc.c706 /** vector store: store vR at mem[rA+rB] */
708 ppc_stvx(struct ppc_function *p, uint vR, uint rA, uint rB) argument
710 emit_x(p, 31, vR, rA, rB, 231, "stvx\tv%u, r%u, r%u\n");
713 /** vector load: vR = mem[rA+rB] */
715 ppc_lvx(struct ppc_function *p, uint vR, uint rA, uint rB) argument
717 emit_x(p, 31, vR, rA, rB, 103, "lvx\tv%u, r%u, r%u\n");
722 ppc_lvewx(struct ppc_function *p, uint vR, uint rA, uint rB) argument
724 emit_x(p, 31, vR, rA, rB, 71, "lvewx\tv%u, r%u, r%u\n");
/external/mesa3d/src/gallium/auxiliary/rtasm/
H A Drtasm_ppc.c706 /** vector store: store vR at mem[rA+rB] */
708 ppc_stvx(struct ppc_function *p, uint vR, uint rA, uint rB) argument
710 emit_x(p, 31, vR, rA, rB, 231, "stvx\tv%u, r%u, r%u\n");
713 /** vector load: vR = mem[rA+rB] */
715 ppc_lvx(struct ppc_function *p, uint vR, uint rA, uint rB) argument
717 emit_x(p, 31, vR, rA, rB, 103, "lvx\tv%u, r%u, r%u\n");
722 ppc_lvewx(struct ppc_function *p, uint vR, uint rA, uint rB) argument
724 emit_x(p, 31, vR, rA, rB, 71, "lvewx\tv%u, r%u, r%u\n");
/external/chromium_org/third_party/sqlite/src/src/
H A Dvdbe.c1236 double rB; /* Real value of right operand */ local
1270 rB = sqlite3VdbeRealValue(pIn2);
1272 case OP_Add: rB += rA; break;
1273 case OP_Subtract: rB -= rA; break;
1274 case OP_Multiply: rB *= rA; break;
1278 rB /= rA;
1283 iB = (i64)rB;
1286 rB = (double)(iB % iA);
1291 pOut->u.i = rB;
1294 if( sqlite3IsNaN(rB) ){
[all...]
/external/valgrind/main/VEX/priv/
H A Dhost_mips_defs.c2434 UInt rA, rB, r_dst; local
2438 rB = iregNo(am->Mam.RR.index, mode64);
2456 * addu rA, rA, rB
2463 p = mkFormR(p, 0, rA, rB, rA, 0, 45);
2470 p = mkFormR(p, 0, rA, rB, rA, 0, 33);
H A Dhost_ppc_defs.c3205 UInt rA, rB; local
3209 rB = iregNo(am->Pam.RR.index, mode64);
3211 p = mkFormX(p, opc1, rSD, rA, rB, opc2, 0);
4436 // Use rA==0, so that EA == rB == ir_addr
H A Dguest_ppc_toIR.c1444 /* Standard effective address calc: (rA + rB) */
1445 static IRExpr* ea_rA_idxd ( UInt rA, UInt rB )
1449 vassert(rB < 32);
1450 return binop(mkSzOp(ty, Iop_Add8), getIReg(rA), getIReg(rB));
1474 /* Standard effective address calc: (rA|0) + rB */
1475 static IRExpr* ea_rAor0_idxd ( UInt rA, UInt rB )
1478 vassert(rB < 32);
1479 return (rA == 0) ? getIReg(rB) : ea_rA_idxd( rA, rB );
3005 IRTemp rB local
3761 IRTemp rB = newTemp(ty); local
4272 IRTemp rB = newTemp(ty); local
4776 IRTemp rB = newTemp(ty); local
6031 IRTemp rB = newTemp(ty); local
6948 IRTemp rB = newTemp(ty); local
7087 IRTemp rB = newTemp(ty); local
17470 UInt rB = ifieldRegB( theInstr ); local
[all...]
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c62688 double rB; /* Real value of right operand */ member in struct:vdbeExecUnion::OP_Remainder_stack_vars
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c65032 double rB; /* Real value of right operand */ member in struct:vdbeExecUnion::OP_Remainder_stack_vars
[all...]
/external/sqlite/dist/
H A Dsqlite3.c65060 double rB; /* Real value of right operand */ member in struct:vdbeExecUnion::OP_Remainder_stack_vars
[all...]

Completed in 831 milliseconds