/bootable/recovery/ |
D | vr_ui.cpp | 31 void VrRecoveryUI::DrawSurface(GRSurface* surface, int sx, int sy, int w, int h, int dx, in DrawSurface() argument 33 gr_blit(surface, sx, sy, w, h, dx + kStereoOffset, dy); in DrawSurface() 34 gr_blit(surface, sx, sy, w, h, dx - kStereoOffset + ScreenWidth(), dy); in DrawSurface() 62 void VrRecoveryUI::DrawFill(int x, int y, int w, int h) const { in DrawFill() argument 63 gr_fill(x + kStereoOffset, y, w, h); in DrawFill() 64 gr_fill(x - kStereoOffset + ScreenWidth(), y, w, h); in DrawFill()
|
D | vr_ui.h | 34 void DrawSurface(GRSurface* surface, int sx, int sy, int w, int h, int dx, int dy) const override; 37 void DrawFill(int x, int y, int w, int h) const override;
|
D | interlace-frames.py | 44 w, h = sizes.pop() 47 out = Image.new("RGB", (w, h*N)) 49 for i in range(w):
|
D | screen_ui.h | 139 virtual void DrawSurface(GRSurface* surface, int sx, int sy, int w, int h, int dx, int dy) const; 141 virtual void DrawFill(int x, int y, int w, int h) const;
|
D | screen_ui.cpp | 345 void ScreenRecoveryUI::DrawSurface(GRSurface* surface, int sx, int sy, int w, int h, int dx, in DrawSurface() argument 347 gr_blit(surface, sx, sy, w, h, dx, dy); in DrawSurface() 359 void ScreenRecoveryUI::DrawFill(int x, int y, int w, int h) const { in DrawFill() argument 360 gr_fill(x, y, w, h); in DrawFill()
|
/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/minui/ |
D | resources.cpp | 462 int w = (row[1] << 8) | row[0]; in res_create_localized_alpha_surface() local 468 printf(" %20s: %s (%d x %d @ %d)\n", name, loc, w, h, y); in res_create_localized_alpha_surface() 470 GRSurface* surface = malloc_surface(w * h); in res_create_localized_alpha_surface() 474 surface->width = w; in res_create_localized_alpha_surface() 476 surface->row_bytes = w; in res_create_localized_alpha_surface() 481 memcpy(surface->data + i * w, row.data(), w); in res_create_localized_alpha_surface()
|
D | graphics.cpp | 237 void gr_blit(GRSurface* source, int sx, int sy, int w, int h, int dx, int dy) { in gr_blit() argument 248 if (outside(dx, dy) || outside(dx + w - 1, dy + h - 1)) return; in gr_blit() 259 for (int x = 0; x < w; x += 1) { in gr_blit() 272 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/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/minui/include/minui/ |
D | minui.h | 72 void gr_blit(GRSurface* source, int sx, int sy, int w, int h, int dx, int dy);
|