Searched defs:t2 (Results 51 - 75 of 100) sorted by relevance

1234

/openjdk7/jdk/src/solaris/native/sun/awt/medialib/
H A Dmlib_v_ImageLookUpU8U8Func.c111 mlib_d64 t0, t1, t2; /* destination data */ local
137 t2 = VIS_LD_U8_I(table2, (s0 >> 8) & 0xFF);
145 acc = vis_faligndata(t2, acc);
158 t2 = VIS_LD_U8_I(table2, (s0 >> 8) & 0xFF);
166 acc = vis_faligndata(t2, acc);
269 mlib_d64 t0, t1, t2; /* destination data */ local
297 t2 = VIS_LD_U8_I(table2, s0 & 0xFF);
305 acc = vis_faligndata(t2, acc);
319 t2 = VIS_LD_U8_I(table2, s0 & 0xFF);
327 acc = vis_faligndata(t2, ac
431 mlib_d64 t0, t1, t2; /* destination data */ local
593 mlib_d64 t0, t1, t2; /* destination data */ local
982 mlib_d64 t0, t1, t2; /* destination data */ local
1124 mlib_d64 t0, t1, t2; /* destination data */ local
1270 mlib_d64 t0, t1, t2; /* destination data */ local
1416 mlib_d64 t0, t1, t2; /* destination data */ local
[all...]
H A Dmlib_v_ImageAffine_BL.c143 t2 = vis_fpmerge(LD_U8(sp1, srcYStride), LD_U8(sp3, srcYStride)); \
149 s2 = vis_fpmerge(vis_read_lo(s2), vis_read_lo(t2)); \
185 mlib_d64 s0, s1, s2, s3, t0, t1, t2, t3; variable
417 t2 = vis_fpmerge(LD_U8(sp0, srcYStride + 1), \
424 s2 = vis_fpmerge(vis_read_lo(s2), vis_read_lo(t2)); \
502 mlib_d64 t0, t1, t2, t3; variable
H A Dmlib_v_ImageLookUpSIU8S32Func.c458 mlib_d64 t0, t1, t2, t3; /* destination data */ local
485 t2 = *(mlib_d64*)((mlib_u8*)table + s01);
492 t1 = vis_faligndata(t1, t2);
493 t2 = vis_faligndata(t2, t3);
502 dp[2] = t2;
512 t2 = *(mlib_d64*)((mlib_u8*)table + s01);
519 t1 = vis_faligndata(t1, t2);
520 t2 = vis_faligndata(t2, t
557 mlib_d64 t0, t1, t2, t3; /* destination data */ local
882 mlib_d64 t0, t1, t2, t3; /* destination data */ local
976 mlib_d64 t0, t1, t2, t3; /* destination data */ local
[all...]
H A Dmlib_v_ImageLookUpSIU8U8Func.c139 mlib_d64 t0, t1, t2; /* destination data */ local
159 t2 = VIS_LD_U16_I(table, (s0 >> 7) & 0x1FE);
163 acc = vis_faligndata(t2, acc);
171 t2 = VIS_LD_U16_I(table, (s0 >> 7) & 0x1FE);
175 acc = vis_faligndata(t2, acc);
214 mlib_d64 t0, t1, t2; /* destination data */ local
236 t2 = VIS_LD_U16_I(table, (s0 << 1) & 0x1FE);
240 acc = vis_faligndata(t2, acc);
249 t2 = VIS_LD_U16_I(table, (s0 << 1) & 0x1FE);
253 acc = vis_faligndata(t2, ac
293 mlib_d64 t0, t1, t2; /* destination data */ local
372 mlib_d64 t0, t1, t2; /* destination data */ local
451 mlib_d64 t0, t1, t2; /* destination data */ local
667 mlib_d64 t0, t1, t2; /* destination data */ local
767 mlib_d64 t0, t1, t2; /* destination data */ local
998 mlib_d64 t0, t1, t2, t3; /* destination data */ local
1074 mlib_d64 t0, t1, t2, t3; /* destination data */ local
1152 mlib_d64 t0, t1, t2, t3; /* destination data */ local
1230 mlib_d64 t0, t1, t2, t3; /* destination data */ local
1306 mlib_d64 t0, t1, t2; /* destination data */ local
1758 mlib_d64 t0, t1, t2; /* destination data */ local
1845 mlib_d64 t0, t1, t2; /* destination data */ local
1944 mlib_d64 t0, t1, t2; /* destination data */ local
2042 mlib_d64 t0, t1, t2; /* destination data */ local
[all...]
/openjdk7/jdk/test/java/lang/management/ThreadMXBean/
H A DLockingThread.java52 static LockingThread t2 = new Thread2(); field in class:LockingThread
57 t2.setDaemon(true);
59 t2.start();
70 Utils.waitForBlockWaitingState(t2);
73 return new long[] {t1.getId(), t2.getId()};
85 if (ti.getThreadId() == t2.getId()) {
86 t2.checkLockedMonitors(ti);
293 super("t2");
H A DSynchronizerLockingThread.java50 static SynchronizerLockingThread t2 = new Thread2(); field in class:SynchronizerLockingThread
54 t2.setDaemon(true);
56 t2.start();
58 // wait until t1 and t2 waits
68 Utils.waitForBlockWaitingState(t2);
72 return new long[] {t1.getId(), t2.getId()};
82 if (info.getThreadId() == t2.getId()) {
83 t2.checkLocks(info);
336 super("t2");
/openjdk7/jdk/test/java/lang/reflect/Generics/
H A DTestN1.java70 Inner3(X1 x1, X2 x2, X3 x3, T1 t1, T2 t2) {} argument
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/model/
H A DJavacTypes.java86 public boolean isSameType(TypeMirror t1, TypeMirror t2) { argument
87 return types.isSameType((Type) t1, (Type) t2);
90 public boolean isSubtype(TypeMirror t1, TypeMirror t2) { argument
92 validateTypeNotIn(t2, EXEC_OR_PKG);
93 return types.isSubtype((Type) t1, (Type) t2);
96 public boolean isAssignable(TypeMirror t1, TypeMirror t2) { argument
98 validateTypeNotIn(t2, EXEC_OR_PKG);
99 return types.isAssignable((Type) t1, (Type) t2);
102 public boolean contains(TypeMirror t1, TypeMirror t2) { argument
104 validateTypeNotIn(t2, EXEC_OR_PK
[all...]
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_ImageLookUp_64.c176 t2 = *(mlib_d64*)((mlib_u8*)table2 + ((s0 >> 13) & 0x7F8)); \
184 t2 = *(mlib_d64*)((mlib_u8*)table2 + ((s0 >> 5) & 0x7F8)); \
210 mlib_d64 t0, t1, t2, t3; local
236 dp[2] = t2;
243 dp[2] = t2;
261 mlib_d64 t0, t1, t2, t3; local
297 dp[2] = t2;
304 dp[2] = t2;
329 mlib_d64 t0, t1, t2, t3; local
381 dp[2] = t2;
422 mlib_d64 t0, t1, t2, t3; local
593 mlib_d64 t0, t1, t2, t3; local
698 mlib_d64 t0, t1, t2, t3, t4, t5; local
830 mlib_d64 t0, t1, t2, t3; local
[all...]
H A Dmlib_c_ImageLookUp_f.c128 t2 = table1[s0>>8]; \
135 t2 = table1[s1 & 0xFF]; \
144 t2 = *(mlib_u16*)((mlib_u8*)table3 + ((s0 >> 23) & 0x1FE))
151 t2 = *(mlib_u16*)((mlib_u8*)table3 + ((s1 << 1) & 0x1FE))
157 t2 = *(mlib_u16*)((mlib_u8*)table2 + ((s1 >> 23) & 0x1FE))
163 t2 = *(mlib_u32*)((mlib_u8*)table2 + ((s0 >> 14) & 0x3FC)); \
172 t2 = table2[s1>>8]; \
179 t2 = table2[s1 & 0xFF]; \
186 t2 = *(mlib_u16*)((mlib_u8*)table2 + ((s0 >> 7) & 0x1FE)); \
193 t2
232 mlib_u32 s0, s1, s2, t0, t1, t2, t3, t; local
322 mlib_u32 s0, s1, s2, t0, t1, t2, t3, t; local
435 mlib_u32 s0, s1, s2, t0, t1, t2, t3, t; local
585 mlib_u32 s0, s1, s2, t0, t1, t2, t3, t; local
806 mlib_u32 s0, s1, t0, t1, t2, t3; local
904 mlib_u32 s0, s1, t0, t1, t2, t3; local
1025 mlib_u32 s0, s1, t0, t1, t2, t3; local
1183 mlib_u32 s0, s1, t0, t1, t2, t3; local
1471 mlib_u32 s0, t0, t1, t2, t3; local
1522 mlib_u32 s0, t0, t1, t2, t3; local
1590 mlib_u32 s0, t0, t1, t2, t3; local
1683 mlib_u32 s0, t0, t1, t2, t3; local
1876 mlib_s32 s0, t0, s1, t1, t, t2, off; local
2169 mlib_u32 s0, t0, s1, t1, t2; local
2318 mlib_u32 t0, t1, t2, t3, t4, t5; local
2439 mlib_u32 t0, t1, t2, t3; local
2587 mlib_u32 t0, t1, t2, t3, t4, t5; local
2708 mlib_u32 t0, t1, t2, t3; local
2887 mlib_u32 s0, t0, s1, t1, t2; local
3024 mlib_u32 s0, s1, t0, t1, t2, t3; local
3137 mlib_u32 s0, t0, s1, t1, t2, t3, t4, t5; local
3419 mlib_u32 s0, t0, t1, t2, t3; local
3524 mlib_u32 s0, t0, t1, t2, t3, t4, t5; local
3656 mlib_u32 s0, t0, t1, t2, t3; local
[all...]
/openjdk7/jdk/test/javax/management/mxbean/
H A DGenericArrayTypeTest.java158 return t2;
161 t2 = v;
163 private MonitorInfo[] t2; field in class:GenericArrayTypeTest.Test
298 MonitorInfo[] t2 = new MonitorInfo[] {
304 t4.put("key", t2);
308 t6.add(t2);
312 t8.add(t2);
323 test.setT2(t2);
H A DMXBeanTest.java704 private static void compareTabularType(TabularType t1, TabularType t2) { argument
705 if (t1.equals(t2)) {
709 if (t1.getClassName().equals(t2.getClassName()))
711 if (t1.getDescription().equals(t2.getDescription()))
715 System.out.println("t2 description: " + t2.getDescription());
717 if (t1.getIndexNames().equals(t2.getIndexNames()))
719 if (t1.getRowType().equals(t2.getRowType()))
/openjdk7/langtools/test/tools/javac/util/list/
H A DTList.java496 static <T> boolean equal(T t1, T t2) { argument
497 return (t1 == null ? t2 == null : t1.equals(t2));
/openjdk7/langtools/test/tools/javap/4870651/
H A DTest.java64 abstract void t2() throws E; method in class:Test
/openjdk7/jdk/test/sun/nio/cs/OLD/
H A DIBM949_OLD.java1911 private char composeTT(char t1, char t2) { argument
1912 return t2;
H A DIBM970_OLD.java1634 private char composeTT(char t1, char t2) { argument
1635 return t2;
H A DIBM933_OLD.java3089 private char composeTT(char t1, char t2) { argument
3090 return t2;
/openjdk7/hotspot/src/share/vm/opto/
H A Daddnode.cpp111 const Type *t2 = phase->type( in(2) ); local
113 int con_right = t2->singleton();
127 if( con_right && t2 != Type::TOP && // Right input is a constant?
145 Node *x2 = phase->makecon( add1->as_Add()->add_ring( t2, t12 ));
209 const Type *t2 = phase->type( in(2) ); local
211 if( t2 == Type::TOP ) return Type::TOP;
215 if( (t1 == bot) || (t2 == bot) ||
216 (t1 == Type::BOTTOM) || (t2 == Type::BOTTOM) )
220 const Type *tadd = add_of_identity( t1, t2 );
223 return add_ring(t1,t2); // Loca
589 const TypeX *t2 = temp_t2->is_intptr_t(); local
666 const Type *t2 = phase->type( in(Offset) ); local
[all...]
H A Ddivnode.cpp494 const Type *t2 = phase->type( in(2) ); local
496 if( t2 == Type::TOP ) return Type::TOP;
504 if( (t1 == bot) || (t2 == bot) ||
505 (t1 == Type::BOTTOM) || (t2 == Type::BOTTOM) )
511 const TypeInt *i2 = t2->is_int();
593 const Type *t2 = phase->type( in(2) ); local
595 if( t2 == Type::TOP ) return Type::TOP;
603 if( (t1 == bot) || (t2 == bot) ||
604 (t1 == Type::BOTTOM) || (t2 == Type::BOTTOM) )
610 const TypeLong *i2 = t2
660 const Type *t2 = phase->type( in(2) ); local
711 const Type *t2 = phase->type( in(2) ); local
748 const Type *t2 = phase->type( in(2) ); local
805 const Type *t2 = phase->type( in(2) ); local
970 const Type *t2 = phase->type( in(2) ); local
1143 const Type *t2 = phase->type( in(2) ); local
1184 const Type *t2 = phase->type( in(2) ); local
1228 const Type *t2 = phase->type( in(2) ); local
[all...]
H A Dmulnode.cpp61 const Type *t2 = phase->type( in(2) ); local
65 if( !(t2->singleton() ||
72 t1 = t2;
73 t2 = t;
81 if( t2->singleton() && // Right input is a constant?
84 if( t2 == Type::TOP ) return NULL;
101 const Type *tcon01 = ((MulNode*)mul1)->mul_ring(t2,t12);
106 t2 = tcon01;
120 const Type *tcon01 = mul_ring(t2,t12);
143 const Type *t2 local
386 const Type *t2 = phase->type( in(2) ); local
441 const TypeInt* t2 = phase->type(in(2))->isa_int(); local
470 const TypeInt *t2 = phase->type( in(2) )->isa_int(); local
568 const TypeLong *t2 = phase->type( in(2) )->isa_long(); local
598 const TypeLong *t2 = phase->type( in(2) )->isa_long(); local
649 const TypeInt *t2 = t->isa_int(); local
705 const Type *t2 = phase->type( in(2) ); local
761 const TypeInt *t2 = t->isa_int(); local
814 const Type *t2 = phase->type( in(2) ); local
860 const TypeInt *t2 = phase->type(in(2))->isa_int(); local
890 const TypeInt *t2 = phase->type( in(2) )->isa_int(); local
959 const Type *t2 = phase->type( in(2) ); local
1021 const Type *t2 = phase->type( in(2) ); local
1079 const TypeInt *t2 = phase->type(add->in(2))->isa_int(); local
1101 const TypeInt *t2 = phase->type( in(2) )->isa_int(); local
1169 const Type *t2 = phase->type( in(2) ); local
1247 const TypeInt *t2 = phase->type( in(2) )->isa_int(); local
1298 const Type *t2 = phase->type( in(2) ); local
[all...]
H A Dsubnode.cpp89 const Type* t2 = (in2 == this) ? Type::TOP : phase->type(in2); local
90 if( t2 == Type::TOP ) return Type::TOP;
97 if( t1 == Type::BOTTOM || t2 == Type::BOTTOM )
100 return sub(t1,t2); // Local flavor of type subtraction
146 const Type *t2 = phase->type( in2 ); local
147 if( t2 == Type::TOP ) return NULL;
149 if( t2->base() == Type::Int ){ // Might be bottom or top...
150 const TypeInt *i = t2->is_int();
242 const Type *SubINode::sub( const Type *t1, const Type *t2 ) const {
244 const TypeInt *r1 = t2
377 const Type* t2 = (in2 == this) ? Type::TOP : phase->type(in2); local
399 const Type *t2 = phase->type( in(2) ); local
442 const Type *t2 = phase->type( in(2) ); local
786 const TypeKlassPtr* t2 = phase->type(in(2))->isa_klassptr(); local
950 const Type* t2 = (in2 == this) ? Type::TOP : phase->type(in2); local
980 const Type* t2 = (in2 == this) ? Type::TOP : phase->type(in2); local
1017 const TypeD *t2 = in(idx_con)->bottom_type()->is_double_constant(); local
1387 const Type *t2 = phase->type( in(2) ); local
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A DinterfaceSupport.hpp264 JavaThread* t2 = (JavaThread*) t; local
265 if (t2->thread_state() == _thread_in_native) {
266 _thread = t2;
267 ThreadStateTransition::transition_from_native(t2, _thread_in_vm);
/openjdk7/jdk/src/share/native/java/lang/fdlibm/src/
H A De_pow.c119 double y1,t1,t2,r,s,t,u,v,w; local
218 t2 = v-(t1-u);
266 t2 = z_l-(((t1-t)-dp_h[k])-z_h);
269 /* split up y into y1+y2 and compute (y1+y2)*(t1+t2) */
272 p_l = (y-y1)*t1+y*t2;
/openjdk7/jdk/test/java/util/concurrent/ConcurrentHashMap/
H A DMapCheck.java145 static void t2(String nm, int n, Map s, Object[] key, int expect) { method in class:MapCheck
508 t2("Remove (absent) ", absentSize, s, absent, 0);
518 t2("Remove (absent) ", size, s, key, 0);
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DForkJoinTask.java680 * @param t2 the second task
683 public static void invokeAll(ForkJoinTask<?> t1, ForkJoinTask<?> t2) { argument
684 t2.fork();
686 t2.join();

Completed in 230 milliseconds

1234