HomeSort by relevance Sort by last modified time
    Searched refs:im (Results 1 - 25 of 303) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/iproute2/lib/
ll_map.c 52 struct ll_cache *im, **imp; local
67 for (imp = &idx_head[h]; (im=*imp)!=NULL; imp = &im->idx_next)
68 if (im->index == ifi->ifi_index)
71 if (im == NULL) {
72 im = malloc(sizeof(*im));
73 if (im == NULL)
75 im->idx_next = *imp;
76 im->index = ifi->ifi_index
98 const struct ll_cache *im; local
121 const struct ll_cache *im; local
133 const struct ll_cache *im; local
147 const struct ll_cache *im; local
169 struct ll_cache *im; local
    [all...]
  /bootable/recovery/tools/ota/
convert-to-bmp.py 16 im = Image.open(infile) variable
17 if im.mode == 'RGB':
18 im.save(outfile)
19 elif im.mode == 'RGBA':
50 im.size[0] * im.size[1] * 4),
56 im.size[0],
57 im.size[1],
70 data = im.tostring()
71 for j in range(im.size[1]-1, -1, -1): # rows bottom-to-to
    [all...]
  /external/opencv/cxcore/src/
_cxcore.h 102 float re, im; member in struct:CvComplex32f
105 CvComplex32f( float _re, float _im=0 ) : re(_re), im(_im) {}
107 //CvComplex32f( const CvComplex32f& v ) : re(v.re), im(v.im) {}
108 //CvComplex32f& operator = (const CvComplex32f& v ) { re = v.re; im = v.im; return *this; }
114 double re, im; member in struct:CvComplex64f
117 CvComplex64f( double _re, double _im=0 ) : re(_re), im(_im) {}
119 //CvComplex64f( const CvComplex64f& v ) : re(v.re), im(v.im) {}
    [all...]
cxdxt.cpp 358 w.im = w1.im = -icvDxtTab[m][1];
363 w.im = w1.im = sin(t);
364 w.re = w1.re = sqrt(1. - w1.im*w1.im);
373 wave[0].im = 0.;
378 wave[n].im = 0;
385 wave[n0-i].im = -w.im;
    [all...]
  /frameworks/base/core/java/android/os/
PatternMatcher.java 124 int ip = 0, im = 0; local
126 while ((ip<NP) && (im<NM)) {
152 if (match.charAt(im) == nextChar) {
155 im++;
156 } while (im < NM);
157 if (im == NM) {
164 im++;
168 if (match.charAt(im) != c) {
171 im++;
172 } while (im < NM)
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/export/
Savable.java 45 void read(JmeImporter im) throws IOException;
  /frameworks/base/core/java/com/android/internal/app/
PlatLogoActivity.java 75 final View im = new View(this); local
76 im.setTranslationZ(20);
77 im.setScaleX(0.5f);
78 im.setScaleY(0.5f);
79 im.setAlpha(0f);
80 im.setOutlineProvider(new ViewOutlineProvider() {
114 im.setBackground(new RippleDrawable(
118 im.setOutlineProvider(new ViewOutlineProvider() {
124 im.setClickable(true);
125 im.setOnClickListener(new View.OnClickListener()
    [all...]
  /development/perftests/panorama/feature_stab/db_vlvm/
db_utilities.cpp 23 float** db_SetupImageReferences_f(float *im,int w,int h)
27 assert(im);
31 img[i]=im+w*i;
36 unsigned char** db_SetupImageReferences_u(unsigned char *im,int w,int h)
41 assert(im);
46 img[i]=im+w*i;
52 float **img,*im; local
54 im=new float [w*h+over_allocation];
55 img=db_SetupImageReferences_f(im,w,h);
62 unsigned char **img,*im; local
    [all...]
  /external/clang/test/CodeGenCXX/
ptr-to-member-function.cpp 51 B1(int i) : pmf(&A::foo), im(i) {
52 ((A*)this->*pmf)(&im);
55 int im; member in struct:B1
  /packages/apps/Camera/jni/feature_stab/db_vlvm/
db_utilities.cpp 23 float** db_SetupImageReferences_f(float *im,int w,int h)
27 assert(im);
31 img[i]=im+w*i;
36 unsigned char** db_SetupImageReferences_u(unsigned char *im,int w,int h)
41 assert(im);
46 img[i]=im+w*i;
52 float **img,*im; local
54 im=new float [w*h+over_allocation];
55 img=db_SetupImageReferences_f(im,w,h);
62 unsigned char **img,*im; local
    [all...]
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_utilities.cpp 23 float** db_SetupImageReferences_f(float *im,int w,int h)
27 assert(im);
31 img[i]=im+w*i;
36 unsigned char** db_SetupImageReferences_u(unsigned char *im,int w,int h)
41 assert(im);
46 img[i]=im+w*i;
52 float **img,*im; local
54 im=new float [w*h+over_allocation];
55 img=db_SetupImageReferences_f(im,w,h);
62 unsigned char **img,*im; local
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/font/
Kerning.java 69 public void read(JmeImporter im) throws IOException {
70 InputCapsule ic = im.getCapsule(this);
  /external/jmonkeyengine/engine/src/core/com/jme3/shader/
ShaderVariable.java 62 public void read(JmeImporter im) throws IOException{
63 InputCapsule ic = im.getCapsule(this);
  /development/perftests/panorama/feature_stab/src/dbregtest/
PgmImage.h 30 friend std::ostream& operator<< (std::ostream& o, const PgmImage& im);
50 PgmImage(const PgmImage &im);
52 PgmImage& operator= (const PgmImage &im);
95 std::ostream& operator<< (std::ostream& o, const PgmImage& im);
  /packages/apps/Camera/jni/feature_stab/src/dbregtest/
PgmImage.h 30 friend std::ostream& operator<< (std::ostream& o, const PgmImage& im);
50 PgmImage(const PgmImage &im);
52 PgmImage& operator= (const PgmImage &im);
95 std::ostream& operator<< (std::ostream& o, const PgmImage& im);
  /packages/apps/LegacyCamera/jni/feature_stab/src/dbregtest/
PgmImage.h 30 friend std::ostream& operator<< (std::ostream& o, const PgmImage& im);
50 PgmImage(const PgmImage &im);
52 PgmImage& operator= (const PgmImage &im);
95 std::ostream& operator<< (std::ostream& o, const PgmImage& im);
  /prebuilts/misc/common/swig/include/2.0.11/ruby/
rubycomplex.swg 62 VALUE im = rb_float_new(Imag(c));
63 return rb_complex_new(re, im);
83 double im = 0;
84 SWIG_AsVal_double( imag, &im );
85 *val = Constructor(re, im);
116 double im = 0;
117 SWIG_AsVal_double( imag, &im );
119 (-FLT_MAX <= im && im <= FLT_MAX)) {
121 %numeric_cast(im, float))
    [all...]
  /external/libopus/celt/tests/
test_unit_dft.c 68 double im = sin(phase); local
70 im = -im;
75 im /= nfft;
78 ansr += in[k].r * re - in[k].i * im;
79 ansi += in[k].r * im + in[k].i * re;
  /external/eigen/Eigen/src/Eigenvalues/
RealSchur.h 240 void initFrancisQRStep(Index il, Index iu, const Vector3s& shiftInfo, Index& im, Vector3s& firstHouseholderVector);
241 void performFrancisQRStep(Index il, Index im, Index iu, bool computeU, const Vector3s& firstHouseholderVector, Scalar* workspace);
314 Index im; local
315 initFrancisQRStep(il, iu, shiftInfo, im, firstHouseholderVector);
316 performFrancisQRStep(il, im, iu, computeU, firstHouseholderVector, workspace);
439 /** \internal Compute index im at which Francis QR step starts and the first Householder vector. */
441 inline void RealSchur<MatrixType>::initFrancisQRStep(Index il, Index iu, const Vector3s& shiftInfo, Index& im, Vector3s& firstHouseholderVector)
446 for (im = iu-2; im >= il; --im)
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/python/
pycomplex.swg 56 double im = PyComplex_ImagAsDouble(o);
57 if ((-FLT_MAX <= re && re <= FLT_MAX) && (-FLT_MAX <= im && im <= FLT_MAX)) {
59 %numeric_cast(im, float));
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/preprocessor/arithmetic/detail/
div_base.hpp 36 # define BOOST_PP_DIV_BASE_P_IM(d, im) BOOST_PP_DIV_BASE_P_I(d, im)
45 # define BOOST_PP_DIV_BASE_O_IM(d, im) BOOST_PP_DIV_BASE_O_I(d, im)
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
BoxCollisionShape.java 73 public void read(JmeImporter im) throws IOException {
74 super.read(im);
75 InputCapsule capsule = im.getCapsule(this);
CylinderCollisionShape.java 91 public void read(JmeImporter im) throws IOException {
92 super.read(im);
93 InputCapsule capsule = im.getCapsule(this);
PlaneCollisionShape.java 47 public void read(JmeImporter im) throws IOException {
48 super.read(im);
49 InputCapsule capsule = im.getCapsule(this);
SphereCollisionShape.java 72 public void read(JmeImporter im) throws IOException {
73 super.read(im);
74 InputCapsule capsule = im.getCapsule(this);

Completed in 2266 milliseconds

1 2 3 4 5 6 7 8 91011>>