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

1 2 3

  /development/perftests/panorama/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_org/base/android/
jni_weak_ref.cc 49 jobject real = NULL; local
51 real = env->NewLocalRef(obj);
52 if (!real)
53 DLOG(ERROR) << "The real object has been deleted!";
55 return base::android::ScopedJavaLocalRef<jobject>(env, real);
  /external/chromium_org/base/json/
json_writer.cc 87 std::string real = DoubleToString(value); local
90 // real rather than an int.
91 if (real.find('.') == std::string::npos &&
92 real.find('e') == std::string::npos &&
93 real.find('E') == std::string::npos) {
94 real.append(".0");
98 if (real[0] == '.') {
99 real.insert(static_cast<size_t>(0), static_cast<size_t>(1), '0');
100 } else if (real.length() > 1 && real[0] == '-' && real[1] == '.')
    [all...]
  /external/chromium_org/third_party/openmax_dl/dl/sp/src/x86/
omxSP_FFTInit_R_F32.c 24 * Initialize the real forward-FFT specification information struct.
57 OMX_F32 real; local
83 // For SSE optimization, using twiddle with split format by which the real and
89 real = armSP_FFT_F32TwiddleTable[j];
92 pTwiddle[i] = -real;
96 pTwiddle[NBy4 - i + N] = real;
99 pTwiddle[NBy4 + i + N] = real;
101 pTwiddle[NBy2 - i] = real;
104 pTwiddle[NBy2 + i] = real;
108 pTwiddle[NBy4 * 3 - i + N] = -real;
    [all...]
x86SP_SSE_Math.h 18 * values where the real part is followed by the imaginary part.
20 * One is the split format where a complex vector of real and imaginary
21 * values are split such that all of the real values are placed in the
30 /** VComplex hold 4 complex float elements, with the real parts stored
31 * in real and corresponding imaginary parts in imag.
34 __m128 real; member in struct:VComplex
40 out->real = _mm_sub_ps(_mm_mul_ps(a->real, b->real),
42 out->imag = _mm_add_ps(_mm_mul_ps(a->real, b->imag)
    [all...]
  /external/compiler-rt/lib/builtins/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/chromium_org/third_party/WebKit/Source/platform/audio/android/
FFTFrameOpenMAXDLAndroid.cpp 116 // Split FFT data into real and imaginary arrays.
118 float* real = m_realData.data(); local
122 real[k] = c[index];
125 real[0] = c[0];
139 // Pack the real and imaginary data into the complex array format
141 const float* real = m_realData.data(); local
145 fftData[index] = real[k];
148 fftData[0] = real[0];
  /bionic/libc/kernel/uapi/linux/
atm_zatm.h 42 struct timeval real; member in struct:zatm_t_hist
  /development/ndk/platforms/android-L/include/linux/
atm_zatm.h 42 struct timeval real; member in struct:zatm_t_hist
  /external/ceres-solver/internal/ceres/
polynomial_test.cc 66 // p(x) = poly(x) * (x - real - imag*i) * (x - real + imag*i).
67 Vector AddComplexRootPair(const Vector& poly, double real, double imag) {
70 // Multiply poly by x^2 - 2real + abs(real,imag)^2
72 poly2.segment(1, poly.size()) -= 2 * real * poly;
73 poly2.tail(poly.size()) += (real*real + imag*imag) * poly;
85 // Run a test with the polynomial defined by the N real roots in roots_real.
86 // If use_real is false, NULL is passed as the real argument t
94 Vector real; local
122 Vector real; local
131 Vector real; local
171 Vector real; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/audio/ffmpeg/
FFTFrameFFMPEG.cpp 119 // De-interleave to separate real and complex arrays.
122 float* real = m_realData.data(); local
128 real[i] = p[baseComplexIndex];
153 const float* real = m_realData.data(); local
158 c[baseComplexIndex] = real[i];
  /external/clang/test/SemaTemplate/
instantiate-anonymous-union.cpp 39 float real; member in union:PR7088::__anon24073::__anon24074
  /external/eigen/test/
exceptions.cpp 72 ScalarWithExceptions real(const ScalarWithExceptions &x) { return x; } function
  /external/kernel-headers/original/uapi/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 */
  /external/chromium_org/third_party/libaddressinput/src/java/test/com/android/i18n/addressinput/
FormatInterpreterTest.java 152 List<String> real = formatInterpreter.getEnvelopeAddress(US_CA_ADDRESS); local
154 assertEquals(expected, real);
167 List<String> real = formatInterpreter.getEnvelopeAddress(TW_ADDRESS); local
169 assertEquals(expected, real);
180 List<String> real = formatInterpreter.getEnvelopeAddress(address); local
182 assertEquals(expected, real);
189 List<String> real = formatInterpreter.getEnvelopeAddress(address); local
190 assertEquals(expected, real);
201 List<String> real = formatInterpreter.getEnvelopeAddress(address); local
202 assertEquals(expected, real);
217 List<String> real = formatInterpreter.getEnvelopeAddress(svAddress); local
    [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 
  /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...]
  /external/clang/test/CodeGenCXX/
thunks.cpp 157 float real; member in struct:Test6::Base2
  /external/e2fsprogs/lib/ext2fs/
test_io.c 52 io_channel real; member in struct:test_private_data
223 &data->real);
227 data->real = 0;
257 if (data->real)
258 io->align = data->real->align;
283 if (data->real)
284 retval = io_channel_close(data->real);
305 if (data->real) {
306 retval = io_channel_set_blksize(data->real, blksize);
307 channel->align = data->real->align
    [all...]
undo_io.c 64 io_channel real; member in struct:undo_private_data
147 channel = data->real;
277 retval = io_channel_read_blk64(data->real, backing_blk_num,
384 &data->real);
388 data->real = 0;
403 if (data->real)
404 undo_err_handler_init(data->real);
410 if (data && data->real)
411 io_channel_close(data->real);
434 if (data->real)
    [all...]
  /external/eigen/unsupported/Eigen/src/AutoDiff/
AutoDiffScalar.h 51 * - internal::conj, internal::real, internal::imag, numext::abs2.
63 typename NumTraits<typename internal::traits<typename internal::remove_all<_DerType>::type>::Scalar>::Real>::value>
68 typename NumTraits<typename internal::traits<typename internal::remove_all<_DerType>::type>::Scalar>::Real>::value> Base;
71 typedef typename NumTraits<Scalar>::Real Real;
89 /*explicit*/ AutoDiffScalar(const Real& value)
170 // inline const AutoDiffScalar<DerType&> operator+(const Real& other) const
175 // friend inline const AutoDiffScalar<DerType&> operator+(const Real& a, const AutoDiffScalar& b)
264 // inline const AutoDiffScalar<typename CwiseUnaryOp<internal::scalar_multiple_op<Real>, DerType>::Type >
265 // operator*(const Real& other) cons
535 inline const AutoDiffScalar<DerType>& real(const AutoDiffScalar<DerType>& x) { return x; } function in namespace:Eigen
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
VisualizerTest.java 437 int real = (int)data[i]; local
439 energy += real * real + img * img;

Completed in 963 milliseconds

1 2 3