Searched refs:b1 (Results 176 - 200 of 536) sorted by relevance

1234567891011>>

/external/valgrind/none/tests/s390x/
H A Dspechelper-cr.c6 unsigned b1 = _v1, b2 = _v2; \
7 asm volatile( " cr %[b1],%[b2]\n\t" \
14 : [b1] "d"(b1), [b2] "d"(b2) \
H A Dspechelper-ltr.c6 unsigned b1 = _v1; \
7 asm volatile( " ltr %[b1],%[b1]\n\t" \
13 : [taken] "=Q" (taken), [b1] "+d"(b1) \
H A Dspechelper-slgr.c6 unsigned long b1 = _v1; \
8 asm volatile(" slgr %[b1],%[b2]\n\t" \
14 : [taken] "=Q" (taken), [b1] "+d"(b1) \
H A Dspechelper-slr.c6 unsigned int b1 = _v1; \
8 asm volatile( " slr %[b1],%[b2]\n\t" \
14 : [taken] "=Q" (taken), [b1] "+d"(b1) \
/external/e2fsprogs/lib/ext2fs/
H A Ddirhash.c36 __u32 b0 = buf[0], b1 = buf[1]; local
42 b0 += ((b1 << 4)+a) ^ (b1+sum) ^ ((b1 >> 5)+b);
43 b1 += ((b0 << 4)+c) ^ (b0+sum) ^ ((b0 >> 5)+d);
47 buf[1] += b1;
/external/eigen/unsupported/test/
H A DBVH.cpp63 bool intersectObjectObject(const BallType &b1, const BallType &b2){ argument
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)); } argument
/external/f2fs-tools/lib/
H A Dlibf2fs.c223 __u32 b0 = buf[0], b1 = buf[1]; local
229 b0 += ((b1 << 4)+a) ^ (b1+sum) ^ ((b1 >> 5)+b);
230 b1 += ((b0 << 4)+c) ^ (b0+sum) ^ ((b0 >> 5)+d);
234 buf[1] += b1;
/external/clang/test/CodeGenCXX/
H A Dx86_64-arguments.cpp87 B1 b1; member in struct:PR5179::B2
92 return b2.b1.pa;
/external/iproute2/tc/
H A Df_basic.c123 SPRINT_BUF(b1);
125 sprint_tc_classid(rta_getattr_u32(tb[TCA_BASIC_CLASSID]), b1));
/external/pdfium/core/src/fxcodec/codec/
H A Dfx_codec_fax.cpp82 void _FaxG4FindB1B2(const FX_BYTE* ref_buf, int columns, int a0, FX_BOOL a0color, int& b1, int& b2) argument
88 b1 = _FindBit(ref_buf, columns, a0 + 1, !first_bit);
89 if (b1 >= columns) {
90 b1 = b2 = columns;
94 b1 = _FindBit(ref_buf, columns, b1 + 1, first_bit);
97 if (b1 >= columns) {
98 b1 = b2 = columns;
101 b2 = _FindBit(ref_buf, columns, b1 + 1, first_bit);
410 int a1, a2, b1, b local
870 int b1, b2; local
[all...]
/external/iproute2/ip/
H A Dipaddress.c228 SPRINT_BUF(b1);
254 ETH_ALEN, 0, b1, sizeof(b1)));
403 SPRINT_BUF(b1);
408 fprintf(fp, "@%s: ", ll_idx_n2a(iflink, b1));
422 SPRINT_BUF(b1);
423 fprintf(fp, "master %s ", ll_idx_n2a(*(int*)RTA_DATA(tb[IFLA_MASTER]), b1));
436 SPRINT_BUF(b1);
438 fprintf(fp, " link/%s ", ll_type_n2a(ifi->ifi_type, b1, sizeof(b1)));
[all...]
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.type.elab/
H A Dp3.cpp34 void b1(struct B<float>);
/external/clang/test/CXX/special/class.dtor/
H A Dp5-0x.cpp48 B1 b1; // expected-error {{deleted function}} variable
/external/clang/test/Sema/
H A Dattr-alias-elf.c45 extern int a1 __attribute__((alias("b1")));
46 int b1 = 42; variable
H A Dattr-aligned.c32 char b1[__alignof__(b) == 2 ?: -1] = {0}; variable
/external/clang/test/SemaCXX/
H A Dcxx1y-initializer-aggregates.cpp36 B b1 {};
H A Ddecl-expr-ambiguity.cpp94 const baz* b1 = 0; // expected-error {{must use 'class' tag to refer to type 'baz' in this scope}} local
H A Duser-defined-conversions.cpp64 Base b1 = ctb; local
/external/eigen/test/
H A Dgeo_alignedbox.cpp41 BoxType b1(VectorType::Random(dim),VectorType::Random(dim));
44 kill_extra_precision(b1);
52 (b2 = b0).extend(b1);
54 VERIFY(b2.contains(b1));
/external/skia/src/images/
H A Dbmpdecoderhelper.cpp325 uint8 b1 = GetByte(); local
329 return b1 | (b2 << 8) | (b3 << 16) | (b4 << 24);
333 uint8 b1 = GetByte(); local
335 return b1 | (b2 << 8);
/external/v8/src/compiler/
H A Dscheduler.h76 BasicBlock* GetCommonDominator(BasicBlock* b1, BasicBlock* b2);
/external/v8/test/mjsunit/regress/
H A Dregress-crbug-3867.js43 this.b1 = 1234;
53 assertArrayEquals(["b3", "b2", "b1"], props(new B()));
67 assertArrayEquals(["b3", "b2", "b1", "b4", "b0"], props(b));
/external/v8/test/webkit/
H A Ddelete-getters-setters.js28 b1 = 1;
30 this.__defineSetter__("b1", function() {});
32 shouldThrow("b1.property");
/external/icu/icu4c/source/common/
H A Dusprep.cpp119 UStringPrepKey *b1 = (UStringPrepKey *)p1.pointer; local
122 name1.pointer = b1->name;
124 path1.pointer = b1->path;
666 UChar *b1 = s1.getBuffer(srcLength); local
667 if(b1==NULL){
672 b1, s1.getCapacity(), options, parseError, status);
678 b1 = s1.getBuffer(b1Len);
679 if(b1==NULL){
686 b1, s1.getCapacity(), options, parseError, status);
731 uprv_syntaxError(b1, b2Inde
[all...]
/external/libvpx/libvpx/vp8/encoder/x86/
H A Dfwalsh_sse2.asm49 psllw xmm2, 2 ; c1 b1
52 punpcklqdq xmm0, xmm2 ; b1 a1
62 paddw xmm0, xmm1 ; b1+c1 a1+d1
63 psubw xmm2, xmm1 ; b1-c1 a1-d1
64 paddw xmm0, xmm7 ; b1+c1 a1+d1+(a1!=0)

Completed in 582 milliseconds

1234567891011>>