Searched defs:t1 (Results 251 - 275 of 736) sorted by relevance

<<11121314151617181920>>

/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);
47 g_assert_cmphex (t1, ==, tag);
57 hb_script_t t1, t2; local
63 hb_ot_tags_from_script (script, &t1, &t2);
65 g_assert_cmphex (t1, ==, tag1);
75 hb_script_t t1, t2; local
81 hb_ot_tags_from_script (HB_SCRIPT_HIRAGANA, &t1, &t2);
82 g_assert_cmphex (t1, ==, HB_TAG_CHAR4 ("kana"));
/external/icu/icu4c/source/i18n/
H A Dutf8collationiterator.cpp54 uint8_t t1, t2; local
55 if(c < 0xe0 && pos != length && (t1 = (u8[pos] - 0x80)) <= 0x3f) {
57 uint32_t ce32 = trie->data32[trie->index[(UTRIE2_UTF8_2B_INDEX_2_OFFSET - 0xc0) + c] + t1];
58 c = ((c & 0x1f) << 6) | t1;
63 (t1 = (u8[pos] - 0x80)) <= 0x3f && (c != 0xe0 || t1 >= 0x20) &&
67 c = (UChar)((c << 12) | (t1 << 6) | t2);
163 uint8_t t1, t2; local
164 if(c < 0xe0 && pos != length && (t1 = (u8[pos] - 0x80)) <= 0x3f) {
166 uint32_t ce32 = trie->data32[trie->index[(UTRIE2_UTF8_2B_INDEX_2_OFFSET - 0xc0) + c] + t1];
[all...]
/external/icu/icu4c/source/test/cintltst/
H A Dhpmufn.c25 long t1; member in union:__anon22065
/external/icu/icu4c/source/tools/ctestfw/unicode/
H A Dutimer.h201 double t1, t2; local
203 t1 = (double)timer1->start.tv_sec + (double)timer1->start.tv_usec/(1000*1000);
205 return (t2-t1);
/external/libcxx/test/thread/thread.condition/thread.condition.condvar/
H A Dwait_until_pred.pass.cpp69 Clock::time_point t1 = Clock::now(); local
72 assert(t1 - t0 < Clock::duration(250));
78 assert(t1 - t0 - Clock::duration(250) < Clock::duration(50));
/external/libcxx/test/thread/thread.condition/thread.condition.condvarany/
H A Dwait_until_pred.pass.cpp73 Clock::time_point t1 = Clock::now(); local
76 assert(t1 - t0 < Clock::duration(250));
82 assert(t1 - t0 - Clock::duration(250) < Clock::duration(50));
/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_maos_vbtmp.h81 const GLuint t1 = GET_TEXSOURCE(1); local
82 tc1 = (GLuint (*)[4])VB->AttribPtr[_TNL_ATTRIB_TEX0 + t1]->data;
83 tc1_stride = VB->AttribPtr[_TNL_ATTRIB_TEX0 + t1]->stride;
84 if (DO_PTEX && VB->AttribPtr[_TNL_ATTRIB_TEX0 + t1]->size < 3) {
87 else if (DO_PTEX && VB->AttribPtr[_TNL_ATTRIB_TEX0 + t1]->size < 4) {
238 if (TCL_DEBUG) fprintf(stderr, "t1: %.2f %.2f ", v[0].f, v[1].f);
/external/openssl/crypto/bn/
H A Dbn_add.c108 BN_ULONG *ap,*bp,*rp,carry,t1,t2; local
140 t1 = *(ap++);
141 t2 = (t1+1) & BN_MASK2;
169 register BN_ULONG t1,t2,*ap,*bp,*rp; local
198 t1= *(ap++);
202 carry=(t1 <= t2);
203 t1=(t1-t2-1)&BN_MASK2;
207 carry=(t1 < t2);
208 t1
[all...]
/external/openssl/crypto/des/
H A Dede_cbcm_enc.c141 register DES_LONG t0,t1; local
159 t1=tin1;
185 xor1=t1;
H A Dqud_cksm.c79 DES_LONG z0,z1,t0,t1; local
117 t1=z1;
119 z0=((((t0*t0)&0xffffffffL)+((t1*t1)&0xffffffffL))
121 z1=((t0*((t1+NOISE)&0xffffffffL))&0xffffffffL)%0x7fffffffL;
/external/qemu/distrib/sdl-1.2.15/src/video/
H A De_log.h93 double hfsq,f,s,z,R,w,t1,t2,dk; local
128 t1= w*(Lg2+w*(Lg4+w*Lg6));
131 R = t2+t1;
H A De_sqrt.h146 u_int32_t r,t1,s1,ix1,q1; local
201 t1 = s1+r;
203 if((t<ix0)||((t==ix0)&&(t1<=ix1))) {
204 s1 = t1+r;
205 if(((int32_t)(t1&sign)==sign)&&(s1&sign)==0) s0 += 1;
207 if (ix1 < t1) ix0 -= 1;
208 ix1 -= t1;
/external/skia/experimental/Intersection/
H A DCubicSubDivide.cpp11 Given a cubic c, t1, and t2, find a small cubic segment.
14 s1 = 1 - t1
16 A = c[0]*s1*s1*s1 + 3*c[1]*s1*s1*t1 + 3*c[2]*s1*t1*t1 + c[3]*t1*t1*t1
20 First, compute two reference T values 1/3 and 2/3 from t1 to t2:
22 c(at (2*t1
67 sub_divide(const Cubic& src, double t1, double t2, Cubic& dst) argument
93 sub_divide(const Cubic& src, const _Point& a, const _Point& d, double t1, double t2, _Point dst[2]) argument
[all...]
/external/skia/src/core/
H A DSkCubicClipper.cpp34 SkScalar t1 = ycrv[0] / (ycrv[0] - ycrv[3]); local
43 t0 = t1;
52 t1 -= y0123 / yder;
53 converged = SkScalarAbs(t1 - t0) <= tol; // NaN-safe
56 *t = t1; // Return the result.
60 if (t1 < 0 || t1 > SK_Scalar1)
/external/skia/src/pathops/
H A DSkPathOpsCubic.h66 SkDCubic subDivide(double t1, double t2) const;
68 static SkDCubic SubDivide(const SkPoint a[4], double t1, double t2) { argument
71 return cubic.subDivide(t1, t2);
74 void subDivide(const SkDPoint& a, const SkDPoint& d, double t1, double t2, SkDPoint p[2]) const;
76 static void SubDivide(const SkPoint pts[4], const SkDPoint& a, const SkDPoint& d, double t1, argument
80 cubic.subDivide(a, d, t1, t2, p);
/external/valgrind/main/helgrind/tests/
H A Dannotate_hbefore.c236 "ll $t1, 0($t0)" "\n\t"
237 "bne $t1, $t2, exit_0" "\n\t"
248 : /*trash*/ "t0", "t1", "t2", "t3", "memory"
269 "ll $t1, 0($t0)" "\n\t"
270 "bne $t1, $t2, exit_0" "\n\t"
281 : /*trash*/ "t0", "t1", "t2", "t3", "memory"
320 pthread_t t1, t2;
322 r= pthread_create( &t1, NULL, &thread_fn, (void*)&w ); assert(!r);
325 r= pthread_join( t1, NULL ); assert(!r);
398 pthread_t t1, t local
[all...]
H A Dtc19_shadowmem.c138 pthread_t t1, t2; local
172 pthread_create( &t1, NULL, steer, (void*)&info );
175 pthread_join( t1, NULL );
203 pthread_create( &t1, NULL, steer, (void*)&info );
206 pthread_join( t1, NULL );
234 pthread_create( &t1, NULL, steer, (void*)&info );
237 pthread_join( t1, NULL );
265 pthread_create( &t1, NULL, steer, (void*)&info );
268 pthread_join( t1, NULL );
/external/valgrind/main/memcheck/tests/vbit-test/
H A Dmain.c19 IRType t_dst, t1, t2, t3, t4; local
21 typeof_primop(op->op, &t_dst, &t1, &t2, &t3, &t4);
23 assert(t1 != Ity_INVALID);
32 data->opnds[0].type = t1;
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Daes-internal-enc.c25 u32 s0, s1, s2, s3, t0, t1, t2, t3; local
87 s0 = TE41(t0) ^ TE42(t1) ^ TE43(t2) ^ TE44(t3) ^ rk[0];
89 s1 = TE41(t1) ^ TE42(t2) ^ TE43(t3) ^ TE44(t0) ^ rk[1];
91 s2 = TE41(t2) ^ TE42(t3) ^ TE43(t0) ^ TE44(t1) ^ rk[2];
93 s3 = TE41(t3) ^ TE42(t0) ^ TE43(t1) ^ TE44(t2) ^ rk[3];
/external/wpa_supplicant_8/src/crypto/
H A Daes-internal-enc.c25 u32 s0, s1, s2, s3, t0, t1, t2, t3; local
87 s0 = TE41(t0) ^ TE42(t1) ^ TE43(t2) ^ TE44(t3) ^ rk[0];
89 s1 = TE41(t1) ^ TE42(t2) ^ TE43(t3) ^ TE44(t0) ^ rk[1];
91 s2 = TE41(t2) ^ TE42(t3) ^ TE43(t0) ^ TE44(t1) ^ rk[2];
93 s3 = TE41(t3) ^ TE42(t0) ^ TE43(t1) ^ TE44(t2) ^ rk[3];
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Daes-internal-enc.c25 u32 s0, s1, s2, s3, t0, t1, t2, t3; local
87 s0 = TE41(t0) ^ TE42(t1) ^ TE43(t2) ^ TE44(t3) ^ rk[0];
89 s1 = TE41(t1) ^ TE42(t2) ^ TE43(t3) ^ TE44(t0) ^ rk[1];
91 s2 = TE41(t2) ^ TE42(t3) ^ TE43(t0) ^ TE44(t1) ^ rk[2];
93 s3 = TE41(t3) ^ TE42(t0) ^ TE43(t1) ^ TE44(t2) ^ rk[3];
/external/aac/libFDK/src/
H A Dfft_rad2.cpp172 INT t1 = (r+j)<<1; local
173 INT t2 = t1 + (mh<<1);
180 ur = x[t1]>>1;
181 ui = x[t1+1]>>1;
183 x[t1] = ur+vr;
184 x[t1+1] = ui+vi;
189 t1 += mh;
190 t2 = t1+(mh<<1);
196 ur = x[t1]>>1;
197 ui = x[t1
214 INT t1 = (r+j)<<1; local
278 INT t1 = (r+j)<<1; local
374 INT t1 = (r+j)<<1; local
416 INT t1 = (r+j)<<1; local
479 INT t1 = (r+mh/2-j)<<1; local
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/animation/
H A DTimingFunction.cpp73 double t1 = 0.0; local
77 t1 = -c / b;
83 t1 = (-b + discriminantSqrt) / (2 * a);
98 if (0 < t1 && t1 < 1)
99 solution1= m_bezier->sampleCurveY(t1);
H A DUnitBezier.h101 double t1; local
120 t1 = 1.0;
123 while (t0 < t1) {
130 t1 = t2;
131 t2 = (t1 - t0) * .5 + t0;
/external/chromium_org/third_party/boringssl/src/crypto/aes/
H A Daes.c705 uint32_t s0, s1, s2, s3, t0, t1, t2, t3; local
723 t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^
730 s0 = Te0[t0 >> 24] ^ Te1[(t1 >> 16) & 0xff] ^ Te2[(t2 >> 8) & 0xff] ^
732 s1 = Te0[t1 >> 24] ^ Te1[(t2 >> 16) & 0xff] ^ Te2[(t3 >> 8) & 0xff] ^
735 Te3[t1 & 0xff] ^ rk[10];
736 s3 = Te0[t3 >> 24] ^ Te1[(t0 >> 16) & 0xff] ^ Te2[(t1 >> 8) & 0xff] ^
741 t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^
748 s0 = Te0[t0 >> 24] ^ Te1[(t1 >> 16) & 0xff] ^ Te2[(t2 >> 8) & 0xff] ^
750 s1 = Te0[t1 >> 24] ^ Te1[(t2 >> 16) & 0xff] ^ Te2[(t3 >> 8) & 0xff] ^
753 Te3[t1
893 uint32_t s0, s1, s2, s3, t0, t1, t2, t3; local
[all...]

Completed in 707 milliseconds

<<11121314151617181920>>