Searched refs:b1 (Results 101 - 125 of 378) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/platform/graphics/gpu/
H A DLoopBlinnMathUtils.h58 // Determines whether the triangles defined by the points (a1, b1, c1)
63 const FloatPoint& b1,
/external/chromium/base/debug/
H A Dleak_tracker_unittest.cc33 scoped_ptr<ClassB> b1(new ClassB);
49 ClassB b1; local
/external/clang/test/SemaCXX/
H A Dwarn-sign-conversion.cpp22 int b1 = 1 ? i : B; local
64 int b1 = 1 ? i : B; local
H A Doverloaded-builtin-operators.cpp44 bool b1 = !s; local
101 bool b1 = (sr && lr) || (sr || lr); local
126 bool b1 = (vip == cip); local
/external/iproute2/tc/
H A Dq_sfq.c83 SPRINT_BUF(b1);
92 fprintf(f, "quantum %s ", sprint_size(qopt->quantum, b1));
H A Dq_htb.c247 SPRINT_BUF(b1);
266 fprintf(f, "rate %s ", sprint_rate(hopt->rate.rate, b1));
268 fprintf(f, "ceil %s ", sprint_rate(hopt->ceil.rate, b1));
272 sprint_size(buffer, b1),
277 sprint_size(cbuffer, b1),
283 fprintf(f, "burst %s ", sprint_size(buffer, b1));
284 fprintf(f, "cburst %s ", sprint_size(cbuffer, b1));
H A Dm_gact.c208 SPRINT_BUF(b1);
228 fprintf(f, "gact action %s", action_n2a(p->action, b1, sizeof (b1)));
/external/jmonkeyengine/engine/src/desktop/com/jme3/util/
H A DScreenshots.java56 byte b1 = cpuArray[inPtr+0];
67 cpuArray[outPtr+1] = b1;
/external/emma/core/java12/com/vladium/util/
H A DByteArrayOStream.java49 public final void write2 (final int b1, final int b2) argument
68 mbuf [pos] = (byte) b1;
73 public final void write3 (final int b1, final int b2, final int b3) argument
92 mbuf [pos] = (byte) b1;
98 public final void write4 (final int b1, final int b2, final int b3, final int b4) argument
117 mbuf [pos] = (byte) b1;
/external/icu4c/test/intltest/
H A Dnptrans.cpp201 UChar *b1 = b1String.getBuffer(MAX_BUFFER_SIZE); local
208 b1Len = map(src, srcLength, b1, b1String.getCapacity(), allowUnassigned, parseError, status);
214 b1 = b1String.getBuffer(b1Len);
216 b1Len = map(src, srcLength, b1, b1String.getCapacity(), allowUnassigned, parseError, status);
230 U16_NEXT(b1, b1Index, b1Len, ch);
267 uprv_memmove(dest,b1, b1Len*U_SIZEOF_UCHAR);
/external/webkit/Source/JavaScriptCore/wtf/unicode/
H A DUTF8.cpp69 const unsigned char b1 = sequence[1]; local
71 if (b1)
77 if ((b1 & 0xC0) != 0x80)
83 const int c = ((b0 & 0x1F) << 6) | (b1 & 0x3F);
96 const int c = ((b0 & 0xF) << 12) | ((b1 & 0x3F) << 6) | (b2 & 0x3F);
112 const int c = ((b0 & 0x7) << 18) | ((b1 & 0x3F) << 12) | ((b2 & 0x3F) << 6) | (b3 & 0x3F);
/external/libvpx/vp8/common/arm/armv6/
H A Didct_v6.asm74 sub r7, r7, r8 ; b1 = [0] - [8] 1 b1
79 add r8, r7, r11 ; b1 + c1 1 b+c
80 strh r8, [r1, r2] ; out[pitch] = b1+c1 1
81 sub r7, r7, r11 ; b1 - c1 1 b-c
87 strh r7, [r1, r8] ; out[pitch*2] = b1-c1 1
106 sub r0, r0, r3 ; b1 = [0] - [2] 1 b1
111 add r3, r0, r9 ; b1+c1 1 b+c
112 add r3, r3, #4 ; b1
[all...]
/external/openssl/crypto/bn/asm/
H A Darmv4-gf2m.pl161 # BN_ULONG b1,BN_ULONG b0); # r[3..0]=a1a0�b1b0
177 vmov.32 $B1,r3,r3 @ two copies of b1
187 bl mul_1x1_neon @ a1�b1
198 bl mul_1x1_neon @ (a0+a1)�(b0+b1)
200 veor d0,$A0 @ (a0+a1)�(b0+b1)-a0�b0-a1�b1
218 mov $b,r3 @ $b=b1
223 bl mul_1x1_ialu @ a1�b1
227 eor $b,$b,r3 @ flip b0 and b1
239 bl mul_1x1_ialu @ (a1+a0)�(b1
[all...]
H A Darmv4-gf2m.s124 vmov.32 d19,r3,r3 @ two copies of b1
134 bl mul_1x1_neon @ a1�b1
145 bl mul_1x1_neon @ (a0+a1)�(b0+b1)
147 veor d0,d20 @ (a0+a1)�(b0+b1)-a0�b0-a1�b1
162 mov r0,r3 @ r0=b1
167 bl mul_1x1_ialu @ a1�b1
171 eor r0,r0,r3 @ flip b0 and b1
183 bl mul_1x1_ialu @ (a1+a0)�(b1+b0)
/external/openssl/crypto/asn1/
H A Da_set.c76 const MYBLOB *b1 = (const MYBLOB *)elem1; local
80 r = memcmp(b1->pbData, b2->pbData,
81 b1->cbData < b2->cbData ? b1->cbData : b2->cbData);
84 return b1->cbData-b2->cbData;
/external/webkit/Source/WebCore/platform/audio/
H A DBiquad.cpp84 double b1 = m_b1;
90 float y = a0*x + a1*x1 + a2*x2 - b1*y1 - b2*y2;
112 m_b1 = b1;
245 double b1 = 2.0 * A * ((A - 1.0) - (A + 1.0) * k);
254 m_a1 = b1 * a0Inverse;
/external/webp/src/dsp/
H A Ddec_neon.c72 #define LOAD8x4(c1, c2, c3, c4, b1, b2, stride) \
73 "vld4.8 {" #c1"[0], " #c2"[0], " #c3"[0], " #c4"[0]}," #b1 "," #stride"\n" \
75 "vld4.8 {" #c1"[2], " #c2"[2], " #c3"[2], " #c4"[2]}," #b1 "," #stride"\n" \
77 "vld4.8 {" #c1"[4], " #c2"[4], " #c3"[4], " #c4"[4]}," #b1 "," #stride"\n" \
79 "vld4.8 {" #c1"[6], " #c2"[6], " #c3"[6], " #c4"[6]}," #b1 "," #stride"\n" \
/external/libffi/testsuite/libffi.call/
H A Dnested_struct10.c48 struct B b1; local
52 b1 = *(struct B*)(args[1]);
55 *(B*)resp = B_fn(b0, b1, b2);
H A Dnested_struct4.c42 struct B b1; local
45 b1 = *(struct B*)(args[1]);
47 *(B*)resp = B_fn(b0, b1);
H A Dnested_struct5.c42 struct B b1; local
45 b1 = *(struct B*)(args[1]);
47 *(B*)resp = B_fn(b0, b1);
H A Dnested_struct6.c47 struct B b1; local
51 b1 = *(struct B*)(args[1]);
54 *(B*)resp = B_fn(b0, b1, b2);
H A Dnested_struct7.c42 struct B b1; local
45 b1 = *(struct B*)(args[1]);
47 *(B*)resp = B_fn(b0, b1);
H A Dnested_struct8.c47 struct B b1; local
51 b1 = *(struct B*)(args[1]);
54 *(B*)resp = B_fn(b0, b1, b2);
H A Dnested_struct9.c47 struct B b1; local
51 b1 = *(struct B*)(args[1]);
54 *(B*)resp = B_fn(b0, b1, b2);
/external/libvpx/vp8/encoder/arm/neon/
H A Dfastfdct4x4_neon.asm49 vshl.i16 q3, q3, #1 ; a1, b1
52 vadd.s16 d10, d6, d7 ;temp1 = a1 + b1
53 vsub.s16 d11, d6, d7 ;temp2 = a1 - b1
77 vadd.s16 d7, d3, d4 ;b1 = ip[4]+ip[8]
81 vadd.s16 d10, d6, d7 ;temp1 = a1 + b1
82 vsub.s16 d11, d6, d7 ;temp2 = a1 - b1

Completed in 423 milliseconds

1234567891011>>