HomeSort by relevance Sort by last modified time
    Searched refs:xs (Results 51 - 75 of 103) sorted by null

1 23 4 5

  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_utilities_camera.h 99 De-homogenize image point: xd(1:2) = xs(1:2)/xs(3).
100 If xs(3) is 0, xd will become 0
102 \param xs source point
104 void inline db_DeHomogenizeImagePoint(double xd[2],const double xs[3])
108 temp=xs[2];
112 xd[0]=xs[0]*div;xd[1]=xs[1]*div;
  /prebuilt/darwin-x86/toolchain/arm-eabi-4.4.3/bin/
arm-eabi-gccbug 241 # Catch some signals. ($xs kludge needed by Sun /bin/sh)
242 xs=0
243 trap '$REMOVE_TEMP; exit $xs' 0
244 trap 'echo "$COMMAND: Aborting ..."; $REMOVE_TEMP; xs=1; exit' 1 3 13 15
276 ( echo "$COMMAND: could not copy $PR_FORM" ; xs=1; exit )
368 xs=0; exit
385 xs=1; exit
498 xs=1; exit
549 xs=0; exit
559 xs=1; exi
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/
arm-eabi-gccbug 241 # Catch some signals. ($xs kludge needed by Sun /bin/sh)
242 xs=0
243 trap '$REMOVE_TEMP; exit $xs' 0
244 trap 'echo "$COMMAND: Aborting ..."; $REMOVE_TEMP; xs=1; exit' 1 3 13 15
276 ( echo "$COMMAND: could not copy $PR_FORM" ; xs=1; exit )
368 xs=0; exit
385 xs=1; exit
498 xs=1; exit
549 xs=0; exit
559 xs=1; exi
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/bin/
i686-linux-gccbug 241 # Catch some signals. ($xs kludge needed by Sun /bin/sh)
242 xs=0
243 trap '$REMOVE_TEMP; exit $xs' 0
244 trap 'echo "$COMMAND: Aborting ..."; $REMOVE_TEMP; xs=1; exit' 1 3 13 15
276 ( echo "$COMMAND: could not copy $PR_FORM" ; xs=1; exit )
368 xs=0; exit
385 xs=1; exit
498 xs=1; exit
549 xs=0; exit
559 xs=1; exi
    [all...]
  /external/mksh/src/
funcs.c 274 XString xs; local
376 Xinit(xs, xp, 128, ATEMP);
381 Xcheck(xs, xp);
398 Xput(xs, xp, '\\');
406 Xput(xs, xp, ts[c]);
410 Xput(xs, xp, c);
413 Xput(xs, xp, ' ');
416 Xput(xs, xp, '\n');
419 Xput(xs, xp, '\0');
420 histsave(&source->line, Xstring(xs, xp), true, false)
1776 XString xs; local
    [all...]
histrap.c 280 XString xs; local
298 Xinit(xs, xp, n, hist_source->areap);
299 while ((n = shf_read(xp, Xnleft(xs, xp), shf)) > 0) {
301 if (Xnleft(xs, xp) <= 0)
302 XcheckN(xs, xp, Xlength(xs, xp));
313 strip_nuls(Xstring(xs, xp), Xlength(xs, xp));
314 return (hist_execute(Xstring(xs, xp)));
371 XString xs; local
    [all...]
  /external/clang/test/SemaCXX/
cxx98-compat.cpp 79 int xs[] = {1, 2, 3}; local
80 for (int &a : xs) { // expected-warning {{range-based for loop is incompatible with C++98}}
for-range-examples.cpp 155 int xs[10]; // expected-note {{implicitly declared private here}} member in class:test2::A
158 for (int x : a.xs) { } // expected-error {{'xs' is a private member of 'test2::A'}}
constant-expression-cxx11.cpp 20 template<typename T, size_t N> constexpr T *begin(T (&xs)[N]) { return xs; }
21 template<typename T, size_t N> constexpr T *end(T (&xs)[N]) { return xs + N; }
426 constexpr int xs[] = { 1, 2, 3, 4, 5 };
428 constexpr int sum_xs = Sum(begin(xs), end(xs));
432 const int *xs, const int *ys, int c) {
434 *xs, // expected-note {{read of dereferenced one-past-the-end pointer}}
436 ZipFoldR(F, n-1, xs+1, ys+1, c)) //
    [all...]
  /external/opencv/cv/src/
cvsamplers.cpp 618 double xs = A12*y + A13; \
623 if( (unsigned)(cvFloor(xs)-1) < (unsigned)(src_size.width - 3) && \
630 int ixs = cvFloor( xs ); \
633 double a = xs - ixs, b = ys - iys, a1 = 1.f - a; \
636 xs += A11; \
    [all...]
cvfundam.cpp 1340 const float* xs = src->data.fl; local
1386 const double* xs = src->data.db; local
    [all...]
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
typeinfoisderivedfrom60.js 79 Check if xs:IDREFS is derived by list from xs:IDREF.
typeinfoisderivedfrom61.js 79 Check if xs:byte is derived by restriction from xs:short
typeinfoisderivedfrom62.js 79 Check if xs:byte is derived by restriction from xs:decimal
  /frameworks/base/graphics/java/android/renderscript/
Matrix3f.java 133 float xs = x * s; local
141 mMat[9] = yz*nc - xs;
143 mMat[6] = yz*nc + xs;
Matrix4f.java 148 float xs = x * s; local
156 mMat[ 9] = yz*nc - xs;
158 mMat[ 6] = yz*nc + xs;
  /system/core/libpixelflinger/
scanline.cpp 608 const int xs = c->iterators.xl; local
610 int xc = x1 - xs;
611 const int16_t* covPtr = c->state.buffers.coverage + xs;
619 r = (xs * c->shade.drdx) + ci.ydrdy;
620 g = (xs * c->shade.dgdx) + ci.ydgdy;
621 b = (xs * c->shade.dbdx) + ci.ydbdy;
622 a = (xs * c->shade.dadx) + ci.ydady;
635 GGLfixed z = (xs * c->shade.dzdx) + ci.ydzdy;
636 GGLfixed f = (xs * c->shade.dfdx) + ci.ydfdy;
649 tc[i].s = (xs * ti.dsdx) + ti.ydsdy
962 const int xs = c->iterators.xl; local
1052 const int xs = c->iterators.xl; local
1872 const uint32_t xs = c->iterators.xl; local
1963 const uint32_t xs = c->iterators.xl; local
    [all...]
  /external/jmonkeyengine/engine/src/bullet-native/
jmeBulletUtil.cpp 227 // compute xs/ys/zs first to save 6 multiplications, since xs/ys/zs
229 float xs = x * s; local
232 float xx = x * xs;
235 float xw = w * xs;
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/util/
Converter.java 147 // compute xs/ys/zs first to save 6 multiplications, since xs/ys/zs
149 float xs = oldQuaternion.getX() * s; local
152 float xx = oldQuaternion.getX() * xs;
155 float xw = oldQuaternion.getW() * xs;
  /external/openssl/crypto/x509/
x509_vfy.c 1579 X509 *xs,*xi; local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/qt/
PathQt.cpp 281 double xs = xc - radius; local
312 m_path.arcMoveTo(xs, ys, width, height, sa);
318 m_path.arcTo(xs, ys, width, height, sa, span);
  /frameworks/rs/
rsMatrix4x4.cpp 224 const float xs = x * s; local
232 m[ 9] = yz*nc - xs;
234 m[ 6] = yz*nc + xs;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridLayoutPainter.java 321 int[] xs = cellBounds.getFirst(); local
329 for (int column = 0; column < xs.length; column++) {
330 int x = xs[column] + b.x;
  /external/clang/test/CodeGenCXX/
temporaries.cpp 423 // CHECK-NEXT: [[XS:%.*]] = alloca [2 x [[A]]], align 16
428 // CHECK-NEXT: [[XS0:%.*]] = getelementptr inbounds [2 x [[A]]]* [[XS]], i64 0, i64 0
432 A xs[] = { A(), x }; local
434 // CHECK-NEXT: [[BEGIN:%.*]] = getelementptr inbounds [2 x [[A]]]* [[XS]], i32 0, i32 0
  /external/clang/test/Sema/
designated-initializers.c 131 struct X xs[] = { local

Completed in 539 milliseconds

1 23 4 5