HomeSort by relevance Sort by last modified time
    Searched defs:bounce (Results 1 - 22 of 22) sorted by null

  /frameworks/base/core/java/android/view/animation/
BounceInterpolator.java 38 private static float bounce(float t) { method in class:BounceInterpolator
50 if (t < 0.3535f) return bounce(t);
51 else if (t < 0.7408f) return bounce(t - 0.54719f) + 0.7f;
52 else if (t < 0.9644f) return bounce(t - 0.8526f) + 0.9f;
53 else return bounce(t - 1.0435f) + 0.95f;
  /frameworks/base/libs/hwui/
Interpolator.cpp 62 static float bounce(float t) { function in namespace:android::uirenderer
68 if (t < 0.3535f) return bounce(t);
69 else if (t < 0.7408f) return bounce(t - 0.54719f) + 0.7f;
70 else if (t < 0.9644f) return bounce(t - 0.8526f) + 0.9f;
71 else return bounce(t - 1.0435f) + 0.95f;
  /external/chromium_org/third_party/skia/samplecode/
SampleBitmapRect.cpp 57 static void bounce(SkScalar* value, SkScalar* delta, SkScalar min, SkScalar max) { function
69 bounce(&pt->fX, &vec->fX, limit.fLeft, limit.fRight);
70 bounce(&pt->fY, &vec->fY, limit.fTop, limit.fBottom);
79 void bounce() { function in class:BitmapRectView
140 this->bounce();
184 bounce(&fSrcR.fLeft, &fDX, fLimitR.fLeft, fLimitR.fRight - width);
  /external/skia/samplecode/
SampleBitmapRect.cpp 57 static void bounce(SkScalar* value, SkScalar* delta, SkScalar min, SkScalar max) { function
69 bounce(&pt->fX, &vec->fX, limit.fLeft, limit.fRight);
70 bounce(&pt->fY, &vec->fY, limit.fTop, limit.fBottom);
79 void bounce() { function in class:BitmapRectView
140 this->bounce();
184 bounce(&fSrcR.fLeft, &fDX, fLimitR.fLeft, fLimitR.fRight - width);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nouveau/
nouveau_buffer.c 109 struct nouveau_bo *bounce = NULL; local
114 mm = nouveau_mm_allocate(nv->screen->mm_GART, size, &bounce, &offset);
115 if (!bounce)
118 nv->copy_data(nv, bounce, offset, NOUVEAU_BO_GART,
121 if (nouveau_bo_map(bounce, NOUVEAU_BO_RD, nv->screen->client))
123 memcpy(buf->data + start, (uint8_t *)bounce->map + offset, size);
127 nouveau_bo_ref(NULL, &bounce);
138 struct nouveau_bo *bounce = NULL; local
151 mm = nouveau_mm_allocate(nv->screen->mm_GART, size, &bounce, &offset);
152 if (!bounce)
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_buffer.c 109 struct nouveau_bo *bounce = NULL; local
114 mm = nouveau_mm_allocate(nv->screen->mm_GART, size, &bounce, &offset);
115 if (!bounce)
118 nv->copy_data(nv, bounce, offset, NOUVEAU_BO_GART,
121 if (nouveau_bo_map(bounce, NOUVEAU_BO_RD, nv->screen->client))
123 memcpy(buf->data + start, (uint8_t *)bounce->map + offset, size);
127 nouveau_bo_ref(NULL, &bounce);
138 struct nouveau_bo *bounce = NULL; local
151 mm = nouveau_mm_allocate(nv->screen->mm_GART, size, &bounce, &offset);
152 if (!bounce)
    [all...]
  /external/e2fsprogs/lib/ext2fs/
unix_io.c 92 void *bounce; member in struct:unix_private_data
202 actual = read(data->dev, data->bounce, channel->block_size);
208 memcpy(buf, data->bounce, actual);
271 actual = read(data->dev, data->bounce,
281 memcpy(data->bounce, buf, actual);
282 actual = write(data->dev, data->bounce, channel->block_size);
323 if (data->bounce)
324 ext2fs_free_mem(&data->bounce);
325 retval = io_channel_alloc_buf(channel, 0, &data->bounce);
345 if (data->bounce)
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
AppsCustomizePagedView.java 534 AnimatorSet bounce = LauncherAnimUtils.createAnimatorSet(); local
539 bounce.play(tyuAnim).before(tydAnim);
540 bounce.setInterpolator(new AccelerateInterpolator());
541 bounce.start();
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
AppsCustomizePagedView.java 459 AnimatorSet bounce = LauncherAnimUtils.createAnimatorSet(); local
464 bounce.play(tyuAnim).before(tydAnim);
465 bounce.setInterpolator(new AccelerateInterpolator());
466 bounce.start();
    [all...]
  /external/qemu/
block.c 2288 uint8_t *bounce; member in struct:BlockDriverAIOCBSync
    [all...]
exec.c 2068 static BounceBuffer bounce; variable
    [all...]
  /external/robolectric/lib/main/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/17/
android.jar 
  /prebuilts/sdk/18/
android.jar 
  /prebuilts/sdk/19/
android.jar 
  /prebuilts/sdk/21/
android.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/system_current/
android.jar 

Completed in 258 milliseconds