/external/chromium-trace/trace-viewer/third_party/gl-matrix/src/gl-matrix/ |
mat2.js | 174 var b0 = b[0], b1 = b[1], b2 = b[2], b3 = b[3]; 175 out[0] = a0 * b0 + a1 * b2; 177 out[2] = a2 * b0 + a3 * b2;
|
/external/chromium_org/third_party/lzma_sdk/ |
CpuArch.c | 58 UInt32 a2, b2, c2, d2; local 65 __asm mov b2, EBX; local 70 *b = b2;
|
/external/chromium_org/third_party/openssl/openssl/crypto/bio/ |
bss_bio.c | 706 struct bio_bio_st *b1, *b2; local 712 b2 = bio2->ptr; 714 if (b1->peer != NULL || b2->peer != NULL) 732 if (b2->buf == NULL) 734 b2->buf = OPENSSL_malloc(b2->size); 735 if (b2->buf == NULL) 740 b2->len = 0; 741 b2->offset = 0; 747 b2->peer = bio1 [all...] |
/external/iproute2/tc/ |
m_gact.c | 210 SPRINT_BUF(b2); 237 fprintf(f, "\n\t random type %s %s val %d",prob_n2a(pp->ptype), action_n2a(pp->paction, b2, sizeof (b2)), pp->pval);
|
f_rsvp.c | 353 SPRINT_BUF(b2); 354 fprintf(f, "%s ", sprint_spi(&pinfo->dpi, 1, b2)); 359 SPRINT_BUF(b2); 360 fprintf(f, "session [NONE]%s ", sprint_spi(&pinfo->dpi, 1, b2)); 380 SPRINT_BUF(b2); 381 fprintf(f, "%s ", sprint_spi(&pinfo->spi, 0, b2)); 385 SPRINT_BUF(b2); 386 fprintf(f, "sender [NONE]%s ", sprint_spi(&pinfo->spi, 0, b2));
|
/external/jmonkeyengine/engine/src/test/jme3test/model/anim/ |
TestOgreComplexAnim.java | 119 Bone b2 = control.getSkeleton().getBone("uparm.left"); local 136 b2.setUserControl(true); 137 b2.setUserTransforms(Vector3f.ZERO, Quaternion.IDENTITY, new Vector3f(1+angle,1+ angle, 1+angle));
|
/external/libvpx/libvpx/vp8/common/ |
idctllm.c | 145 int a2, b2, c2, d2; local 175 b2 = c1 + d1; 180 op[1] = (b2 + 3) >> 3;
|
/external/lzma/C/ |
CpuArch.c | 57 UInt32 a2, b2, c2, d2;
local 64 __asm mov b2, EBX;
local 69 *b = b2;
|
/external/openssl/crypto/bio/ |
bss_bio.c | 706 struct bio_bio_st *b1, *b2; local 712 b2 = bio2->ptr; 714 if (b1->peer != NULL || b2->peer != NULL) 732 if (b2->buf == NULL) 734 b2->buf = OPENSSL_malloc(b2->size); 735 if (b2->buf == NULL) 740 b2->len = 0; 741 b2->offset = 0; 747 b2->peer = bio1 [all...] |
/external/ceres-solver/internal/ceres/ |
compressed_row_sparse_matrix_test.cc | 98 Vector b2 = Vector::Zero(num_cols); local 101 crsm->LeftMultiply(a.data(), b2.data()); 103 EXPECT_EQ((b1 - b2).norm(), 0); 109 Vector b2 = Vector::Zero(num_cols); local 112 crsm->SquaredColumnNorm(b2.data()); 114 EXPECT_EQ((b1 - b2).norm(), 0);
|
/external/chromium_org/v8/src/ |
types.h | 311 // Meet: both b1 and b2 are known to hold. 312 static Bounds Both(Bounds b1, Bounds b2, Isolate* isl) { 314 handle(Type::Union(b1.lower, b2.lower), isl), 315 handle(Type::Intersect(b1.upper, b2.upper), isl)); 318 // Join: either b1 or b2 is known to hold. 319 static Bounds Either(Bounds b1, Bounds b2, Isolate* isl) { 321 handle(Type::Intersect(b1.lower, b2.lower), isl), 322 handle(Type::Union(b1.upper, b2.upper), isl));
|
/external/eigen/unsupported/test/ |
BVH.cpp | 63 bool intersectObjectObject(const BallType &b1, const BallType &b2){ 65 if((b1.center - b2.center).norm() < b1.radius + b2.radius) 82 double minimumOnObjectObject(const BallType &b1, const BallType &b2){ ++calls; return SQR((std::max)(0., (b1.center - b2.center).norm() - b1.radius - b2.radius)); }
|
/external/chromium_org/third_party/icu/source/common/ |
usprep.cpp | 118 UStringPrepKey *b2 = (UStringPrepKey *)p2.pointer; local 121 name2.pointer = b2->name; 123 path2.pointer = b2->path; 685 UChar *b1 = b1Stack, *b2 = b2Stack; local 719 b2Len = usprep_normalize(b1,b1Len, b2,b2Capacity,status); 724 b2 = (UChar*) uprv_malloc(b2Len * U_SIZEOF_UCHAR); 725 if(b2==NULL){ 732 b2Len = usprep_normalize(b1,b1Len, b2,b2Len,status); 737 b2 = b1; 756 U16_NEXT(b2, b2Index, b2Len, ch) [all...] |
/external/chromium_org/v8/test/mjsunit/ |
comparison-ops-and-undefined.js | 30 function test_helper_for_ics(func, b1, b2, b3, b4) { 32 assertEquals(b2, func(.5, undefined)); 37 function test_helper_for_crankshaft(func, b1, b2, b3, b4) { 41 assertEquals(b2, func(.5, undefined));
|
/external/clang/test/CodeGenCXX/ |
copy-constructor-synthesis.cpp | 111 B b2(b1); 136 B b2 = b1; local
|
x86_64-arguments.cpp | 71 struct B2 : B { 75 // CHECK: define i8* @_ZN6PR51793barENS_2B2E(i32* %b2.coerce) 76 const void *bar(B2 b2) { 77 return b2.b1.pa;
|
/external/icu4c/common/ |
usprep.cpp | 118 UStringPrepKey *b2 = (UStringPrepKey *)p2.pointer; local 121 name2.pointer = b2->name; 123 path2.pointer = b2->path; 682 UChar *b1 = b1Stack, *b2 = b2Stack; local 716 b2Len = usprep_normalize(b1,b1Len, b2,b2Capacity,status); 721 b2 = (UChar*) uprv_malloc(b2Len * U_SIZEOF_UCHAR); 722 if(b2==NULL){ 729 b2Len = usprep_normalize(b1,b1Len, b2,b2Len,status); 734 b2 = b1; 753 U16_NEXT(b2, b2Index, b2Len, ch) [all...] |
/external/v8/test/mjsunit/ |
comparison-ops-and-undefined.js | 30 function test_helper_for_ics(func, b1, b2, b3, b4) { 32 assertEquals(b2, func(.5, undefined)); 37 function test_helper_for_crankshaft(func, b1, b2, b3, b4) { 41 assertEquals(b2, func(.5, undefined));
|
/libcore/luni/src/test/java/tests/support/ |
Support_SQL.java | 91 public static boolean isEqual(byte[] b1, int off1, byte[] b2, int off2, 94 if (b1[i + off1] != b2[i + off2])
|
/external/valgrind/main/coregrind/ |
m_mallocfree.c | 289 UByte* b2 = (UByte*)b; local 290 SizeT bszB_lo = *(SizeT*)&b2[0 + hp_overhead_szB()]; 291 SizeT bszB_hi = *(SizeT*)&b2[mk_plain_bszB(bszB_lo) - sizeof(SizeT)]; 309 UByte* b2 = (UByte*)b; local 310 *(SizeT*)&b2[0 + hp_overhead_szB()] = bszB; 311 *(SizeT*)&b2[mk_plain_bszB(bszB) - sizeof(SizeT)] = bszB; 385 UByte* b2 = (UByte*)b; local 386 return & b2[ overhead_szB_lo(a) ]; 401 UByte* b2 = (UByte*)b; local 402 *(Block**)&b2[hp_overhead_szB() + sizeof(SizeT)] = prev_p 407 UByte* b2 = (UByte*)b; local 413 UByte* b2 = (UByte*)b; local 419 UByte* b2 = (UByte*)b; local 429 UByte* b2 = (UByte*)b; local 436 UByte* b2 = (UByte*)b; local 447 UByte* b2 = (UByte*)b; local 458 UByte* b2 = (UByte*)b; local 464 UByte* b2 = (UByte*)b; local 470 UByte* b2 = (UByte*)b; local 476 UByte* b2 = (UByte*)b; local [all...] |
/frameworks/native/opengl/libagl/ |
dxt.cpp | 103 int b2 = (x >> 8) & 0xff; local 106 return (uint32_t)((b3 << 24) | (b2 << 16) | (b1 << 8) | b0); 167 // bits: b31 b30 b29 ... b3 b2 b1 b0 168 // bits >> 1: b31 b31 b30 ... b4 b3 b2 b1 169 // &: b31 (b31 & b30) (b29 & b28) ... (b2 & b1) (b1 & b0) 251 int r2, g2, b2, r3, g3, b3, a3; local 261 b2 = avg23(b0, b1); 270 b2 = (b0 + b1) >> 1; 276 (b2 << 1) | 0x1; 280 c[2] = (r2 << 11) | (g2 << 5) | b2; 375 int b2 = avg23(b0, b1); local 532 int b2 = avg23(b0, b1); local [all...] |
/external/chromium/testing/gtest/test/ |
gtest-tuple_test.cc | 153 tuple<int, double> a2, b2; local 154 b2 = a2; 155 EXPECT_EQ(0, get<0>(b2)); 156 EXPECT_EQ(0.0, get<1>(b2));
|
/external/chromium_org/testing/gtest/test/ |
gtest-tuple_test.cc | 153 tuple<int, double> a2, b2; local 154 b2 = a2; 155 EXPECT_EQ(0, get<0>(b2)); 156 EXPECT_EQ(0.0, get<1>(b2));
|
/external/chromium_org/third_party/WebKit/Source/core/platform/audio/ |
Biquad.h | 84 void setNormalizedCoefficients(double b0, double b1, double b2, double a0, double a1, double a2);
|
/external/chromium_org/third_party/skia/src/images/ |
bmpdecoderhelper.cpp | 326 uint8 b2 = GetByte(); local 329 return b1 | (b2 << 8) | (b3 << 16) | (b4 << 24); 334 uint8 b2 = GetByte(); local 335 return b1 | (b2 << 8);
|