Home
last modified time | relevance | path

Searched refs:out (Results 1 – 7 of 7) sorted by relevance

/bootable/recovery/
Dinterlace-frames.py47 out = Image.new("RGB", (w, h*N))
51 out.putpixel((i, j*N+fn), f.getpixel((i, j)))
62 out.save(output, pnginfo=meta)
84 out = Image.new('RGB', (width, height))
85 out.info = img.info
88 out.putpixel((i, j), img.getpixel((i, j * num_frames + k)))
90 out2 = out.convert(mode='P', palette=palette)
DREADME.md130 `-user` builds filter out `PRODUCT_ADB_KEYS`, so no `/adb_keys` will be included there.
DNOTICE172 result of this License or out of the use or inability to use the
/bootable/recovery/tools/recovery_l10n/src/com/android/recovery_l10n/
DMain.java246 Bitmap out = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
247 out.eraseColor(0xff000000);
305 out.setPixel(0, p, colorFor(tw & 0xff));
306 out.setPixel(1, p, colorFor(tw >>> 8));
307 out.setPixel(2, p, colorFor(h & 0xff));
308 out.setPixel(3, p, colorFor(h >>> 8));
309 out.setPixel(4, p, colorFor(langBytes.length));
312 out.setPixel(x, p, colorFor(b));
315 out.setPixel(x, p, colorFor(0));
319 out.setPixels(pixels, left, w, 0, p, tw, h);
[all …]
/bootable/recovery/otafault/
Dtest.cpp28 const char* out = "321"; in main() local
31 int writev = ota_write(fd, out, 4); in main()
/bootable/recovery/tools/recovery_l10n/
DREADME.md24 adb root && adb pull /data/data/com.android.recovery_l10n/files/text-out.png
28 * "pngcrush -c 0 ..." converts "text-out.png" into a 1-channel image,
36 pngcrush -c 0 text-out.png $OUTPUT_PNG
/bootable/recovery/tools/dumpkey/
DDumpPublicKey.java261 System.out.print(print(key, useSHA256)); in main()
262 System.out.println(i < args.length - 1 ? "," : ""); in main()