Home
last modified time | relevance | path

Searched refs:w (Results 1 – 12 of 12) sorted by relevance

/bootable/recovery/
Dvr_ui.cpp31 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()
Dvr_ui.h34 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;
Dinterlace-frames.py44 w, h = sizes.pop()
47 out = Image.new("RGB", (w, h*N))
49 for i in range(w):
Dscreen_ui.h139 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;
Dscreen_ui.cpp345 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/
DMain.java232 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/
Dresources.cpp462 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()
Dgraphics.cpp237 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/
Dtestkey_v2.x509.pem24 w/Fvbl/KVD1ZmLHgBKjDMNSh0OB9mSsDWpw=
Dtestkey_v4.x509.pem23 8eHYvXovJZwXvKFI+ZyS0KBPx8cpfw89RB9qmkxqNBIm8qWb3qBiuBEIPj+NF/7w
/bootable/recovery/tests/manual/
Drecovery_test.cpp201 int w = (row[1] << 8) | row[0]; in TEST_P() local
204 EXPECT_LT(0, w); in TEST_P()
/bootable/recovery/minui/include/minui/
Dminui.h72 void gr_blit(GRSurface* source, int sx, int sy, int w, int h, int dx, int dy);