Searched defs:t1 (Results 26 - 50 of 116) sorted by relevance

12345

/openjdk7/jdk/test/java/lang/instrument/
H A DRetransformAgent.java42 static ClassFileTransformer t1, t2, t3, t4; field in class:RetransformAgent
119 t1 = new Tr("TR1", false, 10, true, 11, "RetransformApp", "foo");
120 inst.addTransformer(t1, true);
/openjdk7/jdk/test/java/lang/reflect/Generics/
H A DTestC2.java85 public <T1, T2, T3, T4> C2(T1 t1, T2 t2, T4 t4) {} argument
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/util/
H A DTypesImpl.java73 public boolean isSubtype(TypeMirror t1, TypeMirror t2) { argument
74 return env.jctypes.isSubtype(((TypeMirrorImpl) t1).type,
81 public boolean isAssignable(TypeMirror t1, TypeMirror t2) { argument
82 return env.jctypes.isAssignable(((TypeMirrorImpl) t1).type,
/openjdk7/langtools/src/share/classes/javax/lang/model/util/
H A DTypes.java69 * @param t1 the first type
73 boolean isSameType(TypeMirror t1, TypeMirror t2); argument
79 * @param t1 the first type
86 boolean isSubtype(TypeMirror t1, TypeMirror t2); argument
91 * @param t1 the first type
98 boolean isAssignable(TypeMirror t1, TypeMirror t2); argument
103 * @param t1 the first type
109 boolean contains(TypeMirror t1, TypeMirror t2); argument
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Dec2_mont.c56 mp_int t1; local
58 MP_DIGITS(&t1) = 0;
59 MP_CHECKOK(mp_init(&t1, kmflag));
62 MP_CHECKOK(group->meth->field_sqr(z, &t1, group->meth));
63 MP_CHECKOK(group->meth->field_mul(x, &t1, z, group->meth));
65 MP_CHECKOK(group->meth->field_sqr(&t1, &t1, group->meth));
67 field_mul(&group->curveb, &t1, &t1, group->meth));
68 MP_CHECKOK(group->meth->field_add(x, &t1,
84 mp_int t1, t2; local
[all...]
H A Decp_jm.c60 mp_int *t0, *t1, *M, *S; local
63 t1 = &scratch[1];
89 /* t0 = 2y^2 , t1 = 8y^4 */
92 MP_CHECKOK(group->meth->field_sqr(t0, t1, group->meth));
93 MP_CHECKOK(group->meth->field_add(t1, t1, t1, group->meth));
105 /* ry = M * (S - rx) - t1 */
108 MP_CHECKOK(group->meth->field_sub(ry, t1, ry, group->meth));
110 /* ra*z^4 = 2*t1*(apz
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/geom/
H A DOrder1.java153 public double nextVertical(double t0, double t1) { argument
154 return t1;
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_MacroAssembler_sparc.cpp166 Register t1, // temp register, must be global register for incr_allocated_bytes
173 tlab_allocate(obj, var_size_in_bytes, con_size_in_bytes, t1, slow_case);
175 eden_allocate(obj, var_size_in_bytes, con_size_in_bytes, t1, t2, slow_case);
176 incr_allocated_bytes(size_in_bytes, t1, t2);
181 void C1_MacroAssembler::initialize_header(Register obj, Register klass, Register len, Register t1, Register t2) { argument
182 assert_different_registers(obj, klass, len, t1, t2);
184 ld_ptr(klass, in_bytes(Klass::prototype_header_offset()), t1);
186 set((intx)markOopDesc::prototype(), t1);
188 st_ptr(t1, obj, oopDesc::mark_offset_in_bytes());
191 mov(klass, t1);
162 try_allocate( Register obj, Register var_size_in_bytes, int con_size_in_bytes, Register t1, Register t2, Label& slow_case ) argument
214 allocate_object( Register obj, Register t1, Register t2, Register t3, int hdr_size, int obj_size, Register klass, Label& slow_case ) argument
240 initialize_object( Register obj, Register klass, Register var_size_in_bytes, int con_size_in_bytes, Register t1, Register t2 ) argument
307 allocate_array( Register obj, Register len, Register t1, Register t2, Register t3, int hdr_size, int elt_size, Register klass, Label& slow_case ) argument
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_MacroAssembler_x86.cpp139 void C1_MacroAssembler::try_allocate(Register obj, Register var_size_in_bytes, int con_size_in_bytes, Register t1, Register t2, Label& slow_case) { argument
141 tlab_allocate(obj, var_size_in_bytes, con_size_in_bytes, t1, t2, slow_case);
143 eden_allocate(obj, var_size_in_bytes, con_size_in_bytes, t1, slow_case);
144 incr_allocated_bytes(noreg, var_size_in_bytes, con_size_in_bytes, t1);
149 void C1_MacroAssembler::initialize_header(Register obj, Register klass, Register len, Register t1, Register t2) { argument
152 assert_different_registers(obj, klass, len, t1, t2);
153 movptr(t1, Address(klass, Klass::prototype_header_offset()));
154 movptr(Address(obj, oopDesc::mark_offset_in_bytes()), t1); local
161 movptr(t1, klass);
162 encode_heap_oop_not_null(t1);
163 movl(Address(obj, oopDesc::klass_offset_in_bytes()), t1); local
183 initialize_body(Register obj, Register len_in_bytes, int hdr_size_in_bytes, Register t1) argument
216 movptr(Address(obj, index, Address::times_8, hdr_size_in_bytes - 0*BytesPerWord), t1); local
225 movptr(Address(obj, index, Address::times_8, hdr_size_in_bytes - 1*BytesPerWord), t1); local
236 allocate_object(Register obj, Register t1, Register t2, int header_size, int object_size, Register klass, Label& slow_case) argument
246 initialize_object(Register obj, Register klass, Register var_size_in_bytes, int con_size_in_bytes, Register t1, Register t2) argument
295 allocate_array(Register obj, Register len, Register t1, Register t2, int header_size, Address::ScaleFactor f, Register klass, Label& slow_case) argument
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/medialib/
H A Dmlib_v_ImageAffine_BL_S16.c200 t1 = vis_bshuffle(LD_U16(sp1, 2), LD_U16(sp3, 2)); \
205 s1 = vis_bshuffle(s1, t1); \
234 mlib_d64 t0, t1, t2, t3; variable
466 t1 = vis_bshuffle(LD_U16(sp0, 6), LD_U16(sp1, 6)); \
471 s1 = vis_bshuffle(s1, t1); \
485 mlib_d64 t0, t1, t2, t3; variable
H A Dmlib_v_ImageAffine_BL_U16.c193 t1 = vis_bshuffle(LD_U16(sp1, 2), LD_U16(sp3, 2)); \
198 s1 = vis_bshuffle(s1, t1); \
227 mlib_d64 t0, t1, t2, t3; variable
459 t1 = vis_bshuffle(LD_U16(sp0, 6), LD_U16(sp1, 6)); \
464 s1 = vis_bshuffle(s1, t1); \
478 mlib_d64 t0, t1, t2, t3; variable
H A Dmlib_v_ImageLookUpS16S16Func.c66 mlib_d64 t0, t1, t2; /* destination data */ local
92 t1 = VIS_LD_U16_I(table1, 2 * s1);
96 acc0 = vis_faligndata(t1, acc0);
107 t1 = VIS_LD_U16_I(table1, 2 * s1);
111 acc0 = vis_faligndata(t1, acc0);
349 mlib_d64 t0, t1, t2, t3; /* destination data */ local
376 t1 = VIS_LD_U16_I(table1, 2 * s1);
380 acc0 = vis_faligndata(t1, acc0);
395 t1 = VIS_LD_U16_I(table1, 2 * s1);
399 acc0 = vis_faligndata(t1, acc
[all...]
H A Dmlib_v_ImageLookUpS16U16Func.c66 mlib_d64 t0, t1, t2; /* destination data */ local
92 t1 = VIS_LD_U16_I(table1, 2 * s1);
96 acc0 = vis_faligndata(t1, acc0);
107 t1 = VIS_LD_U16_I(table1, 2 * s1);
111 acc0 = vis_faligndata(t1, acc0);
349 mlib_d64 t0, t1, t2, t3; /* destination data */ local
376 t1 = VIS_LD_U16_I(table1, 2 * s1);
380 acc0 = vis_faligndata(t1, acc0);
395 t1 = VIS_LD_U16_I(table1, 2 * s1);
399 acc0 = vis_faligndata(t1, acc
[all...]
H A Dmlib_v_ImageLookUpS16U8Func.c67 mlib_d64 t0, t1, t2; /* destination data */ local
100 t1 = VIS_LD_U8_I(table1, s1);
108 acc = vis_faligndata(t1, acc);
127 t1 = VIS_LD_U8_I(table1, s1);
135 acc = vis_faligndata(t1, acc);
413 mlib_d64 t0, t1, t2; /* destination data */ local
447 t1 = VIS_LD_U8_I(table1, s1);
455 acc = vis_faligndata(t1, acc);
478 t1 = VIS_LD_U8_I(table1, s1);
486 acc = vis_faligndata(t1, ac
[all...]
H A Dmlib_v_ImageLookUpS32S16Func.c66 mlib_d64 t0, t1, t2; /* destination data */ local
90 t1 = VIS_LD_U16_I(table1, ((mlib_addr) 2 * s1));
94 acc0 = vis_faligndata(t1, acc0);
105 t1 = VIS_LD_U16_I(table1, ((mlib_addr) 2 * s1));
109 acc0 = vis_faligndata(t1, acc0);
344 mlib_d64 t0, t1, t2, t3; /* destination data */ local
369 t1 = VIS_LD_U16_I(table1, ((mlib_addr) 2 * s1));
373 acc0 = vis_faligndata(t1, acc0);
388 t1 = VIS_LD_U16_I(table1, ((mlib_addr) 2 * s1));
392 acc0 = vis_faligndata(t1, acc
[all...]
H A Dmlib_v_ImageLookUpS32U16Func.c66 mlib_d64 t0, t1, t2; /* destination data */ local
90 t1 = VIS_LD_U16_I(table1, ((mlib_addr) 2 * s1));
94 acc0 = vis_faligndata(t1, acc0);
105 t1 = VIS_LD_U16_I(table1, ((mlib_addr) 2 * s1));
109 acc0 = vis_faligndata(t1, acc0);
347 mlib_d64 t0, t1, t2, t3; /* destination data */ local
372 t1 = VIS_LD_U16_I(table1, ((mlib_addr) 2 * s1));
376 acc0 = vis_faligndata(t1, acc0);
391 t1 = VIS_LD_U16_I(table1, ((mlib_addr) 2 * s1));
395 acc0 = vis_faligndata(t1, acc
[all...]
H A Dmlib_v_ImageLookUpS32U8Func.c67 mlib_d64 t0, t1, t2; /* destination data */ local
100 t1 = VIS_LD_U8_I(table1, s1);
108 acc = vis_faligndata(t1, acc);
127 t1 = VIS_LD_U8_I(table1, s1);
135 acc = vis_faligndata(t1, acc);
412 mlib_d64 t0, t1, t2; /* destination data */ local
446 t1 = VIS_LD_U8_I(table1, s1);
454 acc = vis_faligndata(t1, acc);
477 t1 = VIS_LD_U8_I(table1, s1);
485 acc = vis_faligndata(t1, ac
[all...]
H A Dmlib_v_ImageLookUpSIS16S16Func.c81 mlib_d64 t0, t1, t2; /* destination data */ local
103 t1 = VIS_LD_U16_I(tab1, s0);
107 acc = vis_faligndata(t1, acc);
116 t1 = VIS_LD_U16_I(tab1, s0);
120 acc = vis_faligndata(t1, acc);
127 t1 = VIS_LD_U16_I(tab1, s0);
129 acc = vis_faligndata(t1, acc);
145 mlib_d64 t0, t1, t2; /* destination data */ local
171 t1 = VIS_LD_U16_I(tab0, s1);
175 acc = vis_faligndata(t1, ac
267 mlib_d64 t0, t1, t2, t3; /* destination data */ local
423 mlib_d64 t0, t1, t2, t3; /* destination data */ local
477 mlib_d64 t0, t1, t2, t3; /* destination data */ local
542 mlib_d64 t0, t1, t2, t3; /* destination data */ local
606 mlib_d64 t0, t1, t2, t3; /* destination data */ local
[all...]
H A Dmlib_v_ImageLookUpSIS16U16Func.c81 mlib_d64 t0, t1, t2; /* destination data */ local
103 t1 = VIS_LD_U16_I(tab1, s0);
107 acc = vis_faligndata(t1, acc);
116 t1 = VIS_LD_U16_I(tab1, s0);
120 acc = vis_faligndata(t1, acc);
127 t1 = VIS_LD_U16_I(tab1, s0);
129 acc = vis_faligndata(t1, acc);
145 mlib_d64 t0, t1, t2; /* destination data */ local
171 t1 = VIS_LD_U16_I(tab0, s1);
175 acc = vis_faligndata(t1, ac
267 mlib_d64 t0, t1, t2, t3; /* destination data */ local
423 mlib_d64 t0, t1, t2, t3; /* destination data */ local
477 mlib_d64 t0, t1, t2, t3; /* destination data */ local
542 mlib_d64 t0, t1, t2, t3; /* destination data */ local
606 mlib_d64 t0, t1, t2, t3; /* destination data */ local
[all...]
H A Dmlib_v_ImageLookUpSIS16U8Func.c82 mlib_d64 t0, t1, t2; /* destination data */ local
113 t1 = VIS_LD_U8_I(tab1, s0);
121 acc = vis_faligndata(t1, acc);
136 t1 = VIS_LD_U8_I(tab1, s0);
144 acc = vis_faligndata(t1, acc);
182 mlib_d64 t0, t1, t2; /* destination data */ local
218 t1 = VIS_LD_U8_I(tab0, s1);
226 acc = vis_faligndata(t1, acc);
242 t1 = VIS_LD_U8_I(tab0, s1);
250 acc = vis_faligndata(t1, ac
336 mlib_d64 t0, t1, t2; /* destination data */ local
553 mlib_d64 t0, t1, t2; /* destination data */ local
640 mlib_d64 t0, t1, t2; /* destination data */ local
739 mlib_d64 t0, t1, t2; /* destination data */ local
837 mlib_d64 t0, t1, t2; /* destination data */ local
[all...]
H A Dmlib_v_ImageLookUpSIS32S16Func.c81 mlib_d64 t0, t1, t2; /* destination data */ local
104 t1 = VIS_LD_U16_I(tab1, ((mlib_addr) 2 * s0));
108 acc = vis_faligndata(t1, acc);
117 t1 = VIS_LD_U16_I(tab1, ((mlib_addr) 2 * s0));
121 acc = vis_faligndata(t1, acc);
128 t1 = VIS_LD_U16_I(tab1, ((mlib_addr) 2 * s0));
130 acc = vis_faligndata(t1, acc);
146 mlib_d64 t0, t1, t2; /* destination data */ local
173 t1 = VIS_LD_U16_I(tab0, ((mlib_addr) 2 * s1));
177 acc = vis_faligndata(t1, ac
271 mlib_d64 t0, t1, t2, t3; /* destination data */ local
430 mlib_d64 t0, t1, t2, t3; /* destination data */ local
485 mlib_d64 t0, t1, t2, t3; /* destination data */ local
550 mlib_d64 t0, t1, t2, t3; /* destination data */ local
614 mlib_d64 t0, t1, t2, t3; /* destination data */ local
[all...]
H A Dmlib_v_ImageLookUpSIS32U16Func.c81 mlib_d64 t0, t1, t2; /* destination data */ local
104 t1 = VIS_LD_U16_I(tab1, ((mlib_addr) 2 * s0));
108 acc = vis_faligndata(t1, acc);
117 t1 = VIS_LD_U16_I(tab1, ((mlib_addr) 2 * s0));
121 acc = vis_faligndata(t1, acc);
128 t1 = VIS_LD_U16_I(tab1, ((mlib_addr) 2 * s0));
130 acc = vis_faligndata(t1, acc);
146 mlib_d64 t0, t1, t2; /* destination data */ local
173 t1 = VIS_LD_U16_I(tab0, ((mlib_addr) 2 * s1));
177 acc = vis_faligndata(t1, ac
271 mlib_d64 t0, t1, t2, t3; /* destination data */ local
430 mlib_d64 t0, t1, t2, t3; /* destination data */ local
485 mlib_d64 t0, t1, t2, t3; /* destination data */ local
550 mlib_d64 t0, t1, t2, t3; /* destination data */ local
614 mlib_d64 t0, t1, t2, t3; /* destination data */ local
[all...]
H A Dmlib_v_ImageLookUpSIS32U8Func.c82 mlib_d64 t0, t1, t2; /* destination data */ local
113 t1 = VIS_LD_U8_I(tab1, s0);
121 acc = vis_faligndata(t1, acc);
136 t1 = VIS_LD_U8_I(tab1, s0);
144 acc = vis_faligndata(t1, acc);
182 mlib_d64 t0, t1, t2; /* destination data */ local
218 t1 = VIS_LD_U8_I(tab0, s1);
226 acc = vis_faligndata(t1, acc);
242 t1 = VIS_LD_U8_I(tab0, s1);
250 acc = vis_faligndata(t1, ac
335 mlib_d64 t0, t1, t2; /* destination data */ local
552 mlib_d64 t0, t1, t2; /* destination data */ local
639 mlib_d64 t0, t1, t2; /* destination data */ local
738 mlib_d64 t0, t1, t2; /* destination data */ local
836 mlib_d64 t0, t1, t2; /* destination data */ local
[all...]
H A Dmlib_v_ImageLookUpSIU16S16Func.c81 mlib_d64 t0, t1, t2; /* destination data */ local
103 t1 = VIS_LD_U16_I(tab1, s0);
107 acc = vis_faligndata(t1, acc);
116 t1 = VIS_LD_U16_I(tab1, s0);
120 acc = vis_faligndata(t1, acc);
127 t1 = VIS_LD_U16_I(tab1, s0);
129 acc = vis_faligndata(t1, acc);
145 mlib_d64 t0, t1, t2; /* destination data */ local
171 t1 = VIS_LD_U16_I(tab0, s1);
175 acc = vis_faligndata(t1, ac
267 mlib_d64 t0, t1, t2, t3; /* destination data */ local
423 mlib_d64 t0, t1, t2, t3; /* destination data */ local
477 mlib_d64 t0, t1, t2, t3; /* destination data */ local
542 mlib_d64 t0, t1, t2, t3; /* destination data */ local
606 mlib_d64 t0, t1, t2, t3; /* destination data */ local
[all...]
H A Dmlib_v_ImageLookUpSIU16U16Func.c81 mlib_d64 t0, t1, t2; /* destination data */ local
103 t1 = VIS_LD_U16_I(tab1, s0);
107 acc = vis_faligndata(t1, acc);
116 t1 = VIS_LD_U16_I(tab1, s0);
120 acc = vis_faligndata(t1, acc);
127 t1 = VIS_LD_U16_I(tab1, s0);
129 acc = vis_faligndata(t1, acc);
145 mlib_d64 t0, t1, t2; /* destination data */ local
172 t1 = VIS_LD_U16_I(tab0, s1);
176 acc = vis_faligndata(t1, ac
270 mlib_d64 t0, t1, t2, t3; /* destination data */ local
427 mlib_d64 t0, t1, t2, t3; /* destination data */ local
481 mlib_d64 t0, t1, t2, t3; /* destination data */ local
546 mlib_d64 t0, t1, t2, t3; /* destination data */ local
610 mlib_d64 t0, t1, t2, t3; /* destination data */ local
[all...]

Completed in 53 milliseconds

12345