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

123

/external/v8/test/webkit/resources/
H A Dstandalone-pre.js58 function areArraysEqual(_a, _b)
62 if (_a.length !== _b.length)
65 if (_a[i] !== _b[i])
97 function shouldBe(_a, _b)
99 if (typeof _a != "string" || typeof _b != "string")
108 var _bv = eval(_b);
113 testPassed(_a + " is " + _b);
/external/llvm/test/MC/COFF/
H A Dcomm-align.s31 .def _b
35 _b: label
51 # CHECK: Name: _b
/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/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/toybox/tests/
H A Dlsattr.test133 _b="-------------"
142 testing "lsattr -d ." "lsattr -d ." "$_b .\n" "" ""
143 testing "lsattr -d dir_path" "lsattr -d $_p" "$_b $_p\n" "" ""
/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;
H A Dlookup.c143 static int result_compare(struct nl_object *_a, struct nl_object *_b, argument
/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;
H A Dct_obj.c273 static int ct_compare(struct nl_object *_a, struct nl_object *_b, argument
277 struct nfnl_ct *b = (struct nfnl_ct *) _b;
/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/wpa_supplicant_8/hostapd/src/utils/
H A Dcommon.c876 int _b = *(int *) b; local
880 if (_b == 0)
882 return _a - _b;
/external/wpa_supplicant_8/src/utils/
H A Dcommon.c876 int _b = *(int *) b; local
880 if (_b == 0)
882 return _a - _b;
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dcommon.c876 int _b = *(int *) b; local
880 if (_b == 0)
882 return _a - _b;
/external/libnl/lib/route/
H A Dtc.c245 int tca_compare(struct nl_object *_a, struct nl_object *_b, argument
249 struct rtnl_tca *b = (struct rtnl_tca *) _b;
H A Dneigh.c199 static int neigh_compare(struct nl_object *_a, struct nl_object *_b, argument
203 struct rtnl_neigh *b = (struct rtnl_neigh *) _b;
H A Dneightbl.c57 static int neightbl_compare(struct nl_object *_a, struct nl_object *_b, argument
61 struct rtnl_neightbl *b = (struct rtnl_neightbl *) _b;
H A Drule.c277 static int rule_compare(struct nl_object *_a, struct nl_object *_b, argument
281 struct rtnl_rule *b = (struct rtnl_rule *) _b;
/external/opencv/cv/src/
H A Dcvgeometry.cpp130 icvCreateCenterNormalLine( CvSubdiv2DEdge edge, double *_a, double *_b, double *_c ) argument
140 *_b = b + b;

Completed in 2012 milliseconds

123