HomeSort by relevance Sort by last modified time
    Searched refs:_b (Results 26 - 50 of 117) sorted by null

12 3 4 5

  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
MismatchedRangeException.cs 44 private readonly int _b; field in class:Antlr.Runtime.MismatchedRangeException
64 this._b = b;
71 this._b = b;
78 this._b = b;
88 this._b = info.GetInt32("B");
103 return _b;
114 info.AddValue("B", _b);
  /external/chromium_org/third_party/opus/src/celt/
ecintrin.h 45 instructions, because of the way they represented ((_b)>(_a)) internally.*/
46 # define EC_MINI(_a,_b) ((_a)+(((_b)-(_a))&-((_b)<(_a))))
  /external/clang/test/PCH/
stmts.h 93 #define maxint(a,b) ({int _a = (a), _b = (b); _a > _b ? _a : _b; })
  /external/llvm/test/MC/MachO/
tls.s 38 .tbss _b$tlv$init, 4, 2
40 .globl _b
41 _b: label
44 .quad _b$tlv$init
186 // CHECK: ('_string', '_b$tlv$init')
202 // CHECK: ('_string', '_b')
zerofill-4.s 6 .zerofill __DATA,__bss,_b,4,3
23 // CHECK: ('_string', '_b')
  /external/tremolo/Tremolo/
misc.h 157 #define XPROD32(_a, _b, _t, _v, _x, _y) \
158 { *(_x)=MULT32(_a,_t)+MULT32(_b,_v); \
159 *(_y)=MULT32(_b,_t)-MULT32(_a,_v); }
160 #define XPROD31(_a, _b, _t, _v, _x, _y) \
161 { *(_x)=MULT31(_a,_t)+MULT31(_b,_v); \
162 *(_y)=MULT31(_b,_t)-MULT31(_a,_v); }
163 #define XNPROD31(_a, _b, _t, _v, _x, _y) \
164 { *(_x)=MULT31(_a,_t)-MULT31(_b,_v); \
165 *(_y)=MULT31(_b,_t)+MULT31(_a,_v); }
  /external/safe-iop/include/
safe_iop.h 109 typeof(__b) __sio(var)(_b) = (__b); \
112 __sio(var)(_b)))) { \
116 __sio(var)(_b)); \
120 __sio(var)(_b)); \
125 #define safe_add3(_ptr, _A, _B, _C) \
127 typeof(_B) __sio(var)(b) = (_B); \
133 #define safe_add4(_ptr, _A, _B, _C, _D) \
135 typeof(_B) __sio(var)(b) = (_B); \
    [all...]
  /external/llvm/test/MC/AsmParser/
macros.s 68 .macro test8 _a, _b, _c
69 .globl "\_a,\_b,\_c"
72 .macro test9 _a _b _c
73 .globl "\_a \_b \_c"
  /external/chromium_org/third_party/npapi/npspy/extern/java/
jri_md.h 318 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.lo);
    [all...]
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/
prlong.h 231 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.lo);
    [all...]
  /external/eigen/Eigen/src/Geometry/arch/
Geometry_SSE.h 21 static inline Quaternion<float> run(const QuaternionBase<Derived>& _a, const QuaternionBase<OtherDerived>& _b)
26 __m128 b = _b.coeffs().template packet<Aligned>(0);
62 static inline Quaternion<double> run(const QuaternionBase<Derived>& _a, const QuaternionBase<OtherDerived>& _b)
69 Packet2d b_xy = _b.coeffs().template packet<Aligned>(0);
70 Packet2d b_zw = _b.coeffs().template packet<Aligned>(2);
  /external/stlport/test/unit/
sort_test.cpp 163 SortTestAux (bool &b) : _b(b)
166 SortTestAux (SortTestAux const&other) : _b(other._b) {
167 _b = true;
170 bool &_b; member in struct:SortTestAux
  /frameworks/native/opengl/tests/hwc/
hwcTestLib.h 74 ColorRGB(): _r(0.0), _g(0.0), _b(0.0) {};
75 ColorRGB(float f): _r(f), _g(f), _b(f) {}; // Gray
76 ColorRGB(float r, float g, float b): _r(r), _g(g), _b(b) {};
79 float b(void) const { return _b; }
84 float _b; member in class:ColorRGB
  /ndk/tests/device/test-gnustl-full/unit/
sort_test.cpp 163 SortTestAux (bool &b) : _b(b)
166 SortTestAux (SortTestAux const&other) : _b(other._b) {
167 _b = true;
170 bool &_b; member in struct:SortTestAux
  /ndk/tests/device/test-stlport/unit/
sort_test.cpp 163 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/
unused-expr.c 39 return ({int _a = x, _b = y; _a > _b ? _a : _b; });
  /external/eigen/test/eigen2/
gsl_helper.h 45 static void eigen_symm_gen(const Matrix& m, const Matrix& _b, Vector& eval, Matrix& evec)
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)
85 Matrix b = createMatrix(_b->size1, _b->size2);
87 gsl_matrix_complex_memcpy(b, _b);
  /external/chromium_org/v8/test/webkit/resources/
standalone-pre.js 58 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);
  /system/core/fastboot/
protocol.c 30 ({ typeof(a) _a = (a); typeof(b) _b = (b); (_a < _b) ? _a : _b; })
32 ({ typeof(a) _a = (a); typeof(b) _b = (b); _a - (_a % _b); })
  /development/tools/yuv420sp2rgb/
yuv420sp2rgb.c 13 #define max(a,b) ({typeof(a) _a = (a); typeof(b) _b = (b); _a > _b ? _a : _b; })
14 #define min(a,b) ({typeof(a) _a = (a); typeof(b) _b = (b); _a < _b ? _a : _b; })
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_format_yuv.h 63 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/
u_format_yuv.h 63 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/chromium_org/content/test/data/indexeddb/
common.js 101 function shouldBe(_a, _b)
103 if (typeof _a != "string" || typeof _b != "string")
112 var _bv = eval(_b);
117 debug(_a + " is " + _b);
  /ndk/sources/host-tools/make-3.81/
make.h 535 #define MIN(_a,_b) ((_a)<(_b)?(_a):(_b))
538 #define MAX(_a,_b) ((_a)>(_b)?(_a):(_b))
  /dalvik/vm/
Common.h 122 s1 _b[3]; member in struct:JValue::__anon834

Completed in 2098 milliseconds

12 3 4 5