Searched refs:t2 (Results 101 - 125 of 664) sorted by relevance

1234567891011>>

/external/toybox/toys/posix/
H A Duniq.c78 char *t1, *t2; local
83 t2 = skip(prevline);
86 t2 = prevline;
90 diff = !(toys.optflags & FLAG_i) ? strcmp(t1, t2) : strcasecmp(t1, t2);
92 diff = !(toys.optflags & FLAG_i) ? strncmp(t1, t2, TT.maxchars)
93 : strncasecmp(t1, t2, TT.maxchars);
/external/valgrind/none/tests/mips64/
H A Dlogical_instructions.c21 TEST1("and $t0, $t1, $t2", reg_val1[i], reg_val1[N-i-1],
22 t0, t1, t2);
31 TEST2("andi $t2, $t3, 0xffff", reg_val1[i], 0xffff, t2, t3);
35 TEST2("andi $t2, $t3, 0xffff", reg_val2[i], 0xffff, t2, t3);
54 TEST1("nor $t0, $t1, $t2", reg_val1[i], reg_val1[N-i-1],
55 t0, t1, t2);
62 TEST1("or $t0, $t1, $t2", reg_val1[i], reg_val1[N-i-1],
63 t0, t1, t2);
[all...]
H A Darithmetic_instruction.c31 TEST1("add $t0, $t1, $t2", reg_val1[i], reg_val1[N-i-1],
32 t0, t1, t2);
40 TEST2("addi $t2, $t3, 0xffff", reg_val1[i], 0xffff, t2, t3);
50 TEST2("addiu $t2, $t3, 0xffff", reg_val1[i], 0xffff, t2, t3);
59 TEST1("addu $t0, $t1, $t2", reg_val1[i], reg_val1[N-i-1],
60 t0, t1, t2);
81 TEST1("dadd $t0, $t1, $t2", reg_val1[i], reg_val1[N-i-1],
82 t0, t1, t2);
[all...]
/external/aac/libAACenc/src/
H A Dbit_cnt.cpp116 INT t0,t1,t2,t3; local
129 t2= values[i+2];
134 bc1_2+=FDKaacEnc_huff_ltab1_2[t0+1][t1+1][t2+1][t3+1];
138 bc5_6+=FDKaacEnc_huff_ltab5_6[t2+4][t3+4];
142 t2=fixp_abs(t2);
146 bc3_4+= FDKaacEnc_huff_ltab3_4[t0][t1][t2][t3];
149 bc7_8+=FDKaacEnc_huff_ltab7_8[t2][t3];
152 bc9_10+=FDKaacEnc_huff_ltab9_10[t2][t3];
155 bc11+= (INT) FDKaacEnc_huff_ltab11[t2][t
192 INT t0,t1,t2,t3; local
548 INT i,t0,t1,t2,t3,t00,t01; local
782 INT i,t0,t1,t2,t3,t00,t01; local
[all...]
/external/harfbuzz_ng/test/api/
H A Dtest-ot-tag.c40 hb_script_t t1, t2; local
45 hb_ot_tags_from_script (script, &t1, &t2);
48 g_assert_cmphex (t2, ==, HB_OT_TAG_DEFAULT_SCRIPT);
57 hb_script_t t1, t2; local
63 hb_ot_tags_from_script (script, &t1, &t2);
66 g_assert_cmphex (t2, ==, tag2);
75 hb_script_t t1, t2; local
81 hb_ot_tags_from_script (HB_SCRIPT_HIRAGANA, &t1, &t2);
83 g_assert_cmphex (t2, ==, HB_OT_TAG_DEFAULT_SCRIPT);
/external/fio/crc/
H A Dsha512.c107 uint64_t a, b, c, d, e, f, g, h, t1, t2; local
125 t2 = e0(a) + Maj(a,b,c); d+=t1; h=t1+t2;
127 t2 = e0(h) + Maj(h,a,b); c+=t1; g=t1+t2;
129 t2 = e0(g) + Maj(g,h,a); b+=t1; f=t1+t2;
131 t2 = e0(f) + Maj(f,g,h); a+=t1; e=t1+t2;
133 t2
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_blorp_blit.cpp570 struct brw_reg t2; member in class:brw_blorp_blit_program
788 this->t2 = vec16(retype(brw_vec8_grf(reg++, 0), BRW_REGISTER_TYPE_UW));
890 brw_MOV(&func, t2, brw_imm_v(0x3210));
892 stride(t2, 1, 4, 0));
964 brw_AND(&func, t2, Y, brw_imm_uw(1)); /* Y & 0b1 */
965 brw_SHL(&func, t2, t2, brw_imm_uw(2)); /* (Y & 0b1) << 2 */
966 brw_OR(&func, t1, t1, t2); /* (X & ~0b1011) >> 1 | (Y & 0b1) << 2 */
967 brw_AND(&func, t2, X, brw_imm_uw(1)); /* X & 0b1 */
968 brw_OR(&func, Xp, t1, t2);
[all...]
/external/skia/src/pathops/
H A DSkPathOpsConic.h97 SkDConic subDivide(double t1, double t2) const;
99 static SkDConic SubDivide(const SkPoint a[kPointCount], SkScalar weight, double t1, double t2) { argument
102 return conic.subDivide(t1, t2);
105 SkDPoint subDivide(const SkDPoint& a, const SkDPoint& c, double t1, double t2,
110 double t1, double t2, SkScalar* newWeight) {
113 return conic.subDivide(a, c, t1, t2, newWeight);
108 SubDivide(const SkPoint pts[kPointCount], SkScalar weight, const SkDPoint& a, const SkDPoint& c, double t1, double t2, SkScalar* newWeight) argument
H A DSkPathOpsQuad.h76 SkDQuad subDivide(double t1, double t2) const;
77 static SkDQuad SubDivide(const SkPoint a[kPointCount], double t1, double t2) { argument
80 return quad.subDivide(t1, t2);
82 SkDPoint subDivide(const SkDPoint& a, const SkDPoint& c, double t1, double t2) const;
84 double t1, double t2) {
87 return quad.subDivide(a, c, t1, t2);
83 SubDivide(const SkPoint pts[kPointCount], const SkDPoint& a, const SkDPoint& c, double t1, double t2) argument
H A DSkPathOpsConic.cpp86 SkDConic SkDConic::subDivide(double t1, double t2) const {
90 double midT = (t1 + t2) / 2;
94 double cx = conic_eval_numerator(&fPts[0].fX, fWeight, t2);
95 double cy = conic_eval_numerator(&fPts[0].fY, fWeight, t2);
96 double cz = conic_eval_denominator(fWeight, t2);
100 double dt = t2 - t1;
108 SkDPoint SkDConic::subDivide(const SkDPoint& a, const SkDPoint& c, double t1, double t2, argument
110 SkDConic chopped = this->subDivide(t1, t2);
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DTimeTest.java32 Time t2 = new Time(t);
33 assertEquals(t.timezone, t2.timezone);
34 assertEquals(t.year, t2.year);
35 assertEquals(t.month, t2.month);
36 assertEquals(t.monthDay, t2.monthDay);
37 assertEquals(t.hour, t2.hour);
38 assertEquals(t.minute, t2.minute);
39 assertEquals(t.second, t2.second);
46 Time t2 = new Time();
47 t2
[all...]
/external/boringssl/src/crypto/sha/asm/
H A Dsha512-armv4.pl80 $t2="r11";
107 ldr $t2,[sp,#$Hoff+0] @ h.lo
122 adds $Tlo,$Tlo,$t2
123 ldr $t2,[sp,#$Goff+0] @ g.lo
127 eor $t0,$t0,$t2
135 eor $t0,$t0,$t2
136 ldr $t2,[$Ktbl,#$lo] @ K[i].lo
144 adds $Tlo,$Tlo,$t2
145 and $t0,$t2,#0xff
148 ldr $t2,[s
[all...]
H A Dsha256-armv4.pl68 $t2="r12";
86 add $a,$a,$t2 @ h+=Maj(a,b,c) from the past
93 add $a,$a,$t2 @ h+=Maj(a,b,c) from the past
94 ldrb $t2,[$inp,#2]
96 orr $t1,$t1,$t2,lsl#8
97 ldrb $t2,[$inp],#4
103 orr $t1,$t1,$t2,lsl#24
108 ldr $t2,[$Ktbl],#4 @ *K256++
114 add $h,$h,$t2 @ h+=K256[i]
119 and $t2,
[all...]
/external/clang/test/CodeGen/
H A Dms_struct-bitfield-1.c18 } ATTR t2; variable in typeref:struct:__anon1829
19 static int a2[(sizeof(t2) == 4) -1];
H A Darm-asm-warn.c23 int64x2x4_t t2(const long long a[]) { function
H A Dms-declspecs.c29 // CHECK: define void @t2() [[NI:#[0-9]+]] {
30 __declspec(noinline) void t2() {}
/external/clang/test/SemaTemplate/
H A Dfun-template-def.cpp21 T t2 = i1; local
22 t2 = i1 + u1;
/external/libcxx/test/std/containers/sequences/array/
H A Dfront_back.pass.cpp57 constexpr T t2 = c.back(); local
58 static_assert (t2 == 3.5, "");
H A Dindexing.pass.cpp55 constexpr T t2 = c[2]; local
56 static_assert (t2 == 3.5, "");
/external/libcxx/test/std/utilities/function.objects/bind/func.bind/func.bind.place/
H A Dplaceholders.pass.cpp22 T t2; local
23 ((void)t2);
/external/libcxx/test/std/utilities/function.objects/refwrap/refwrap.assign/
H A Dcopy_assign.pass.cpp29 T t2 = t; local
30 std::reference_wrapper<T> r2(t2);
/external/v8/test/webkit/
H A Dclosure-inside-extra-arg-call.js74 function t2() { function
79 t2();
/external/valgrind/memcheck/tests/
H A Dvarinforestrict.c40 const char *t2 = s2; local
42 *t1++ = *t2++;
/external/boringssl/src/crypto/aes/asm/
H A Daes-armv4.pl55 $t2="r5";
214 ldrb $t2,[$rounds,#1]
218 orr $s0,$s0,$t2,lsl#16
221 ldrb $t2,[$rounds,#5]
225 orr $s1,$s1,$t2,lsl#16
228 ldrb $t2,[$rounds,#9]
232 orr $s2,$s2,$t2,lsl#16
235 ldrb $t2,[$rounds,#13]
238 orr $s3,$s3,$t2,lsl#16
268 mov $t2,
[all...]
/external/clang/test/CXX/temp/temp.param/
H A Dp3.cpp25 ::T t2 = ::i; // global namespace members T and i \ local

Completed in 4100 milliseconds

1234567891011>>