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

1 2 3 4 5 6 7

  /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...]
  /packages/apps/OMA-DM/engine/dmlib/tool-src/db_wizard_tool/com/mot/dm/dbtool/
IM.java 5 public class IM {
75 // IM specific
129 createXml((IM) arrIMFromLines.get(i));
133 public static void createXml(IM im) throws Exception {
135 //String key = im.mcc.val + ":" + im.mnc.val + ":" + im.operator_name.val +
136 // ":" + im.account_type.val.toUpperCase();
137 String key = Record.createKey(im.mcc.val, im.mnc.val
    [all...]
Validator.java 383 //validate ServerPort for IM: is not empty, int, 0 - 65535 ===================================================
522 // for IM. Also validate NAP names against other application settings.
526 IM im; local
531 // Validate IspProfileName IM with id_name (service_name) for other settings
536 for (int j = 0; j < IM.arrIMFromLines.size(); j++) {
537 im = (IM) IM.arrIMFromLines.get(j);
538 if (im.IspProfileName.val.equals(napId) && br.mcc.val.equals(im.mcc.val) &
    [all...]
  /frameworks/base/core/java/com/android/internal/app/
PlatLogoActivity.java 130 final ImageView im = new ImageView(this); local
131 im.setTranslationZ(20);
132 im.setScaleX(0);
133 im.setScaleY(0);
136 im.setImageDrawable(platlogo);
137 im.setBackground(makeRipple());
138 im.setClickable(true);
143 im.getOverlay().add(highlight);
144 im.setOnClickListener(new View.OnClickListener() {
148 im.animate(
    [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...]
  /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);
PgmImage.cpp 51 PgmImage::PgmImage(const PgmImage &im) :
54 DeepCopy(im, *this);
57 PgmImage& PgmImage::operator= (const PgmImage &im)
59 if (this == &im) return *this;
60 DeepCopy(im, *this);
241 std::ostream& operator<< (std::ostream& o, const PgmImage& im)
244 o << "Size: " << im.m_w << " x " << im.m_h << "\n";
245 o << "Comment: " << im.m_comment << "\n";
246 switch (im.m_format
    [all...]
  /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);
PgmImage.cpp 51 PgmImage::PgmImage(const PgmImage &im) :
54 DeepCopy(im, *this);
57 PgmImage& PgmImage::operator= (const PgmImage &im)
59 if (this == &im) return *this;
60 DeepCopy(im, *this);
241 std::ostream& operator<< (std::ostream& o, const PgmImage& im)
244 o << "Size: " << im.m_w << " x " << im.m_h << "\n";
245 o << "Comment: " << im.m_comment << "\n";
246 switch (im.m_format
    [all...]
  /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);
PgmImage.cpp 51 PgmImage::PgmImage(const PgmImage &im) :
54 DeepCopy(im, *this);
57 PgmImage& PgmImage::operator= (const PgmImage &im)
59 if (this == &im) return *this;
60 DeepCopy(im, *this);
241 std::ostream& operator<< (std::ostream& o, const PgmImage& im)
244 o << "Size: " << im.m_w << " x " << im.m_h << "\n";
245 o << "Comment: " << im.m_comment << "\n";
246 switch (im.m_format
    [all...]
  /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/chromium_org/third_party/opus/src/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/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)
  /packages/apps/ContactsCommon/src/com/android/contacts/common/
ContactsUtils.java 23 import android.provider.ContactsContract.CommonDataKinds.Im;
61 * ProviderNames from the predefined IM protocol id.
62 * This is used for interacting with the IM application.
65 * @return the provider name the IM app uses for the given protocol, or null if no
71 case Im.PROTOCOL_GOOGLE_TALK:
73 case Im.PROTOCOL_AIM:
75 case Im.PROTOCOL_MSN:
77 case Im.PROTOCOL_YAHOO:
79 case Im.PROTOCOL_ICQ:
81 case Im.PROTOCOL_JABBER
    [all...]

Completed in 577 milliseconds

1 2 3 4 5 6 7