HomeSort by relevance Sort by last modified time
    Searched full:zwidth (Results 1 - 4 of 4) sorted by null

  /libcore/dex/src/main/java/com/android/dex/
EncodedValueCodec.java 121 * @param zwidth byte count minus one
123 public static int readSignedInt(ByteInput in, int zwidth) {
125 for (int i = zwidth; i >= 0; i--) {
128 result >>= (3 - zwidth) * 8;
135 * @param zwidth byte count minus one
138 public static int readUnsignedInt(ByteInput in, int zwidth, boolean fillOnRight) {
141 for (int i = zwidth; i >= 0; i--) {
144 result >>>= (3 - zwidth) * 8;
146 for (int i = zwidth; i >= 0; i--) {
156 * @param zwidth byte count minus on
    [all...]
  /external/chromium_org/native_client_sdk/src/gonacl_appengine/static/bullet/
scenes.js 5 function randomCubeScene(numObjects, zwidth) {
22 body.position.z = Math.random() * zwidth - (zwidth/2);
34 function randomCylinderScene(numObjects, zwidth) {
50 body.position.z = Math.random() * zwidth - (zwidth/2);
  /art/runtime/
dex_file.cc     [all...]
  /prebuilts/sdk/tools/lib/
dx.jar 

Completed in 256 milliseconds