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

  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/
PolygonSprite.java 160 int intBits = ((int)(255 * a) << 24) | ((int)(255 * b) << 16) | ((int)(255 * g) << 8) | ((int)(255 * r));
161 float color = NumberUtils.intToFloatColor(intBits);
322 int intBits = NumberUtils.floatToIntColor(vertices[2]);
324 color.r = (intBits & 0xff) / 255f;
325 color.g = ((intBits >>> 8) & 0xff) / 255f;
326 color.b = ((intBits >>> 16) & 0xff) / 255f;
327 color.a = ((intBits >>> 24) & 0xff) / 255f;
Sprite.java 283 int intBits = NumberUtils.floatToIntColor(vertices[C1]);
287 intBits = intBits & 0x00FFFFFF;
289 intBits = intBits | alphaBits;
290 float color = NumberUtils.intToFloatColor(intBits);
299 int intBits = ((int)(255 * a) << 24) | ((int)(255 * b) << 16) | ((int)(255 * g) << 8) | ((int)(255 * r));
300 float color = NumberUtils.intToFloatColor(intBits);
568 int intBits = NumberUtils.floatToIntColor(vertices[C1]);
570 color.r = (intBits & 0xff) / 255f;
    [all...]
SpriteCache.java 148 int intBits = (int)(255 * a) << 24 | (int)(255 * b) << 16 | (int)(255 * g) << 8 | (int)(255 * r);
149 color = NumberUtils.intToFloatColor(intBits);
159 int intBits = NumberUtils.floatToIntColor(color);
161 color.r = (intBits & 0xff) / 255f;
162 color.g = ((intBits >>> 8) & 0xff) / 255f;
163 color.b = ((intBits >>> 16) & 0xff) / 255f;
164 color.a = ((intBits >>> 24) & 0xff) / 255f;
SpriteBatch.java 203 int intBits = (int)(255 * a) << 24 | (int)(255 * b) << 16 | (int)(255 * g) << 8 | (int)(255 * r);
204 color = NumberUtils.intToFloatColor(intBits);
214 int intBits = NumberUtils.floatToIntColor(color);
216 color.r = (intBits & 0xff) / 255f;
217 color.g = ((intBits >>> 8) & 0xff) / 255f;
218 color.b = ((intBits >>> 16) & 0xff) / 255f;
219 color.a = ((intBits >>> 24) & 0xff) / 255f;
PolygonSpriteBatch.java 179 int intBits = (int)(255 * a) << 24 | (int)(255 * b) << 16 | (int)(255 * g) << 8 | (int)(255 * r);
180 color = NumberUtils.intToFloatColor(intBits);
190 int intBits = NumberUtils.floatToIntColor(color);
192 color.r = (intBits & 0xff) / 255f;
193 color.g = ((intBits >>> 8) & 0xff) / 255f;
194 color.b = ((intBits >>> 16) & 0xff) / 255f;
195 color.a = ((intBits >>> 24) & 0xff) / 255f;
    [all...]
BitmapFontCache.java 176 int intBits = ((int)(255 * a) << 24) | ((int)(255 * b) << 16) | ((int)(255 * g) << 8) | ((int)(255 * r));
177 setColors(NumberUtils.intToFloatColor(intBits));
  /libcore/ojluni/src/main/java/java/lang/
Math.java 614 int intBits = Float.floatToRawIntBits(a);
615 int biasedExp = (intBits & FloatConsts.EXP_BIT_MASK)
621 int r = ((intBits & FloatConsts.SIGNIF_BIT_MASK)
623 if (intBits < 0) {
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/decals/
Decal.java 77 int intBits = ((int)(255 * a) << 24) | ((int)(255 * b) << 16) | ((int)(255 * g) << 8) | ((int)(255 * r));
78 float color = NumberUtils.intToFloatColor(intBits);
  /prebuilts/go/darwin-x86/src/fmt/
scan.go 953 *v = int(s.scanInt(verb, intBits))
963 *v = uint(s.scanUint(verb, intBits))
print.go 630 intBits = reflect.TypeOf(0).Bits()
  /prebuilts/go/linux-x86/src/fmt/
scan.go 953 *v = int(s.scanInt(verb, intBits))
963 *v = uint(s.scanUint(verb, intBits))
print.go 630 intBits = reflect.TypeOf(0).Bits()

Completed in 991 milliseconds