HomeSort by relevance Sort by last modified time
    Searched defs:real (Results 1 - 25 of 76) sorted by null

1 2 3 4

  /packages/apps/Camera/jni/feature_mos/src/mosaic/
Pyramid.h 24 typedef unsigned short int real; typedef
35 real width, height; // Width and height of input images
36 real numChannels; // Number of channels in input images
37 real border; // border size
38 real pitch; // Pitch. Used for moving through image efficiently.
40 static PyramidShort *allocatePyramidPacked(real width, real height, real levels, real border = 0);
41 static PyramidShort *allocateImage(real width, real height, real border)
    [all...]
  /packages/apps/Gallery2/jni_mosaic/feature_mos/src/mosaic/
Pyramid.h 24 typedef unsigned short int real; typedef
35 real width, height; // Width and height of input images
36 real numChannels; // Number of channels in input images
37 real border; // border size
38 real pitch; // Pitch. Used for moving through image efficiently.
40 static PyramidShort *allocatePyramidPacked(real width, real height, real levels, real border = 0);
41 static PyramidShort *allocateImage(real width, real height, real border)
    [all...]
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
Pyramid.h 24 typedef unsigned short int real; typedef
35 real width, height; // Width and height of input images
36 real numChannels; // Number of channels in input images
37 real border; // border size
38 real pitch; // Pitch. Used for moving through image efficiently.
40 static PyramidShort *allocatePyramidPacked(real width, real height, real levels, real border = 0);
41 static PyramidShort *allocateImage(real width, real height, real border)
    [all...]
  /external/chromium/base/json/
json_writer.cc 83 std::string real = DoubleToString(value); local
86 // real rather than an int.
87 if (real.find('.') == std::string::npos &&
88 real.find('e') == std::string::npos &&
89 real.find('E') == std::string::npos) {
90 real.append(".0");
94 if (real[0] == '.') {
95 real.insert(0, "0");
96 } else if (real.length() > 1 && real[0] == '-' && real[1] == '.')
    [all...]
  /external/compiler-rt/lib/ppc/
divtc3.c 45 DD real = { .ld = __gcc_qdiv(realNumerator, denom) }; local
48 real.s.hi = crt_scalbn(real.s.hi, -ilogbw);
49 real.s.lo = crt_scalbn(real.s.lo, -ilogbw);
53 if (crt_isnan(real.s.hi) && crt_isnan(imag.s.hi))
62 real.s.hi = crt_copysign(CRT_INFINITY,cDD.s.hi) * aDD.s.hi;
63 real.s.lo = 0.0;
73 real.s.hi = CRT_INFINITY * (aDD.s.hi*cDD.s.hi + bDD.s.hi*dDD.s.hi);
74 real.s.lo = 0.0
    [all...]
multc3.c 32 DD real = { .ld = __gcc_qsub(ac,bd) }; local
35 if (crt_isnan(real.s.hi) && crt_isnan(imag.s.hi))
82 real.s.hi = CRT_INFINITY * (aDD.s.hi*cDD.s.hi - bDD.s.hi*dDD.s.hi);
83 real.s.lo = 0.0;
90 __real__ z = real.ld;
  /external/eigen/Eigen/src/plugins/
CommonCwiseUnaryOps.h 24 /** \internal the return type of real() const */
29 /** \internal the return type of real() */
67 /** Overloaded for efficient real matrix times complex scalar value */
106 /** \returns a read-only expression of the real part of \c *this.
110 real() const { return derived(); } function
114 * \sa real() */
162 /** \returns a non const expression of the real part of \c *this.
166 real() { return derived(); } function
170 * \sa real() */
  /external/apache-harmony/support/src/test/java/tests/support/
Support_AvailTest.java 49 int real = myin.available(); local
61 if (real != expected) {
62 output = "Failed avail test1 - " + real + "!=" + expected;
75 real = myin.available();
78 // if(real != expected) output = "Failed avail test2 - " + real +
95 real = myin.available();
96 if (real != 0) {
97 output = "Failed avail test3 - " + real + "!=" + expected;
  /external/ceres-solver/internal/ceres/
polynomial_solver_test.cc 65 // p(x) = poly(x) * (x - real - imag*i) * (x - real + imag*i).
66 Vector AddComplexRootPair(const Vector& poly, double real, double imag) {
69 // Multiply poly by x^2 - 2real + abs(real,imag)^2
71 poly2.segment(1, poly.size()) -= 2 * real * poly;
72 poly2.tail(poly.size()) += (real*real + imag*imag) * poly;
84 // Run a test with the polynomial defined by the N real roots in roots_real.
85 // If use_real is false, NULL is passed as the real argument t
93 Vector real; local
121 Vector real; local
130 Vector real; local
170 Vector real; local
    [all...]
  /external/smali/util/src/main/java/ds/tree/
RadixTreeNode.java 42 private boolean real; field in class:RadixTreeNode
53 real = false;
73 return real;
77 this.real = datanode;
  /external/webkit/Source/WebKit/android/jni/
WebCoreJni.cpp 42 jobject real = env->NewLocalRef(obj); local
43 ALOG_ASSERT(real, "The real object has been deleted!");
44 return AutoJObject(env, real);
  /external/clang/test/SemaTemplate/
instantiate-anonymous-union.cpp 39 float real; member in union:PR7088::__anon6985::__anon6986
  /external/srec/srec/include/
sp_fft.h 114 If you have a real data input data[] of size 2**(log2Size + 1), you
122 Fourier transform of a real data input, you can also conduct the inverse
123 Fourier transform to get the real data input by
145 500 runs of paired 256 point complex (512 point real) input FFT
149 Real: 0.160 sec.
154 Assembly: Real 0.170 sec, Complex 0.140 sec.
155 Microsoft C: Real 0.250 sec, Complex 0.240 sec.
156 Stric C: Real 0.540 sec, Complex 0.441 sec.
220 fftdata *real; member in struct:__anon15471
255 do_real_fft conducts a forward FFT of a real data array usin
    [all...]
  /external/stlport/stlport/stl/
_complex.h 69 value_type real() const { return _M_re; } function in struct:complex
72 // Arithmetic op= operations involving one real argument.
195 value_type real() const { return _M_re; } function in struct:complex
198 // Arithmetic op= operations involving one real argument.
334 value_type real() const { return _M_re; } function in struct:complex
337 // Arithmetic op= operations involving one real argument.
472 value_type real() const { return _M_re; } function in struct:complex
475 // Arithmetic op= operations involving one real argument.
625 // Non-member arithmetic operations involving one real argument.
727 inline _Tp _STLP_CALL real(const complex<_Tp>& __z function
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_complex.h 69 value_type real() const { return _M_re; } function in struct:complex
72 // Arithmetic op= operations involving one real argument.
195 value_type real() const { return _M_re; } function in struct:complex
198 // Arithmetic op= operations involving one real argument.
334 value_type real() const { return _M_re; } function in struct:complex
337 // Arithmetic op= operations involving one real argument.
472 value_type real() const { return _M_re; } function in struct:complex
475 // Arithmetic op= operations involving one real argument.
625 // Non-member arithmetic operations involving one real argument.
727 inline _Tp _STLP_CALL real(const complex<_Tp>& __z function
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
atm_zatm.h 39 struct timeval real; /* real (wall-clock) time */ member in struct:zatm_t_hist
40 struct timeval expected; /* expected real time */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
atm_zatm.h 39 struct timeval real; /* real (wall-clock) time */ member in struct:zatm_t_hist
40 struct timeval expected; /* expected real time */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
atm_zatm.h 39 struct timeval real; /* real (wall-clock) time */ member in struct:zatm_t_hist
40 struct timeval expected; /* expected real time */
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_complex.h 69 value_type real() const { return _M_re; } function in struct:complex
72 // Arithmetic op= operations involving one real argument.
195 value_type real() const { return _M_re; } function in struct:complex
198 // Arithmetic op= operations involving one real argument.
334 value_type real() const { return _M_re; } function in struct:complex
337 // Arithmetic op= operations involving one real argument.
472 value_type real() const { return _M_re; } function in struct:complex
475 // Arithmetic op= operations involving one real argument.
625 // Non-member arithmetic operations involving one real argument.
727 inline _Tp _STLP_CALL real(const complex<_Tp>& __z function
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_complex.h 69 value_type real() const { return _M_re; } function in struct:complex
72 // Arithmetic op= operations involving one real argument.
195 value_type real() const { return _M_re; } function in struct:complex
198 // Arithmetic op= operations involving one real argument.
334 value_type real() const { return _M_re; } function in struct:complex
337 // Arithmetic op= operations involving one real argument.
472 value_type real() const { return _M_re; } function in struct:complex
475 // Arithmetic op= operations involving one real argument.
625 // Non-member arithmetic operations involving one real argument.
727 inline _Tp _STLP_CALL real(const complex<_Tp>& __z function
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_complex.h 69 value_type real() const { return _M_re; } function in struct:complex
72 // Arithmetic op= operations involving one real argument.
195 value_type real() const { return _M_re; } function in struct:complex
198 // Arithmetic op= operations involving one real argument.
334 value_type real() const { return _M_re; } function in struct:complex
337 // Arithmetic op= operations involving one real argument.
472 value_type real() const { return _M_re; } function in struct:complex
475 // Arithmetic op= operations involving one real argument.
625 // Non-member arithmetic operations involving one real argument.
727 inline _Tp _STLP_CALL real(const complex<_Tp>& __z function
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_complex.h 69 value_type real() const { return _M_re; } function in struct:complex
72 // Arithmetic op= operations involving one real argument.
195 value_type real() const { return _M_re; } function in struct:complex
198 // Arithmetic op= operations involving one real argument.
334 value_type real() const { return _M_re; } function in struct:complex
337 // Arithmetic op= operations involving one real argument.
472 value_type real() const { return _M_re; } function in struct:complex
475 // Arithmetic op= operations involving one real argument.
625 // Non-member arithmetic operations involving one real argument.
727 inline _Tp _STLP_CALL real(const complex<_Tp>& __z function
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-commons-logging.jar 
  /cts/tests/tests/media/src/android/media/cts/
VisualizerTest.java 224 int real = (int)data[i]; local
226 energy += real * real + img * img;
  /external/aac/libFDK/src/arm/
qmf_arm.cpp 92 FIXP_QMF *rSubband ) /*!< Real Output */
478 FIXP_DBL A, B, real, imag, sta0; local
480 real = *--realSlot;
486 *sta++ = SMLAWB( sta[1], real, A ); /* index=316...........6 */
489 *sta++ = SMLAWT( sta[1], real, A ); /* index=317...........7 */
492 *sta++ = SMLAWB( sta[1], real, A ); /* index=318...........8 */
495 *sta++ = SMLAWT( sta[1], real, A ); /* index=9...........319 */
498 result = SMLAWT( sta0, real, A ); /* index=315...........5 */
502 real = *--realSlot;
506 result = SMLAWB( sta[0], real, A ); /* index=310...........0 *
562 FIXP_DBL A, B, real, imag; local
    [all...]

Completed in 2803 milliseconds

1 2 3 4