Searched refs:_b (Results 26 - 50 of 80) sorted by relevance

1234

/external/chromium_org/content/test/data/indexeddb/
H A Dcommon.js101 function shouldBe(_a, _b)
103 if (typeof _a != "string" || typeof _b != "string")
112 var _bv = eval(_b);
117 debug(_a + " is " + _b);
/external/chromium_org/third_party/npapi/npspy/extern/java/
H A Djri_md.h318 jlong _a, _b; \
319 _a = a; _b = b; \
320 (r).lo = _a.lo + _b.lo; \
321 (r).hi = _a.hi + _b.hi + ((r).lo < _b.lo); \
325 jlong _a, _b; \
326 _a = a; _b = b; \
327 (r).lo = _a.lo - _b.lo; \
328 (r).hi = _a.hi - _b.hi - (_a.lo < _b
[all...]
/external/chromium_org/third_party/npapi/npspy/extern/nspr/
H A Dprlong.h231 PRInt64 _a, _b; \
232 _a = a; _b = b; \
233 (r).lo = _a.lo + _b.lo; \
234 (r).hi = _a.hi + _b.hi + ((r).lo < _b.lo); \
238 PRInt64 _a, _b; \
239 _a = a; _b = b; \
240 (r).lo = _a.lo - _b.lo; \
241 (r).hi = _a.hi - _b.hi - (_a.lo < _b
[all...]
/external/llvm/test/MC/AsmParser/
H A Dmacros-darwin.s72 .macro test8 _a, _b, _c
73 .globl "\_a,\_b,\_c"
76 .macro test9 _a _b _c
77 .globl "\_a \_b \_c"
/external/eigen/Eigen/src/Geometry/arch/
H A DGeometry_SSE.h21 static inline Quaternion<float> run(const QuaternionBase<Derived>& _a, const QuaternionBase<OtherDerived>& _b) argument
26 __m128 b = _b.coeffs().template packet<Aligned>(0);
62 static inline Quaternion<double> run(const QuaternionBase<Derived>& _a, const QuaternionBase<OtherDerived>& _b) argument
69 Packet2d b_xy = _b.coeffs().template packet<Aligned>(0);
70 Packet2d b_zw = _b.coeffs().template packet<Aligned>(2);
/external/stlport/test/unit/
H A Dsort_test.cpp163 SortTestAux (bool &b) : _b(b)
166 SortTestAux (SortTestAux const&other) : _b(other._b) {
167 _b = true;
170 bool &_b; member in struct:SortTestAux
/external/clang/test/Sema/
H A Dunused-expr.c39 return ({int _a = x, _b = y; _a > _b ? _a : _b; });
/external/eigen/test/eigen2/
H A Dgsl_helper.h45 static void eigen_symm_gen(const Matrix& m, const Matrix& _b, Vector& eval, Matrix& evec) argument
49 Matrix b = createMatrix(_b->size1, _b->size2);
51 gsl_matrix_memcpy(b, _b);
81 static void eigen_symm_gen(const Matrix& m, const Matrix& _b, gsl_vector* &eval, Matrix& evec) argument
85 Matrix b = createMatrix(_b->size1, _b->size2);
87 gsl_matrix_complex_memcpy(b, _b);
/external/qemu/include/hw/
H A Dloader.h59 #define rom_add_blob_fixed(_f, _b, _l, _a) \
60 rom_add_blob(_f, _b, _l, _a, NULL, NULL, NULL)
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_format_yuv.h63 const float _b = CLAMP(b, 0.0f, 1.0f); local
67 const int _y = scale * ( (0.257f * _r) + (0.504f * _g) + (0.098f * _b));
68 const int _u = scale * (-(0.148f * _r) - (0.291f * _g) + (0.439f * _b));
69 const int _v = scale * ( (0.439f * _r) - (0.368f * _g) - (0.071f * _b));
115 const int _b = (298 * _y + 516 * _u + 128) >> 8; local
119 *b = CLAMP(_b, 0, 255);
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_format_yuv.h63 const float _b = CLAMP(b, 0.0f, 1.0f); local
67 const int _y = scale * ( (0.257f * _r) + (0.504f * _g) + (0.098f * _b));
68 const int _u = scale * (-(0.148f * _r) - (0.291f * _g) + (0.439f * _b));
69 const int _v = scale * ( (0.439f * _r) - (0.368f * _g) - (0.071f * _b));
115 const int _b = (298 * _y + 516 * _u + 128) >> 8; local
119 *b = CLAMP(_b, 0, 255);
/external/libnl/lib/fib_lookup/
H A Drequest.c56 static int request_compare(struct nl_object *_a, struct nl_object *_b, argument
60 struct flnl_request *b = (struct flnl_request *) _b;
/external/libnl/lib/netfilter/
H A Dqueue_obj.c164 static int nfnl_queue_compare(struct nl_object *_a, struct nl_object *_b, argument
168 struct nfnl_queue *b = (struct nfnl_queue *) _b;
H A Dlog_obj.c232 static int nfnl_log_compare(struct nl_object *_a, struct nl_object *_b, argument
236 struct nfnl_log *b = (struct nfnl_log *) _b;
/external/chromium_org/third_party/libvpx/source/libvpx/
H A Dy4minput.c143 #define OC_MINI(_a,_b) ((_a)>(_b)?(_b):(_a))
144 #define OC_MAXI(_a,_b) ((_a)<(_b)?(_b):(_a))
145 #define OC_CLAMPI(_a,_b,_c) (OC_MAXI(_a,OC_MINI(_b,_c)))
/external/clang/test/SemaCXX/
H A Dcxx11-user-defined-literals.cpp141 int operator"" _b(); // expected-error {{no function template matches function template specialization}}
142 int main() { return 0_b; } // expected-error {{no matching literal operator for call to 'operator "" _b'}}
/external/libnl/lib/genl/
H A Dfamily.c128 static int family_compare(struct nl_object *_a, struct nl_object *_b, argument
132 struct genl_family *b = (struct genl_family *) _b;
/external/libvpx/libvpx/
H A Dy4minput.c143 #define OC_MINI(_a,_b) ((_a)>(_b)?(_b):(_a))
144 #define OC_MAXI(_a,_b) ((_a)<(_b)?(_b):(_a))
145 #define OC_CLAMPI(_a,_b,_c) (OC_MAXI(_a,OC_MINI(_b,_c)))
/external/opencv/cvaux/include/
H A Dcvmat.hpp2144 inline _CvMAT_MUL_::_CvMAT_MUL_( const CvMAT* _a, const CvMAT* _b, int _t_ab ) :
2145 a((CvMAT*)_a), b((CvMAT*)_b), alpha(1), t_ab(_t_ab) {}
2148 inline _CvMAT_MUL_::_CvMAT_MUL_( const CvMAT* _a, const CvMAT* _b,
2150 a((CvMAT*)_a), b((CvMAT*)_b), alpha(_alpha), t_ab(_t_ab) {}
2153 inline _CvMAT_MUL_ADD_::_CvMAT_MUL_ADD_( const CvMAT* _a, const CvMAT* _b,
2155 a((CvMAT*)_a), b((CvMAT*)_b), c((CvMAT*)_c), t_abc(_t_abc) {}
2158 inline _CvMAT_MUL_ADD_::_CvMAT_MUL_ADD_( const CvMAT* _a, const CvMAT* _b, double _alpha,
2160 a((CvMAT*)_a), b((CvMAT*)_b), alpha(_alpha),
2164 inline _CvMAT_ADD_::_CvMAT_ADD_( const CvMAT* _a, const CvMAT* _b, double _beta ) :
2165 a((CvMAT*)_a), b((CvMAT*)_b), bet
[all...]
/external/bluetooth/bluedroid/embdrv/sbc/decoder/srce/
H A Dframing.c210 OI_INT32 _a, _b, _c, _d; \
212 _b = *--_src; \
216 *--_dest = _b; \
/external/qemu/distrib/libsparse/src/
H A Dsparse_read.c51 ({ typeof(a) _a = (a); typeof(b) _b = (b); (_a < _b) ? _a : _b; })
H A Doutput_file.c52 ({ typeof(a) _a = (a); typeof(b) _b = (b); (_a < _b) ? _a : _b; })
/external/chromium_org/third_party/simplejson/
H A Ddecoder.py97 _b=BACKSLASH, _m=STRINGCHUNK.match):
143 char = _b[esc]
/external/qemu/target-i386/
H A Dcpu.h672 uint8_t _b[16]; member in union:__anon30115
681 uint8_t _b[8]; member in union:__anon30116
689 #define XMM_B(n) _b[15 - (n)]
696 #define MMX_B(n) _b[7 - (n)]
701 #define XMM_B(n) _b[n]
708 #define MMX_B(n) _b[n]
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dcommon.c772 int _b = *(int *) b; local
776 if (_b == 0)
778 return _a - _b;

Completed in 722 milliseconds

1234