Searched defs:b0 (Results 1 - 3 of 3) sorted by relevance

/frameworks/native/opengl/libagl/
H A Dmatrix.h86 static inline GLfixed mla2a( GLfixed a0, GLfixed b0, argument
100 : "%r"(a0), "r"(b0),
109 return (( int64_t(a0)*b0 +
115 static inline GLfixed mla3a( GLfixed a0, GLfixed b0, argument
131 : "%r"(a0), "r"(b0),
141 return (( int64_t(a0)*b0 +
148 // b0, b1, b2 are signed 16-bit quanities
178 int16_t b0 = b1b0 & 0xffff;
180 accum = int64_t(a0)*int16_t(b0) >> 16;
219 int16_t b0
272 mla3( GLfixed a0, GLfixed b0, GLfixed a1, GLfixed b1, GLfixed a2, GLfixed b2) argument
303 mla4( GLfixed a0, GLfixed b0, GLfixed a1, GLfixed b1, GLfixed a2, GLfixed b2, GLfixed a3, GLfixed b3) argument
[all...]
H A Ddxt.cpp73 * r4r3r2 r1r0g5g4 g3g2g1g0 b4b3b2b1 b0 0 0 0 rgb << 3
82 * b4b3b2b1 b0------ (rgb << 3) & 0x0000f8
101 int b0 = (x >> 24) & 0xff; local
106 return (uint32_t)((b3 << 24) | (b2 << 16) | (b1 << 8) | b0);
167 // bits: b31 b30 b29 ... b3 b2 b1 b0
169 // &: b31 (b31 & b30) (b29 & b28) ... (b2 & b1) (b1 & b0)
170 // & 0x55..: 0 (b31 & b30) 0 ... 0 (b1 & b0)
237 int b0 = blue(color0); local
244 c[0] = (r0 << 11) | ((g0 >> 1) << 6) | (b0 << 1) | 0x1;
261 b2 = avg23(b0, b
367 int b0 = blue(color0); local
524 int b0 = blue(color0); local
[all...]
/frameworks/av/media/libeffects/testlibs/
H A DAudioBiquadFilter.cpp156 const audio_coef_t b0 = mCoefs[0]; local
164 acc = mul_coef_sample(b0, x0);
203 const audio_coef_t b0 = mCoefs[0]; local
217 acc = mul_coef_sample(b0, x0);

Completed in 83 milliseconds