HomeSort by relevance Sort by last modified time
    Searched defs:x1 (Results 151 - 175 of 753) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/skia/src/animator/
SkPathParts.h 71 SkScalar x1; member in class:SkQuadTo
89 SkScalar x1; member in class:SkCubicTo
  /external/skia/src/core/
SkBitmapProcState_shaderproc.h 61 unsigned x1 = TILEX_PROCF((fx + oneX), maxX); local
65 SRC_TO_FILTER(row0[x1]),
67 SRC_TO_FILTER(row1[x1]),
SkBlitter.cpp 299 int x1 = left + compute_anti_width(runs); local
301 if (x1 <= fClipRect.fLeft) {
305 SkASSERT(x0 < x1);
314 SkASSERT(x0 < x1 && runs[x1 - x0] == 0);
315 if (x1 > fClipRect.fRight) {
316 x1 = fClipRect.fRight;
317 SkAlphaRuns::BreakAt((int16_t*)runs, (uint8_t*)aa, x1 - x0);
318 ((int16_t*)runs)[x1 - x0] = 0;
321 SkASSERT(x0 < x1 && runs[x1 - x0] == 0)
    [all...]
  /external/srec/srec/cfront/
spec_anl.c 422 float x1, y1, b, c, wscale; local
430 x1 = freqobj->piecewise_start;
437 if (x1 > 1.0 || x1 < 0.5)
442 y1 = x1 < wscale ? (float)x1 / wscale : (float)1.0;
444 b = y1 < 1.0 ? (float)((1.0 - x1) / (1.0 - y1)) : (float)0.0;
  /external/srtp/tables/
aes_tables.c 94 uint32_t x1, x2, x3; local
102 x1 = aes_sbox[i];
103 x2 = gf2_8_shift(x1);
104 x3 = x2 ^ x1;
107 tmp.v8[1] = x1;
108 tmp.v8[2] = x1;
114 tmp.v8[2] = x1;
115 tmp.v8[3] = x1;
118 tmp.v8[0] = x1;
121 tmp.v8[3] = x1;
    [all...]
  /external/v8/test/mjsunit/
smi-ops-inlined.js 236 var x1 = 0x10000000; variable
239 assertEquals(0x40000000, x1 << (x2 - x3), "0x10000000<<1(1)");
243 x1 = 0x10000000
246 assertEquals(0x40000000, x1 << (x2 - x3), "0x10000000<<2(2)");
smi-ops.js 243 var x1 = 0x10000000; variable
246 assertEquals(0x40000000, x1 << (x2 - x3), "0x10000000<<1(1)");
250 x1 = 0x10000000
253 assertEquals(0x40000000, x1 << (x2 - x3), "0x10000000<<2(2)");
  /frameworks/av/media/libeffects/testlibs/
AudioBiquadFilter.cpp 152 audio_sample_t x1 = mDelays[0][0]; local
165 acc = mac_coef_sample(b1, x1, acc);
172 x2 = x1;
173 x1 = x0;
176 mDelays[0][0] = x1;
210 audio_sample_t x1 = mDelays[ch][0]; local
218 acc = mac_coef_sample(b1, x1, acc);
225 x2 = x1;
226 x1 = x0;
231 mDelays[ch][0] = x1;
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
p_med_ol.c 174 Word16 x1, x2, x3, x4, x5; local
177 x1 = x[-2];
183 if (x2 < x1)
185 tmp = x1;
186 x1 = x2;
189 if (x3 < x1)
191 tmp = x1;
192 x1 = x3;
195 if (x4 < x1)
197 tmp = x1;
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
idct_vca.cpp 99 int32 x0, x1, x2, x4, x5; local
124 x1 = (181 * (x4 - x5) + 128) >> 8;
133 res = (x0 + x1) >> 14;
144 res2 = (x0 - x1) >> 14;
160 int32 x0, x1, x3, x5, x7;//, x8; local
162 x1 = blk[8];
166 x7 = W7 * x1;
167 x1 = W1 * x1;
170 x5 = (181 * (x1 - x7) + 128) >> 8
187 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
259 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
296 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
373 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8; local
450 int32 x0, x1, x2, x4, x5, temp; local
507 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8, temp; local
580 int32 x0, x1, x2, x3, x4, x5, x6, x7, x8, temp; local
    [all...]
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
RotateFilter.java 147 Point x1 = new Point(0.5f * (cosTheta + sinTheta + 1f), local
153 Quad quad = new Quad(x0, x1, x2, x3);
  /frameworks/rs/cpu_ref/
rsCpuIntrinsicConvolve3x3.cpp 95 uint32_t x1 = rsMax((int32_t)x-1, 0); local
98 float4 px = convert_float4(py0[x1]) * coeff[0] +
101 convert_float4(py1[x1]) * coeff[3] +
104 convert_float4(py2[x1]) * coeff[6] +
117 uint32_t x1 = rsMax((int32_t)x-1, 0); local
120 float2 px = convert_float2(py0[x1]) * coeff[0] +
123 convert_float2(py1[x1]) * coeff[3] +
126 convert_float2(py2[x1]) * coeff[6] +
138 uint32_t x1 = rsMax((int32_t)x-1, 0); local
141 float px = ((float)py0[x1]) * coeff[0]
157 uint32_t x1 = rsMax((int32_t)x-1, 0); local
168 uint32_t x1 = rsMax((int32_t)x-1, 0); local
179 uint32_t x1 = rsMax((int32_t)x-1, 0); local
205 uint32_t x1 = xstart; local
252 uint32_t x1 = xstart; local
297 uint32_t x1 = xstart; local
342 uint32_t x1 = xstart; local
387 uint32_t x1 = xstart; local
431 uint32_t x1 = xstart; local
    [all...]
rsCpuIntrinsicYuvToRGB.cpp 136 uint32_t x1 = xstart; local
165 if((x2 > x1) && gArchUseSIMD) {
167 int32_t len = (x2 - x1 - 8) >> 3;
171 x1 += len << 3;
180 x1 += len << 3;
184 x1 += len << 3;
193 if(x2 > x1) {
194 // ALOGE("y %i %i %i", p->y, x1, x2);
195 while(x1 < x2) {
196 int cx = (x1 >> 1) * cstep
    [all...]
  /frameworks/rs/driver/
rsdPath.cpp 46 float x1, xc, x2; member in struct:DrvPathStatic::__anon30642
119 s->x1 = fin[0];
162 vtx[0] = s->x1;
172 vtx[8] = s->x1;
  /hardware/ti/omap4xxx/security/tf_daemon/
lib_manifest2.c 118 uint8_t x1 = pName1[i]; local
123 if ((x1 & ~0x20) != (x2 & ~0x20))
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
IncludeOverlay.java 82 int x1 = topLeft.x; local
87 gc.fillRectangle(x1, y1, x2 - x1, y2 - y1);
SelectionHandles.java 88 int x1 = r.x; local
92 int x2 = x1 + w;
97 x1 += insets.left;
103 int mx = (x1 + x2) / 2;
107 mHandles.add(new SelectionHandle(x1, my, Position.LEFT_MIDDLE));
109 mHandles.add(new SelectionHandle(x1, y1, Position.TOP_LEFT));
112 mHandles.add(new SelectionHandle(x1, y2, Position.BOTTOM_LEFT));
  /prebuilts/tools/common/m2/internal/org/objenesis/objenesis/1.2/
objenesis-1.2.jar 
  /prebuilts/tools/common/objenesis/
objenesis-1.2.jar 
  /prebuilts/devtools/tools/lib/
ninepatch.jar 
  /external/robolectric/lib/main/
objenesis-1.0.jar 
  /developers/build/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/gradle/ActionBarCompat-Basic/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/gradle/ActionBarCompat-ListPopupMenu/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/gradle/ActionBarCompat-ShareActionProvider/gradle/wrapper/
gradle-wrapper.jar 

Completed in 1526 milliseconds

1 2 3 4 5 67 8 91011>>