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

  /system/core/sdcard/
sdcard.c 32 #include "fuse.h"
38 * sdcard is a program that uses FUSE to emulate FAT-on-sdcard style
106 struct fuse { struct
321 void fuse_init(struct fuse *fuse, int fd, const char *path)
323 fuse->fd = fd;
324 fuse->next_node_id = 2;
325 fuse->next_generation = 0;
327 fuse->all = &fuse->root
963 struct fuse fuse; local
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
RocketLauncher.java 97 public float fuse; field in class:RocketLauncher.Board.FlyingIcon
172 return String.format("<'%s' @ (%.1f, %.1f) v=%.1f a=%.1f dist/fuse=%.1f/%.1f>",
173 "icon", getX(), getY(), v, angle, dist, fuse);
197 fuse = (float) Math.max(boardCenterX, boardCenterY);
210 float scale = lerp(0, endscale, (float) Math.sqrt(dist / fuse));
213 final float q1 = fuse*0.15f;
214 final float q4 = fuse*0.75f;
218 setAlpha((dist >= fuse) ? 0f : (1f-(float)Math.pow((dist-q4)/(fuse-q4),2)));

Completed in 57 milliseconds