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

12

/external/iproute2/lib/
H A Dll_map.c45 struct idxmap *im, **imp; local
62 for (imp=&idxmap[h]; (im=*imp)!=NULL; imp = &im->next)
63 if (im->index == ifi->ifi_index)
66 if (im == NULL) {
67 im = malloc(sizeof(*im));
68 if (im == NULL)
70 im->next = *imp;
71 im
93 struct idxmap *im; local
114 struct idxmap *im; local
126 struct idxmap *im; local
140 struct idxmap *im; local
162 struct idxmap *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...]
H A Dcxmatmul.cpp1064 _alpha.im = 0;
1066 _beta.im = 0;
1082 _alpha.im = 0;
1084 _beta.im = 0;
/external/chromium/chrome/browser/ui/webui/
H A Dfileicon_source.cc43 IconManager* im = g_browser_process->icon_manager(); local
44 gfx::Image* icon = im->LookupIcon(escaped_filepath, IconLoader::NORMAL);
53 IconManager::Handle h = im->LoadIcon(escaped_filepath,
59 cancelable_consumer_.SetClientData(im, h, request_id);
70 IconManager* im = g_browser_process->icon_manager(); local
71 int request_id = cancelable_consumer_.GetClientData(im, handle);
H A Ddownloads_dom_handler.cc160 IconManager* im = g_browser_process->icon_manager(); local
161 gfx::Image* icon = im->LookupIcon(file->GetUserVerifiedFilePath(),
/external/clang/test/CodeGenCXX/
H A Dptr-to-member-function.cpp52 B1(int i) : pmf(&A::foo), im(i) {
53 ((A*)this->*pmf)(&im);
56 int im; member in struct:B1
/external/qemu/tcg/arm/
H A Dtcg-target.c301 #define SHIFT_IMM_LSL(im) (((im) << 7) | 0x00)
302 #define SHIFT_IMM_LSR(im) (((im) << 7) | 0x20)
303 #define SHIFT_IMM_ASR(im) (((im) << 7) | 0x40)
304 #define SHIFT_IMM_ROR(im) (((im) << 7) | 0x60)
411 int cond, int opc, int rd, int rn, int im)
414 (rn << 16) | (rd << 12) | im);
410 tcg_out_dat_imm(TCGContext *s, int cond, int opc, int rd, int rn, int im) argument
598 tcg_out_ld32_12(TCGContext *s, int cond, int rd, int rn, tcg_target_long im) argument
609 tcg_out_st32_12(TCGContext *s, int cond, int rd, int rn, tcg_target_long im) argument
649 tcg_out_ld16u_8(TCGContext *s, int cond, int rd, int rn, tcg_target_long im) argument
662 tcg_out_st16_8(TCGContext *s, int cond, int rd, int rn, tcg_target_long im) argument
689 tcg_out_ld16s_8(TCGContext *s, int cond, int rd, int rn, tcg_target_long im) argument
709 tcg_out_ld8_12(TCGContext *s, int cond, int rd, int rn, tcg_target_long im) argument
720 tcg_out_st8_12(TCGContext *s, int cond, int rd, int rn, tcg_target_long im) argument
745 tcg_out_ld8s_8(TCGContext *s, int cond, int rd, int rn, tcg_target_long im) argument
[all...]
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/RegExp/
H A Dproperties-001.js25 AddRegExpCases( /\u0051/im, "\\u0051", false, true, true, 0 );
/external/quake/quake/src/QW/client/
H A Dmathlib.c96 float im[3][3]; local
122 memcpy( im, m, sizeof( im ) );
124 im[0][1] = m[1][0];
125 im[0][2] = m[2][0];
126 im[1][0] = m[0][1];
127 im[1][2] = m[2][1];
128 im[2][0] = m[0][2];
129 im[2][1] = m[1][2];
140 R_ConcatRotations( tmpmat, im, ro
[all...]
/external/quake/quake/src/WinQuake/
H A Dmathlib.cpp96 float im[3][3]; local
122 memcpy( im, m, sizeof( im ) );
124 im[0][1] = m[1][0];
125 im[0][2] = m[2][0];
126 im[1][0] = m[0][1];
127 im[1][2] = m[2][1];
128 im[2][0] = m[0][2];
129 im[2][1] = m[1][2];
140 R_ConcatRotations( tmpmat, im, ro
[all...]
/external/clang/include/clang/Basic/
H A DDiagnosticIDs.h241 diag_iterator(const void *im) : impl(im) {} argument
/external/opencv/cvaux/src/
H A Dcvface.cpp209 int im = 0;//mouth was find local
226 im = 1;
257 if ( (im + jl + kr) )
259 Error = Data.Error/(im + jl + kr);
/external/stlport/src/
H A Dcomplex.cpp169 _Tp im = z._M_im; local
170 _Tp mag = ::hypot(re, im);
177 result._M_im = im/result._M_re/2.f;
180 if (im < 0.f)
182 result._M_re = im/result._M_im/2.f;
/external/oprofile/libpp/
H A Dprofile_spec.cpp344 vector<string>::const_iterator im = temp_image_or_lib.begin(); local
346 for (; im != last; ++im)
347 spec.set_image_or_lib_name(*im);
/external/qemu/distrib/sdl-1.2.12/src/video/ps2gs/
H A DSDL_gsvideo.c183 unsigned long long *im)
214 packet[pnum].ptr = &im[it];
217 im[it++] = (isize >> 4) | (eop ? (1 << 15) : 0) | (2LL << 58);
218 im[it++] = 0;
181 loadimage_nonblock(int fd, struct ps2_image *image, int size, unsigned long long *hm, unsigned long long *im) argument
/external/chromium/chrome/browser/ui/views/download/
H A Ddownload_item_view.cc541 IconManager* im = g_browser_process->icon_manager(); local
542 gfx::Image* icon = im->LookupIcon(download_->GetUserVerifiedFilePath(),
906 IconManager* im = g_browser_process->icon_manager(); local
907 gfx::Image* image = im->LookupIcon(download_->GetUserVerifiedFilePath(),
968 IconManager* im = g_browser_process->icon_manager(); local
969 im->LoadIcon(download_->GetUserVerifiedFilePath(),
/external/clang/lib/Analysis/
H A DLiveVariables.cpp302 TransferFunctions(LiveVariablesImpl &im, argument
306 : LV(im), val(Val), observer(Observer), currentBlock(CurrentBlock) {}
541 LiveVariables::LiveVariables(void *im) : impl(im) {} argument
/external/bluetooth/bluez/test/
H A Dhciemu.c643 read_inquiry_mode_rp im; local
706 im.status = 0x00;
707 im.mode = vdev.inq_mode;
708 command_complete(ogf, ocf, sizeof(im), &im);
/external/chromium/chrome/browser/ui/gtk/download/
H A Ddownload_item_gtk.cc534 IconManager* im = g_browser_process->icon_manager(); local
536 im->LoadIcon(icon_filepath_,
539 im->LoadIcon(icon_filepath_,
/external/v8/test/mjsunit/third_party/
H A Dregexp-pcre.js118 res[39] = /(^a|^b)/im;
120 res[41] = /a$/im;
121 res[42] = /\Aabc/im;
122 res[43] = /^abc/im;
293 res[214] = /^a/im;
332 res[253] = /line\nbreak/im;
339 res[260] = /^abc/im;
340 res[261] = /abc$/im;
341 res[262] = /^abc/im;
342 res[263] = /^abc/im;
[all...]
/external/skia/src/core/
H A DSkDraw.cpp2244 SkMatrix m, im; local
2252 if (!m.invert(&im)) {
2255 return fDstToUnit.setConcat(im, this->getTotalInverse());
/external/chromium/net/base/
H A Deffective_tld_names.cc358 {"co.im", 0},
514 {"ac.im", 0},
1048 {"im", 0},
1146 {"im.it", 0},
2214 {"ltd.co.im", 0},
2590 {"net.im", 0},
2600 {"gov.im", 0},
3330 {"nic.im", 0},
5390 {"org.im", 0},
6474 {"plc.co.im",
[all...]
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp536 for (unsigned im = (unsigned)ISD::PRE_INC;
537 im != (unsigned)ISD::LAST_INDEXED_MODE; ++im) {
538 setIndexedLoadAction(im, MVT::i1, Legal);
539 setIndexedLoadAction(im, MVT::i8, Legal);
540 setIndexedLoadAction(im, MVT::i16, Legal);
541 setIndexedLoadAction(im, MVT::i32, Legal);
542 setIndexedStoreAction(im, MVT::i1, Legal);
543 setIndexedStoreAction(im, MVT::i8, Legal);
544 setIndexedStoreAction(im, MV
[all...]
/external/webkit/Source/WebKit/qt/tests/qwebpage/
H A Dtst_qwebpage.cpp2199 QInputMethodEvent im(string, attrs);
2200 page->event(&im);

Completed in 657 milliseconds

12