Searched defs:fixed (Results 1 - 3 of 3) sorted by last modified time

/frameworks/native/opengl/libagl/
H A Dtexture.cpp981 GGLfixed fixed[4]; local
983 fixed[i] = gglFloatToFixed(params[i]);
984 c->rasterizer.procs.texEnvxv(c, target, pname, fixed);
/frameworks/base/services/core/java/com/android/server/pm/
H A DDefaultPermissionGrantPolicy.java91 private static final String ATTR_FIXED = "fixed";
979 Log.i(TAG, "Granted " + (systemFixed ? "fixed " : "not fixed ")
998 Log.i(TAG, "Granted not fixed " + permission + " to default handler "
1055 permissionGrant.fixed, userId);
1183 final boolean fixed = XmlUtils.readBooleanAttribute(parser, ATTR_FIXED);
1185 DefaultPermissionGrant exception = new DefaultPermissionGrant(name, fixed);
1199 final boolean fixed; field in class:DefaultPermissionGrantPolicy.DefaultPermissionGrant
1201 public DefaultPermissionGrant(String name, boolean fixed) { argument
1203 this.fixed
[all...]
/frameworks/base/libs/hwui/
H A DPatch.cpp81 const float fixed = bitmapWidth - stretchSize; local
82 const float xStretch = std::max(width - fixed, 0.0f);
84 rescaleX = fixed == 0.0f ? 0.0f : std::min(std::max(width, 0.0f) / fixed, 1.0f);
93 const float fixed = bitmapHeight - stretchSize; local
94 const float yStretch = std::max(height - fixed, 0.0f);
96 rescaleY = fixed == 0.0f ? 0.0f : std::min(std::max(height, 0.0f) / fixed, 1.0f);

Completed in 2212 milliseconds