Searched refs:w (Results 1 – 9 of 9) sorted by relevance
/bootable/recovery/tools/recovery_l10n/src/com/android/recovery_l10n/ |
D | Main.java | 232 int w = b.getWidth(); 235 if (w > width) width = w; 254 int w = bm.getWidth(); 256 bm.getPixels(pixels, 0, w, 0, 0, w, h); 262 int right = w; 266 if (pixels[j*w+right-1] != 0xff000000) { 282 if (pixels[j*w+left] != 0xff000000) { 319 out.setPixels(pixels, left, w, 0, p, tw, h);
|
/bootable/recovery/ |
D | interlace-frames.py | 44 w, h = sizes.pop() 47 out = Image.new("RGB", (w, h*N)) 49 for i in range(w):
|
/bootable/recovery/minui/ |
D | resources.cpp | 428 int w = (row[1] << 8) | row[0]; in res_create_localized_alpha_surface() local 434 printf(" %20s: %s (%d x %d @ %d)\n", name, loc, w, h, y); in res_create_localized_alpha_surface() 436 surface = malloc_surface(w*h); in res_create_localized_alpha_surface() 441 surface->width = w; in res_create_localized_alpha_surface() 443 surface->row_bytes = w; in res_create_localized_alpha_surface() 449 memcpy(surface->data + i*w, row.data(), w); in res_create_localized_alpha_surface()
|
D | graphics.cpp | 222 void gr_blit(GRSurface* source, int sx, int sy, int w, int h, int dx, int dy) { in gr_blit() argument 233 if (outside(dx, dy) || outside(dx+w-1, dy+h-1)) return; in gr_blit() 240 memcpy(dst_p, src_p, w * source->pixel_bytes); in gr_blit()
|
/bootable/recovery/tests/testdata/ |
D | testkey_v2.x509.pem | 24 w/Fvbl/KVD1ZmLHgBKjDMNSh0OB9mSsDWpw=
|
D | testkey_v4.x509.pem | 23 8eHYvXovJZwXvKFI+ZyS0KBPx8cpfw89RB9qmkxqNBIm8qWb3qBiuBEIPj+NF/7w
|
/bootable/recovery/minui/include/minui/ |
D | minui.h | 64 void gr_blit(GRSurface* source, int sx, int sy, int w, int h, int dx, int dy);
|
/bootable/recovery/tests/manual/ |
D | recovery_test.cpp | 201 int w = (row[1] << 8) | row[0]; in TEST_P() local 204 EXPECT_LT(0, w); in TEST_P()
|
/bootable/recovery/updater/ |
D | blockimg.cpp | 99 ssize_t w = TEMP_FAILURE_RETRY(ota_write(fd, data+written, size-written)); in write_all() local 100 if (w == -1) { in write_all() 105 written += w; in write_all()
|