Searched defs:r1 (Results 1 - 24 of 24) sorted by relevance

/openjdk7/jdk/test/sun/security/smartcardio/
H A DTestChannel.java41 static final byte[] r1 = parse("07:a0:00:00:00:62:81:01:04:01:00:00:24:05:00:0b:04:b0:55:90:00"); field in class:TestChannel
42 // static final byte[] r1 = parse("07 A0 00 00 00 62 81 01 04 01 00 00 24 05 00 0B 04 B0 25 90 00");
/openjdk7/hotspot/test/compiler/7116216/
H A DLargeFrame.java27 public static void method_with_many_locals(Object r1, int r2, int r3, int r4, int r5, int r6, int r7, Object r8) { argument
/openjdk7/jdk/src/share/native/java/lang/fdlibm/src/
H A Ds_expm1.c150 double y,hi,lo,c=0,t,e,hxs,hfx,r1; local
200 r1 = one+hxs*(Q1+hxs*(Q2+hxs*(Q3+hxs*(Q4+hxs*Q5))));
201 t = 3.0-r1*hfx;
202 e = hxs*((r1-t)/(6.0 - x*t));
H A De_lgamma_r.c154 r1 = 1.39200533467621045958e+00, /* 0x3FF645A7, 0x62C4AB74 */ variable
293 q = one+y*(r1+y*(r2+y*(r3+y*(r4+y*(r5+y*r6)))));
/openjdk7/langtools/test/tools/javac/api/
H A DT6392782.java85 public Integer reduce(Integer r1, Integer r2) { argument
86 return (r1 == null ? 0 : r1) + (r2 == null ? 0 : r2);
97 public Integer reduce(Integer r1, Integer r2) { argument
98 return (r1 == null ? 0 : r1) + (r2 == null ? 0 : r2);
/openjdk7/jdk/test/sun/java2d/cmm/ColorConvertOp/
H A DImageComparator.java69 public boolean compare(double r1, double g1, double b1, argument
72 double d1 = Math.abs(r1 - r2);
/openjdk7/langtools/src/share/classes/com/sun/source/util/
H A DTreeScanner.java61 * public Integer reduce(Integer r1, Integer r2) {
62 * return (r1 == null ? 0 : r1) + (r2 == null ? 0 : r2);
106 public R reduce(R r1, R r2) { argument
107 return r1;
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Decl_gf.c268 mp_digit r0 = 0, r1 = 0, r2 = 0; local
283 r1 = MP_DIGIT(b,1);
290 MP_ADD_CARRY(a1, r1, r1, carry, carry);
299 : "=r"(r0), "=r"(r1), "=r"(r2), "=r"(carry)
301 "0" (r0), "1" (r1), "2" (r2)
307 MP_DIGIT(r, 1) = r1;
321 MP_SUB_BORROW(r1, a1, r1, carry, carry);
328 : "=r"(r0), "=r"(r1), "
351 mp_digit r0 = 0, r1 = 0, r2 = 0, r3 = 0; local
445 mp_digit r0 = 0, r1 = 0, r2 = 0, r3 = 0, r4 = 0; local
522 mp_digit r0 = 0, r1 = 0, r2 = 0, r3 = 0, r4 = 0, r5 = 0; local
613 mp_digit r0 = 0, r1 = 0, r2 = 0; local
697 mp_digit r0 = 0, r1 = 0, r2 = 0, r3 = 0; local
790 mp_digit r0 = 0, r1 = 0, r2 = 0, r3 = 0, r4 = 0; local
858 mp_digit r0 = 0, r1 = 0, r2 = 0, r3 = 0, r4 = 0, r5 = 0; local
[all...]
H A Decp_192.c65 mp_digit r0, r1, r2; local
149 * r1 == 0xffffffffffffffffff or
150 * r1 == 0xfffffffffffffffffe and r0 = 0xfffffffffffffffff
152 * complement value (1,1,0)). (r0, r1, r2)
187 r1 = MP_DIGIT(a, 1);
193 MP_ADD_CARRY(r1, a3, r1, carry, carry);
197 MP_ADD_CARRY(r1, a5, r1, carry, carry);
200 MP_ADD_CARRY_ZERO(r1, a
296 mp_digit r0 = 0, r1 = 0, r2 = 0; local
377 mp_digit r0 = 0, r1 = 0, r2 = 0; local
[all...]
H A Decp_224.c66 mp_digit r0, r1, r2, r3; local
225 r1 = MP_DIGIT(a, 1);
233 MP_ADD_CARRY_ZERO (r1, a3b, r1, carry);
236 MP_ADD_CARRY_ZERO (r1, a5b, r1, carry);
241 MP_SUB_BORROW(r1, a5a_a4b, r1, carry, carry);
245 MP_SUB_BORROW(r1, a6b , r1, carr
[all...]
H A Decp_256.c59 mp_digit r0, r1, r2, r3, r4, r5, r6, r7; local
64 mp_digit r0, r1, r2, r3; local
98 r1 = MP_DIGIT(a,1);
128 MP_ADD_CARRY(r1, a9, r1, carry, carry);
142 MP_ADD_CARRY(r1, a10, r1, carry, carry);
152 MP_SUB_BORROW(r1, a12, r1, carry, carry);
162 MP_SUB_BORROW(r1, a1
[all...]
H A Dmpi.c4145 mp_digit r1, r0, m; local
4149 r1 = Nhi % d1;
4152 r1 = (r1 << MP_HALF_DIGIT_BIT) | (Nlo >> MP_HALF_DIGIT_BIT);
4153 if (r1 < m) {
4154 q1--, r1 += divisor;
4155 if (r1 >= divisor && r1 < m) {
4156 q1--, r1 += divisor;
4159 r1
[all...]
/openjdk7/langtools/test/tools/javap/4870651/
H A DTest.java42 abstract int r1(); method in class:Test
/openjdk7/hotspot/src/share/vm/opto/
H A Daddnode.cpp346 const TypeInt *r1 = t1->is_int(); local
347 int lo = r0->_lo + r1->_lo;
348 int hi = r0->_hi + r1->_hi;
349 if( !(r0->is_con() && r1->is_con()) ) {
351 if( (r0->_lo & r1->_lo) < 0 && lo >= 0 ) {
354 if( (~(r0->_hi | r1->_hi)) < 0 && hi < 0 ) {
365 return TypeInt::make( lo, hi, MAX2(r0->_widen,r1->_widen) );
464 const TypeLong *r1 = t1->is_long(); local
465 jlong lo = r0->_lo + r1->_lo;
466 jlong hi = r0->_hi + r1
753 const TypeInt *r1 = t1->is_int(); local
790 const TypeLong *r1 = t1->is_long(); local
808 const TypeInt *r1 = t1->is_int(); local
826 const TypeLong *r1 = t1->is_long(); local
841 const TypeInt *r1 = t1->is_int(); local
928 const TypeInt *r1 = t1->is_int(); local
[all...]
H A Ddivnode.cpp51 uint32_t ad, anc, delta, q1, r1, q2, r2, t; local
60 r1 = two31 - q1*anc; // Init. r1 = rem(2**p, |nc|).
66 r1 = 2*r1; // Update r1 = rem(2**p, |nc|).
67 if (r1 >= anc) { // (Must be an unsigned
69 r1 = r1 - anc;
78 } while (q1 < delta || (q1 == delta && r1
219 uint64_t ad, anc, delta, q1, r1, q2, r2, t; local
[all...]
H A Dmulnode.cpp234 const TypeInt *r1 = t1->is_int(); local
241 int32 lo1 = r1->_lo;
243 int32 hi1 = r1->_hi;
265 return TypeInt::make(lo0, hi0, MAX2(r0->_widen,r1->_widen));
330 const TypeLong *r1 = t1->is_long(); local
337 jlong lo1 = r1->_lo;
339 jlong hi1 = r1->_hi;
361 return TypeLong::make(lo0, hi0, MAX2(r0->_widen,r1->_widen));
408 const TypeInt *r1 = t1->is_int(); local
409 int widen = MAX2(r0->_widen,r1
540 const TypeLong *r1 = t1->is_long(); local
720 const TypeInt *r1 = t1->is_int(); // Handy access local
829 const TypeLong *r1 = t1->is_long(); // Handy access local
976 const TypeInt *r1 = t1->is_int(); // Handy access local
1038 const TypeLong *r1 = t1->is_long(); // Handy access local
1186 const TypeInt *r1 = t1->is_int(); // Handy access local
1315 const TypeLong *r1 = t1->is_long(); // Handy access local
[all...]
H A Dsubnode.cpp244 const TypeInt *r1 = t2->is_int(); local
245 int32 lo = r0->_lo - r1->_hi;
246 int32 hi = r0->_hi - r1->_lo;
250 if( (((r0->_lo ^ r1->_hi) >= 0) || // lo ends have same signs OR
252 (((r0->_hi ^ r1->_lo) >= 0) || // hi ends have same signs OR
254 return TypeInt::make(lo,hi,MAX2(r0->_widen,r1->_widen));
353 const TypeLong *r1 = t2->is_long(); local
354 jlong lo = r0->_lo - r1->_hi;
355 jlong hi = r0->_hi - r1->_lo;
359 if( (((r0->_lo ^ r1
497 const TypeInt *r1 = t2->is_int(); local
521 const TypeInt *r1 = t2->is_int(); local
604 const TypeLong *r1 = t2->is_long(); local
627 const TypePtr *r1 = t2->is_ptr(); local
865 const TypePtr *r1 = t2->make_ptr(); local
[all...]
/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeInterpreter.cpp1342 jint r1 = SharedRuntime::d2i(STACK_DOUBLE(-1)); local
1344 SET_STACK_INT(r1, 0);
1350 jfloat r1 = VMdouble2Float(STACK_DOUBLE(-1)); local
1352 SET_STACK_FLOAT(r1, 0);
1358 jlong r1 = SharedRuntime::d2l(STACK_DOUBLE(-1)); local
1360 SET_STACK_LONG(r1, 1);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DTypes.java3092 public boolean returnTypeSubstitutable(Type r1, Type r2) { argument
3093 if (hasSameArgs(r1, r2))
3094 return resultSubtype(r1, r2, Warner.noWarnings);
3096 return covariantReturnType(r1.getReturnType(),
3101 public boolean returnTypeSubstitutable(Type r1, argument
3104 if (isSameType(r1.getReturnType(), r2res))
3106 if (r1.getReturnType().isPrimitive() || r2res.isPrimitive())
3109 if (hasSameArgs(r1, r2))
3110 return covariantReturnType(r1.getReturnType(), r2res, warner);
3113 if (isSubtypeUnchecked(r1
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dinterp_masm_sparc.cpp328 void InterpreterMacroAssembler::load_unaligned_double(Register r1, int offset, FloatRegister d) { argument
332 ldf(FloatRegisterImpl::D, r1, offset, d);
334 ldf(FloatRegisterImpl::S, r1, offset, d);
335 ldf(FloatRegisterImpl::S, r1, offset + Interpreter::stackElementSize, d->successor());
340 void InterpreterMacroAssembler::store_unaligned_double(FloatRegister d, Register r1, int offset) { argument
344 stf(FloatRegisterImpl::D, d, r1, offset);
346 debug_only(stx(G0, r1, offset+Interpreter::stackElementSize);)
348 stf(FloatRegisterImpl::S, d, r1, offset);
349 stf(FloatRegisterImpl::S, d->successor(), r1, offset + Interpreter::stackElementSize);
355 void InterpreterMacroAssembler::load_unaligned_long(Register r1, in argument
366 store_unaligned_long(Register l, Register r1, int offset) argument
[all...]
H A Dassembler_sparc.cpp605 void MacroAssembler::jmp2(Register r1, Register r2, const char* file, int line ) { argument
607 // This can only be traceable if r1 & r2 are visible after a window save
617 add(r1->after_save(), r2->after_save(), O2);
638 jmpl(r1, r2, G0);
640 void MacroAssembler::jmp(Register r1, int offset, const char* file, int line ) { argument
642 // This can only be traceable if r1 is visible after a window save
652 add(r1->after_save(), offset, O2);
673 jmp(r1, offset);
/openjdk7/jdk/src/macosx/classes/sun/java2d/
H A DOSXSurfaceData.java1065 void intersection(Rectangle r1, Rectangle r2, Rectangle r3) { argument
1067 int tx1 = r1.x;
1068 int ty1 = r1.y;
1069 long tx2 = tx1 + r1.width;
1070 long ty2 = ty1 + r1.height;
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LinearScan.cpp3239 int r1 = i1->assigned_reg(); local
3243 if (i1->intersects(i2) && (r1 == r2 || r1 == r2Hi || (r1Hi != any_reg && (r1Hi == r2 || r1Hi == r2Hi)))) {
3911 // (e.g. r1 -> r2, r2 -> r1), so one interval must be spilled to memory
4022 const Range* r1 = this; local
4024 assert(r1 != NULL && r2 != NULL, "null ranges not allowed");
4025 assert(r1 != _end && r2 != _end, "empty ranges not allowed");
4028 if (r1->from() < r2->from()) {
4029 if (r1
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dgtk2_interface.c974 int r1 = *white++; local
976 int alpha = 0xff + r2 - r1;

Completed in 121 milliseconds