/external/eigen/test/ |
nesting_ops.cpp | 12 template <typename MatrixType> void run_nesting_ops(const MatrixType& _m) 14 typename MatrixType::Nested m(_m);
|
bandmatrix.cpp | 12 template<typename MatrixType> void bandmatrix(const MatrixType& _m) 19 Index rows = _m.rows(); 20 Index cols = _m.cols(); 21 Index supers = _m.supers(); 22 Index subs = _m.subs();
|
mapstride.cpp | 51 template<int Alignment,typename MatrixType> void map_class_matrix(const MatrixType& _m) 56 Index rows = _m.rows(), cols = _m.cols();
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
types.py | 52 def _m(self): pass member in class:_C 54 UnboundMethodType = type(_C._m) # Same as MethodType 57 MethodType = type(_x._m)
|
pyclbr.py | 138 f, fname, (_s, _m, ty) = imp.find_module(module, path) 140 f, fname, (_s, _m, ty) = imp.find_module(module, path + sys.path) 144 f, fname, (_s, _m, ty) = imp.find_module('__init__', [fname])
|
socket.py | 226 for _m in _socketmethods: 227 p = partial(meth,_m) 228 p.__name__ = _m 229 p.__doc__ = getattr(_realsocket,_m).__doc__ 231 setattr(_socketobject,_m,m)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
types.py | 52 def _m(self): pass member in class:_C 54 UnboundMethodType = type(_C._m) # Same as MethodType 57 MethodType = type(_x._m)
|
pyclbr.py | 138 f, fname, (_s, _m, ty) = imp.find_module(module, path) 140 f, fname, (_s, _m, ty) = imp.find_module(module, path + sys.path) 144 f, fname, (_s, _m, ty) = imp.find_module('__init__', [fname])
|
socket.py | 226 for _m in _socketmethods: 227 p = partial(meth,_m) 228 p.__name__ = _m 229 p.__doc__ = getattr(_realsocket,_m).__doc__ 231 setattr(_socketobject,_m,m)
|
/external/chromium_org/third_party/npapi/npspy/extern/nspr/ |
plarena.h | 155 char *_m = (char *)(mark); \ 157 if (PR_UPTRDIFF(_m, _a->base) <= PR_UPTRDIFF(_a->avail, _a->base)) { \ 158 _a->avail = (PRUword)PL_ARENA_ALIGN(pool, _m); \ 160 PL_ArenaCountRetract(pool, _m); \ 162 PL_ArenaRelease(pool, _m); \ 164 PL_ArenaCountRelease(pool, _m); \
|
/external/eigen/Eigen/src/Core/ |
IO.h | 22 std::ostream & print_matrix(std::ostream & s, const Derived& _m, const IOFormat& fmt); 151 * print the matrix \a _m to the output stream \a s using the output format \a fmt */ 153 std::ostream & print_matrix(std::ostream & s, const Derived& _m, const IOFormat& fmt) 155 if(_m.size() == 0) 161 typename Derived::Nested m = _m;
|
/external/stlport/src/c_locale_glibc/ |
c_locale_glibc2.c | 619 const char *_Locale_full_monthname(struct _Locale_time *__loc, int _m ) 621 return nl_langinfo_l(MON_1 + _m, (locale_t)__loc); 624 const char *_Locale_abbrev_monthname(struct _Locale_time *__loc, int _m ) 626 return nl_langinfo_l(ABMON_1 + _m, (locale_t)__loc); 675 const wchar_t *_WLocale_full_monthname(struct _Locale_time *__loc, int _m, wchar_t *buf, size_t bufSize) 676 { return _ToWChar(_Locale_full_monthname(__loc, _m), buf, bufSize); } 677 const wchar_t *_WLocale_abbrev_monthname(struct _Locale_time *__loc, int _m, wchar_t *buf, size_t bufSize) 678 { return _ToWChar(_Locale_abbrev_monthname(__loc, _m), buf, bufSize); }
|
/ndk/sources/cxx-stl/stlport/src/c_locale_glibc/ |
c_locale_glibc2.c | 619 const char *_Locale_full_monthname(struct _Locale_time *__loc, int _m ) 621 return nl_langinfo_l(MON_1 + _m, (locale_t)__loc); 624 const char *_Locale_abbrev_monthname(struct _Locale_time *__loc, int _m ) 626 return nl_langinfo_l(ABMON_1 + _m, (locale_t)__loc); 675 const wchar_t *_WLocale_full_monthname(struct _Locale_time *__loc, int _m, wchar_t *buf, size_t bufSize) 676 { return _ToWChar(_Locale_full_monthname(__loc, _m), buf, bufSize); } 677 const wchar_t *_WLocale_abbrev_monthname(struct _Locale_time *__loc, int _m, wchar_t *buf, size_t bufSize) 678 { return _ToWChar(_Locale_abbrev_monthname(__loc, _m), buf, bufSize); }
|
/external/libpcap/bpf/net/ |
bpf_filter.c | 120 #define MINDEX(len, _m, _k) \ 125 (_m) = (_m)->m_next; \ 126 if ((_m) == 0) \
|
/external/opencv/cxcore/include/ |
cxcore.hpp | 339 CvMatrix& operator = (const CvMatrix& _m) 341 _m.addref(); 343 matrix = _m.matrix;
|
/bionic/libc/kernel/arch-mips/asm/sn/ |
addrs.h | 40 #define NASID_MAKE(_m, _l) (((_m) << NASID_LOCAL_BITS) | (_l))
|
/development/ndk/platforms/android-9/arch-mips/include/asm/sn/ |
addrs.h | 40 #define NASID_MAKE(_m, _l) (((_m) << NASID_LOCAL_BITS) | (_l))
|
/external/chromium_org/third_party/simplejson/ |
decoder.py | 97 _b=BACKSLASH, _m=STRINGCHUNK.match): 112 chunk = _m(s, end)
|
/prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/asm/sn/ |
addrs.h | 40 #define NASID_MAKE(_m, _l) (((_m) << NASID_LOCAL_BITS) | (_l))
|
/prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/asm/sn/ |
addrs.h | 40 #define NASID_MAKE(_m, _l) (((_m) << NASID_LOCAL_BITS) | (_l))
|
/prebuilts/ndk/9/platforms/android-14/arch-mips/usr/include/asm/sn/ |
addrs.h | 40 #define NASID_MAKE(_m, _l) (((_m) << NASID_LOCAL_BITS) | (_l))
|
/prebuilts/ndk/9/platforms/android-18/arch-mips/usr/include/asm/sn/ |
addrs.h | 40 #define NASID_MAKE(_m, _l) (((_m) << NASID_LOCAL_BITS) | (_l))
|
/prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/asm/sn/ |
addrs.h | 40 #define NASID_MAKE(_m, _l) (((_m) << NASID_LOCAL_BITS) | (_l))
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/ |
decoder.py | 66 _b=BACKSLASH, _m=STRINGCHUNK.match): 81 chunk = _m(s, end)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/ |
decoder.py | 66 _b=BACKSLASH, _m=STRINGCHUNK.match): 81 chunk = _m(s, end)
|