/external/chromium_org/third_party/mesa/src/src/mesa/swrast/ |
s_aaline.c | 338 GLfloat t0, GLfloat t1) 345 const GLfloat x1 = line->x0 + t1 * line->dx; 346 const GLfloat y1 = line->y0 + t1 * line->dy;
|
/external/eigen/Eigen/src/Eigenvalues/ |
SelfAdjointEigenSolver.h | 671 const Scalar t1 = Scalar(0.5) * (m(0,0) + m(1,1)); local 672 roots(0) = t1 - t0; 673 roots(1) = t1 + t0;
|
/external/jmonkeyengine/engine/src/core/com/jme3/math/ |
FastMath.java | 716 * @param t1 Second point of the triangle. 721 public static int pointInsideTriangle(Vector2f t0, Vector2f t1, Vector2f t2, Vector2f p) { 722 int val1 = counterClockwise(t0, t1, p); 726 int val2 = counterClockwise(t1, t2, p); [all...] |
/external/libexif/libexif/canon/ |
mnote-canon-entry.c | 57 #define CC2(number,t1,t2,v,maxlen) \ 59 if ((number != t1) && (number != t2)) { \ 63 (int) t1, (int) t2); \
|
/external/mesa3d/src/mesa/swrast/ |
s_aaline.c | 338 GLfloat t0, GLfloat t1) 345 const GLfloat x1 = line->x0 + t1 * line->dx; 346 const GLfloat y1 = line->y0 + t1 * line->dy;
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/ |
omxVCM4P10_FilterDeblockingLuma_VerEdge_I_s.s | 141 t1 RN 12 label 327 SEL t1, t7, filt ;// aqflg = filt && (aq<beta) 329 ORR apqflg, apflg, t1, LSL #1
|
/frameworks/base/location/java/android/location/ |
Location.java | 330 double t1 = cosU2 * sinLambda; local 332 double sinSqSigma = t1 * t1 + t2 * t2; // (14)
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/ |
GeometryMathUtils.java | 112 float t1 = a1 - b1; local 118 float denom = t1 * t4 - t0 * t5; 123 b0 + u * t0, b1 + u * t1
|
/external/chromium_org/third_party/icu/source/common/ |
putil.c | 294 time_t t, t1, t2; local 301 t1 = mktime(&tmrec); /* seconds of 1/1/1970*/ 306 return (UDate)(t2 - t1) * U_MILLIS_PER_SECOND; /* GMT (or UTC) in seconds since 1970*/ 624 time_t t, t1, t2; 636 t1 = mktime(&tmrec); /* local time in seconds*/ 639 tdiff = t2 - t1; [all...] |
/external/chromium_org/third_party/icu/source/test/cintltst/ |
cmsccoll.c | 85 UChar t1[90]; local 101 u_uastrcpy(t1, cnt1[i]); 103 doTest(coll, t1, t2, UCOL_LESS); 127 u_uastrcpy(t1, cnt2[i]); 129 doTest(coll, t1, t2, UCOL_LESS); 186 UChar t1[90]; local 200 u_uastrcpy(t1, nonignorable[i]); 202 doTest(coll, t1, t2, UCOL_LESS); 214 u_uastrcpy(t1, shifted[i]); 216 doTest(coll, t1, t2, UCOL_LESS) 1518 UChar t1[256] = {0}; local 1607 UChar t1[256] = {0}; local [all...] |
/external/icu4c/common/ |
putil.cpp | 310 time_t t, t1, t2; local 317 t1 = mktime(&tmrec); /* seconds of 1/1/1970*/ 322 return (UDate)(t2 - t1) * U_MILLIS_PER_SECOND; /* GMT (or UTC) in seconds since 1970*/ 640 time_t t, t1, t2; 648 t1 = mktime(&tmrec); /* local time in seconds*/ 651 tdiff = t2 - t1; [all...] |
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/ |
LODGeomap.java | 660 Vector2f t1 = new Vector2f();
685 t1.set(textureBuffer.get(texIdx), textureBuffer.get(texIdx + 1));
713 calculateTangent(new Vector3f[]{v1.mult(scale), v2.mult(scale), v3.mult(scale)}, new Vector2f[]{t1, t2, t3}, tangent, binormal);
1083 Vector2f t1 = new Vector2f(triangles[0].get1().x, triangles[0].get1().z); local [all...] |
/external/opencv/cvaux/src/ |
cvhmm.cpp | 237 double t1 = v1[i+1] - v2[i+1]; local 239 dist1 += t1*t1; 242 t1 = v1[i+3] - v2[i+3]; 244 dist1 += t1*t1; [all...] |
/external/pixman/test/ |
utils.c | 288 char t1 = line_data[j + 0]; local 291 line_data[j + 1] = t1; 298 char t1 = line_data[j + 0]; local 302 line_data[j + 2] = t1; 310 char t1 = line_data[j + 0]; local 315 line_data[j + 3] = t1; [all...] |
/bionic/libc/arch-mips/bionic/ |
setjmp.S | 55 lw t1, OFF(BASE) ; \ 56 mtc1 t1, FPR ; \
|
/external/checkpolicy/ |
policy_scan.l | 210 t1 | 211 T1 { return(T1); }
|
/external/chromium_org/chrome/browser/history/ |
top_sites_impl_unittest.cc | 112 // Extracts the data from |t1| into a SkBitmap. This is intended for usage of 114 SkBitmap ExtractThumbnail(const base::RefCountedMemory& t1) { 115 scoped_ptr<SkBitmap> image(gfx::JPEGCodec::Decode(t1.front(), 116 t1.size())); 120 // Returns true if t1 and t2 contain the same data. 121 bool ThumbnailsAreEqual(base::RefCountedMemory* t1, 123 if (!t1 || !t2) 125 if (t1->size() != t2->size()) 127 return !memcmp(t1->front(), t2->front(), t1->size()) [all...] |
/external/chromium_org/v8/src/mips/ |
builtins-mips.cc | 208 t1, // Scratch. 305 __ Push(a1, t1, a1); 309 __ Pop(a1, t1); 620 __ lw(t1, MemOperand(t0)); 621 __ push(t1); [all...] |
/external/libvpx/libvpx/vp8/common/mips/dspr2/ |
loopfilter_filters_dspr2.c | 173 uint32_t t1, t2, HWM, t3; local 181 t1 = 0x03000300; 262 "addq_s.ph %[Filter2_l], %[vp8_filter_l], %[t1] \n\t" 263 "addq_s.ph %[Filter2_r], %[vp8_filter_r], %[t1] \n\t" 286 : [t1] "r" (t1), [t2] "r" (t2), 1363 uint32_t Filter2_l, Filter2_r, t1, t2, Filter1_l, Filter1_r, invhev_l, invhev_r; local [all...] |
/external/libvpx/libvpx/vp9/common/x86/ |
vp9_intrapred_ssse3.asm | 459 movd m1, [aboveq-1] ; tl, t1, t2, t3 460 punpckldq m0, m1 ; l1, l2, l3, l4, tl, t1, t2, t3 461 pshufb m0, [GLOBAL(sh_b32104567)]; l4, l3, l2, l1, tl, t1, t2, t3 462 psrldq m1, m0, 1 ; l3, l2, l1, tl, t1, t2, t3 463 psrldq m2, m0, 2 ; l2, l1, tl, t1, t2, t3 491 movhps m0, [aboveq-1] ; [8-15] tl, t1-7 [byte] 494 pshufb m3, m0, [GLOBAL(sh_b54321089)] ; l6-1,tl,t1 [word] 495 pshufb m0, [GLOBAL(sh_b89abcdef)] ; tl,t1-7 [word] 496 psrldq m4, m0, 1 ; t1-7 [word] [all...] |
/external/opencv/cv/src/ |
cvimgwarp.cpp | 151 uchar t1 = tsrc[x_ofs[x+1]]; local 154 dst[x+1] = t1; 352 float t1 = buf[dxn+1] + load_macro(src[sxn+1])*alpha; \ 353 buf[dxn] = t0; buf[dxn+1] = t1; \ 362 float t1 = buf[dxn+1] + load_macro(src[sxn+1])*alpha; \ 364 buf[dxn] = t0; buf[dxn+1] = t1; buf[dxn+2] = t2; \ 373 float t1 = buf[dxn+1] + load_macro(src[sxn+1])*alpha; \ 374 buf[dxn] = t0; buf[dxn+1] = t1; \ 376 t1 = buf[dxn+3] + load_macro(src[sxn+3])*alpha; \ 377 buf[dxn+2] = t0; buf[dxn+3] = t1; \ [all...] |
cvoptflowbm.cpp | 55 int t1 = abs(vec1[i + 1] - vec2[i + 1]); local 59 sum += t0 + t1 + t2 + t3;
|
/external/valgrind/main/perf/ |
vg_perf.in | 60 --tools=<t1,t2,t3> tools to run [Nulgrind and Memcheck]
|
/packages/apps/Calendar/src/com/android/calendar/ |
CalendarViewAdapter.java | 406 Time t1 = new Time(mTimeZone); local 409 if (t.month != t1.month) {
|
/packages/apps/Mms/src/com/android/mms/ui/ |
SlideView.java | 504 int t1 = p1.mTop; 507 int res = t1 - t2;
|