HomeSort by relevance Sort by last modified time
    Searched refs:w0 (Results 1 - 25 of 75) sorted by null

1 2 3

  /external/llvm/test/MC/AArch64/
mapping-across-sections.s 4 add w0, w0, w0
8 add w0, w0, w0
16 add w0, w0, w0
mapping-within-section.s 5 add w0, w0, w0
elf-reloc-ldstunsimm.s 4 ldrb w0, [sp, #:lo12:some_label]
5 ldrh w0, [sp, #:lo12:some_label]
6 ldr w0, [sp, #:lo12:some_label]
  /external/clang/test/CodeGen/
2010-05-26-AsmSideEffect.c 6 register int w0 asm ("0");
8 asm ("ldr %0, [%1]": "=r" (w0): "r" (src));
9 return w0;
  /external/chromium_org/third_party/freetype/src/autofit/
afwarp.c 259 warper->w0 = warper->x2 - warper->x1;
261 if ( warper->w0 <= 64 )
277 if ( warper->w0 <= 128 )
280 if ( warper->w0 <= 96 )
284 if ( warper->wmin < warper->w0 - margin )
285 warper->wmin = warper->w0 - margin;
287 if ( warper->wmax > warper->w0 + margin )
288 warper->wmax = warper->w0 + margin;
291 if ( warper->wmin < warper->w0 * 3 / 4 )
292 warper->wmin = warper->w0 * 3 / 4
    [all...]
afwarp.h 40 FT_Pos w0, wmin, wmax; member in struct:AF_WarperRec_
  /external/freetype/src/autofit/
afwarp.c 259 warper->w0 = warper->x2 - warper->x1;
261 if ( warper->w0 <= 64 )
277 if ( warper->w0 <= 128 )
280 if ( warper->w0 <= 96 )
284 if ( warper->wmin < warper->w0 - margin )
285 warper->wmin = warper->w0 - margin;
287 if ( warper->wmax > warper->w0 + margin )
288 warper->wmax = warper->w0 + margin;
291 if ( warper->wmin < warper->w0 * 3 / 4 )
292 warper->wmin = warper->w0 * 3 / 4
    [all...]
afwarp.h 40 FT_Pos w0, wmin, wmax; member in struct:AF_WarperRec_
  /external/chromium_org/third_party/WebKit/Source/platform/audio/
Biquad.cpp 319 double w0 = piDouble * frequency;
321 double alpha = 0.5 * sin(w0) * sqrt((A + 1 / A) * (1 / S - 1) + 2);
322 double k = cos(w0);
354 double w0 = piDouble * frequency;
356 double alpha = 0.5 * sin(w0) * sqrt((A + 1 / A) * (1 / S - 1) + 2);
357 double k = cos(w0);
389 double w0 = piDouble * frequency;
390 double alpha = sin(w0) / (2 * Q);
391 double k = cos(w0);
425 double w0 = piDouble * frequency
    [all...]
  /external/tremolo/Tremolo/
mdct.h 62 LOOKUP_T *w0,LOOKUP_T *w1,
mdct.c 275 DATA_TYPE *w0 = x; local
284 s0 = w0[0] + w1[0];
285 s1 = w1[1] - w0[1];
290 s0 = (w0[1] + w1[1])>>1;
291 s1 = (w0[0] - w1[0])>>1;
292 w0[0] = s0 + s2;
293 w0[1] = s1 + s3;
297 w0 += 2;
302 s0 = w0[0] + w1[0];
303 s1 = w1[1] - w0[1]
    [all...]
  /frameworks/rs/driver/runtime/
rs_sample.c 129 int32_t next, float w0, float w1) {
132 float r = p0 * w0 + p1 * w1;
139 int32_t next, float w0, float w1) {
142 float r = p0 * w0 + p1 * w1;
149 int32_t next, float w0, float w1) {
152 float2 r = p0 * w0 + p1 * w1;
159 int32_t next, float w0, float w1) {
162 float3 r = p0 * w0 + p1 * w1;
169 int32_t next, float w0, float w1) {
172 float3 r = p0 * w0 + p1 * w1
500 float w0 = oneMinusFracU * oneMinusFracV; local
    [all...]
  /external/dropbear/libtommath/
bn_mp_toom_mul.c 27 mp_int w0, w1, w2, w3, w4, tmp1, tmp2, a0, a1, a2, b0, b1, b2; local
31 if ((res = mp_init_multi(&w0, &w1, &w2, &w3, &w4,
72 /* w0 = a0*b0 */
73 if ((res = mp_mul(&a0, &b0, &w0)) != MP_OKAY) {
179 if ((res = mp_sub(&w3, &w0, &w3)) != MP_OKAY) {
191 if ((res = mp_sub(&w2, &w0, &w2)) != MP_OKAY) {
206 if ((res = mp_mul_2d(&w0, 3, &tmp1)) != MP_OKAY) {
260 if ((res = mp_add(&w0, &w1, c)) != MP_OKAY) {
274 mp_clear_multi(&w0, &w1, &w2, &w3, &w4,
bn_mp_toom_sqr.c 22 mp_int w0, w1, w2, w3, w4, tmp1, a0, a1, a2; local
26 if ((res = mp_init_multi(&w0, &w1, &w2, &w3, &w4, &a0, &a1, &a2, &tmp1, NULL)) != MP_OKAY) {
49 /* w0 = a0*a0 */
50 if ((res = mp_sqr(&a0, &w0)) != MP_OKAY) {
123 if ((res = mp_sub(&w3, &w0, &w3)) != MP_OKAY) {
135 if ((res = mp_sub(&w2, &w0, &w2)) != MP_OKAY) {
150 if ((res = mp_mul_2d(&w0, 3, &tmp1)) != MP_OKAY) {
204 if ((res = mp_add(&w0, &w1, b)) != MP_OKAY) {
218 mp_clear_multi(&w0, &w1, &w2, &w3, &w4, &a0, &a1, &a2, &tmp1, NULL);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_setup_point.c 85 float w0 = info->v0[0][3]; local
89 info->a0[slot][i] = info->v0[slot][i]*w0;
111 float w0 = info->v0[0][3]; local
126 info->dadx[slot][0] *= w0;
127 info->dady[slot][0] *= w0;
128 info->a0[slot][0] *= w0;
146 info->dadx[slot][1] *= w0;
147 info->dady[slot][1] *= w0;
148 info->a0[slot][1] *= w0;
157 info->a0[slot][3] = perspective ? w0 : 1.0f
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_setup_point.c 85 float w0 = info->v0[0][3]; local
89 info->a0[slot][i] = info->v0[slot][i]*w0;
111 float w0 = info->v0[0][3]; local
126 info->dadx[slot][0] *= w0;
127 info->dady[slot][0] *= w0;
128 info->a0[slot][0] *= w0;
146 info->dadx[slot][1] *= w0;
147 info->dady[slot][1] *= w0;
148 info->a0[slot][1] *= w0;
157 info->a0[slot][3] = perspective ? w0 : 1.0f
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
ChunkedIntArray.java 71 int appendSlot(int w0, int w1, int w2, int w3)
77 fastArray[newoffset] = w0;
95 chunk[slotpos] = w0;
216 * @param w0 int
221 void writeSlot(int position, int w0, int w1, int w2, int w3)
231 chunk[slotpos] = w0;
DTMDocumentImpl.java 199 * @param w0 int As in ChunkedIntArray.append
206 private final int appendNode(int w0, int w1, int w2, int w3)
209 int slotnumber = nodes.appendSlot(w0, w1, w2, w3);
211 if (DEBUG) System.out.println(slotnumber+": "+w0+" "+w1+" "+w2+" "+w3);
690 // // W0 High: Namespace Low: Node Type
691 // int w0 = (nsIndex << 16) | ELEMENT_NODE;
698 // //int ourslot = nodes.appendSlot(w0, w1, w2, w3);
699 // int ourslot = appendNode(w0, w1, w2, w3);
837 // int w0 = 0;
841 // //w0 = ATTRIBUTE_NODE
2095 int w0 = TEXT_NODE; local
2118 int w0 = COMMENT_NODE; local
2154 int w0 = (namespaceIndex << 16) | ELEMENT_NODE; local
2200 int w0 = NAMESPACE_NODE | (m_nsNames.stringToIndex("http:\/\/www.w3.org\/2000\/xmlns\/")<<16); local
2237 int w0 = ATTRIBUTE_NODE | namespaceIndex<<16; local
    [all...]
  /external/opencv/cv/src/
cvlinefit.cpp 105 float w0 = 0; local
135 w0 += w;
156 w0 = (float) count;
159 x2 /= w0;
160 xy /= w0;
161 xz /= w0;
162 y2 /= w0;
163 yz /= w0;
164 z2 /= w0;
166 x0 /= w0;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
prog_noise.c 501 float W0 = l - t;
506 float w0 = w - W0; local
510 * determine the magnitude ordering of x0, y0, z0 and w0.
520 int c4 = (x0 > w0) ? 4 : 0;
521 int c5 = (y0 > w0) ? 2 : 0;
522 int c6 = (z0 > w0) ? 1 : 0;
561 w1 = w0 - l1 + G4;
565 w2 = w0 - l2 + 2.0f * G4;
569 w3 = w0 - l3 + 3.0f * G4
    [all...]
  /external/mesa3d/src/mesa/program/
prog_noise.c 501 float W0 = l - t;
506 float w0 = w - W0; local
510 * determine the magnitude ordering of x0, y0, z0 and w0.
520 int c4 = (x0 > w0) ? 4 : 0;
521 int c5 = (y0 > w0) ? 2 : 0;
522 int c6 = (z0 > w0) ? 1 : 0;
561 w1 = w0 - l1 + G4;
565 w2 = w0 - l2 + 2.0f * G4;
569 w3 = w0 - l3 + 3.0f * G4
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/os/
Sensors.java 130 float w0 = mWidth * 0.333333f; local
131 float w = w0 - 32;
132 float x = w0*0.5f;
146 x += w0;
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
MatrixPaletteRenderer.java 152 float w0, float w1,
161 if (w0 + w1 != 1.0f) {
173 mVertexBuffer.put(w0);
399 float w0 = (float) j / vSteps; local
400 float w1 = 1.0f - w0;
401 grid.set(i, j, x, y, z, u, v, w0, w1, 0, 1);
  /external/libvorbis/lib/
mdct.c 351 DATA_TYPE *w0 = x; local
352 DATA_TYPE *w1 = x = w0+(n>>1);
369 w0[0] = r0 + r2;
371 w0[1] = r1 + r3;
385 w0[2] = r0 + r2;
387 w0[3] = r1 + r3;
392 w0 += 4;
394 }while(w0<w1);
  /external/chromium_org/content/browser/indexed_db/
list_set_unittest.cc 149 scoped_ptr<Wrapped<int> > w0(new Wrapped<int>(0));
160 set.insert(w0.get());
177 set.erase(w0.get());

Completed in 1296 milliseconds

1 2 3