HomeSort by relevance Sort by last modified time
    Searched refs:RADIUS (Results 1 - 16 of 16) sorted by null

  /external/opencv3/modules/cudastereo/src/cuda/
stereobm.cu 73 template<int RADIUS>
79 for(int i = 1; i <= RADIUS; i++)
86 if (threadIdx.x < BLOCK_W - RADIUS)
87 cache2 = col_ssd_cache[RADIUS];
89 for(int i = RADIUS + 1; i < (2 * RADIUS + 1); i++)
95 template<int RADIUS>
100 //See above: #define COL_SSD_SIZE (BLOCK_W + 2 * RADIUS)
101 ssd[0] = CalcSSD<RADIUS>(col_ssd_cache, col_ssd + 0 * (BLOCK_W + 2 * RADIUS));
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
CornerPathEffectTest.java 38 private static final int RADIUS = 20;
47 PathEffect effect = new CornerPathEffect(RADIUS);
63 RectF oval = new RectF(BITMAP_WIDTH - PADDING - 2 * RADIUS, PADDING,
64 BITMAP_WIDTH - PADDING, PADDING + 2 * RADIUS);
90 int straightLines = BITMAP_WIDTH - PADDING - RADIUS + BITMAP_HEIGHT - PADDING - RADIUS;
94 assertTrue(cornerPixels < 2 * RADIUS);
96 assertTrue(cornerPixels > Math.sqrt(2 * Math.pow(RADIUS, 2)));
BlurMaskFilterTest.java 32 private static final int RADIUS = 5;
38 BlurMaskFilter filter = new BlurMaskFilter(RADIUS, Blur.NORMAL);
48 if (x < CENTER - OFFSET - RADIUS || y < CENTER - OFFSET - RADIUS) {
49 // check that color didn't bleed (much) beyond radius
51 } else if (x > CENTER - OFFSET + RADIUS && y > CENTER - OFFSET + RADIUS) {
SweepGradientTest.java 39 private static final int RADIUS = 80;
88 int x = CENTER + (int)(Math.cos(rad) * RADIUS);
89 int y = CENTER + (int)(Math.sin(rad) * RADIUS);
  /external/webp/src/enc/
picture_psnr.c 26 #define RADIUS 2 // search radius. Shouldn't be too large.
34 const int y_0 = (y - RADIUS < 0) ? 0 : y - RADIUS;
35 const int y_1 = (y + RADIUS + 1 >= h) ? h : y + RADIUS + 1;
37 const int x_0 = (x - RADIUS < 0) ? 0 : x - RADIUS;
38 const int x_1 = (x + RADIUS + 1 >= w) ? w : x + RADIUS + 1
    [all...]
  /development/samples/devbytes/animation/ListViewCellInsertion/src/com/example/android/insertingcells/
RoundView.java 36 private final int RADIUS = 20;
68 RADIUS, mPaint);
  /frameworks/native/libs/input/tests/
InputEvent_test.cpp 537 // Each point 'i' is a point on a circle of radius ROTATION centered at (3,2) at an angle
543 const float RADIUS = 10;
555 pointerCoords[i].setAxisValue(AMOTION_EVENT_AXIS_X, sinf(angle) * RADIUS + 3);
556 pointerCoords[i].setAxisValue(AMOTION_EVENT_AXIS_Y, -cosf(angle) * RADIUS + 2);
563 float originalRawY = -RADIUS + 2;
584 ASSERT_NEAR(sinf(angle) * RADIUS, event.getX(i), 0.001);
585 ASSERT_NEAR(-cosf(angle) * RADIUS, event.getY(i), 0.001);
  /packages/experimental/DreamTheater/src/com/android/dreamtheater/
BouncyDroid.java 34 static final int RADIUS = 100;
205 mBody.r = RADIUS;
305 RADIUS, RADIUS);
  /external/opencv3/3rdparty/libwebp/enc/
picture.c 921 // search radius. Shouldn't be too large.
922 #define RADIUS 2
930 const int y_0 = (y - RADIUS < 0) ? 0 : y - RADIUS;
931 const int y_1 = (y + RADIUS + 1 >= h) ? h : y + RADIUS + 1;
933 const int x_0 = (x - RADIUS < 0) ? 0 : x - RADIUS;
934 const int x_1 = (x + RADIUS + 1 >= w) ? w : x + RADIUS + 1
    [all...]
  /external/ppp/pppd/plugins/radius/etc/
dictionary 2 # Updated 97/06/13 to livingston-radius-2.01 miquels@cistron.nl
176 VALUE Acct-Authentic RADIUS 1
183 VALUE Termination-Action RADIUS-Request 1
  /cts/tests/tests/view/src/android/view/cts/
MotionEventTest.java 369 // Each point 'i' is a point on a circle of radius ROTATION centered at (3,2) at an angle
375 final float RADIUS = 10;
387 c.x = (float) (Math.sin(angle) * RADIUS + 3);
388 c.y = (float) (- Math.cos(angle) * RADIUS + 2);
394 final float originalRawY = - RADIUS + 2;
421 assertEquals(Math.sin(angle) * RADIUS, c.x, 0.001);
422 assertEquals(- Math.cos(angle) * RADIUS, c.y, 0.001);
  /packages/apps/DeskClock/src/com/android/deskclock/widget/
CircleView.java 55 * A Property wrapper around the radius functionality handled by the
58 public final static Property<CircleView, Float> RADIUS =
59 new Property<CircleView, Float>(Float.class, "radius") {
251 * @return the radius of the circle
258 * Sets the radius of the circle and invalidates only the affected area.
260 * @param radius the radius to use
264 public CircleView setRadius(float radius) {
266 if (oldRadius != radius) {
267 mRadius = radius;
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/alarms/
AlarmActivity.java 224 PropertyValuesHolder.ofFloat(CircleView.RADIUS, 0.0f, pulseView.getRadius()),
580 revealView, CircleView.RADIUS, startRadius, endRadius);
  /external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rjsmin/bench/
markermanager.js 918 var RADIUS = 7;
  /external/owasp/sanitizer/lib/htmlparser-1.3/
htmlparser-1.3-with-transitions.jar 
htmlparser-1.3.jar 

Completed in 323 milliseconds