Searched refs:im (Results 1 - 25 of 193) sorted by relevance

12345678

/external/iproute2/lib/
H A Dll_map.c52 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
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...]
/external/opencv/cxcore/src/
H A D_cxcore.h102 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...]
H A Dcxdxt.cpp358 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...]
/external/jmonkeyengine/engine/src/core/com/jme3/export/
H A DSavable.java45 void read(JmeImporter im) throws IOException; argument
/external/clang/test/CodeGenCXX/
H A Dptr-to-member-function.cpp51 B1(int i) : pmf(&A::foo), im(i) {
52 ((A*)this->*pmf)(&im);
55 int im; member in struct:B1
/external/jmonkeyengine/engine/src/core/com/jme3/font/
H A DKerning.java69 public void read(JmeImporter im) throws IOException { argument
70 InputCapsule ic = im.getCapsule(this);
/external/jmonkeyengine/engine/src/core/com/jme3/shader/
H A DShaderVariable.java62 public void read(JmeImporter im) throws IOException{ argument
63 InputCapsule ic = im.getCapsule(this);
H A DShaderKey.java119 public void read(JmeImporter im) throws IOException{ argument
120 super.read(im);
121 InputCapsule ic = im.getCapsule(this);
/external/libopus/celt/tests/
H A Dtest_unit_dft.c68 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/
H A DRealSchur.h240 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) argument
446 for (im = iu-2; im >= il; --im)
468 performFrancisQRStep(Index il, Index im, Index iu, bool computeU, const Vector3s& firstHouseholderVector, Scalar* workspace) argument
[all...]
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
H A DBoxCollisionShape.java73 public void read(JmeImporter im) throws IOException { argument
74 super.read(im);
75 InputCapsule capsule = im.getCapsule(this);
H A DCylinderCollisionShape.java91 public void read(JmeImporter im) throws IOException { argument
92 super.read(im);
93 InputCapsule capsule = im.getCapsule(this);
H A DPlaneCollisionShape.java47 public void read(JmeImporter im) throws IOException { argument
48 super.read(im);
49 InputCapsule capsule = im.getCapsule(this);
H A DSphereCollisionShape.java72 public void read(JmeImporter im) throws IOException { argument
73 super.read(im);
74 InputCapsule capsule = im.getCapsule(this);
H A DCapsuleCollisionShape.java98 public void read(JmeImporter im) throws IOException { argument
99 super.read(im);
100 InputCapsule capsule = im.getCapsule(this);
H A DConeCollisionShape.java55 public void read(JmeImporter im) throws IOException { argument
56 super.read(im);
57 InputCapsule capsule = im.getCapsule(this);
/external/jmonkeyengine/engine/src/core/com/jme3/audio/
H A DAudioKey.java130 public void read(JmeImporter im) throws IOException{ argument
131 super.read(im);
132 InputCapsule ic = im.getCapsule(this);
H A DLowPassFilter.java88 public void read(JmeImporter im) throws IOException{ argument
89 super.read(im);
90 InputCapsule ic = im.getCapsule(this);
/external/jmonkeyengine/engine/src/core/com/jme3/light/
H A DDirectionalLight.java98 public void read(JmeImporter im) throws IOException { argument
99 super.read(im);
100 InputCapsule ic = im.getCapsule(this);
H A DPointLight.java146 public void read(JmeImporter im) throws IOException { argument
147 super.read(im);
148 InputCapsule ic = im.getCapsule(this);
/external/jmonkeyengine/engine/src/core-effects/com/jme3/post/filters/
H A DColorOverlayFilter.java106 public void read(JmeImporter im) throws IOException { argument
107 super.read(im);
108 InputCapsule ic = im.getCapsule(this);
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
H A DBoxCollisionShape.java73 public void read(JmeImporter im) throws IOException { argument
74 super.read(im);
75 InputCapsule capsule = im.getCapsule(this);
H A DPlaneCollisionShape.java46 public void read(JmeImporter im) throws IOException { argument
47 super.read(im);
48 InputCapsule capsule = im.getCapsule(this);
H A DSphereCollisionShape.java72 public void read(JmeImporter im) throws IOException { argument
73 super.read(im);
74 InputCapsule capsule = im.getCapsule(this);
/external/jmonkeyengine/engine/src/core/com/jme3/material/
H A DMatParamTexture.java61 public void read(JmeImporter im) throws IOException { argument
62 super.read(im);
63 InputCapsule ic = im.getCapsule(this);

Completed in 557 milliseconds

12345678