Home
last modified time | relevance | path

Searched refs:h (Results 1 – 9 of 9) sorted by relevance

/bootable/recovery/tools/recovery_l10n/src/com/android/recovery_l10n/
DMain.java212 int h = b.getHeight();
214 height += h+1;
215 if (h > maxHeight) maxHeight = h;
234 int h = bm.getHeight();
237 bm.getPixels(pixels, 0, w, 0, 0, w, h);
246 for (int j = 0; j < h; ++j) {
262 for (int j = 0; j < h; ++j) {
284 Log.i(TAG, "encoding \"" + loc + "\" as \"" + lang + "\": " + tw + " x " + h);
288 out.setPixel(2, p, colorFor(h & 0xff));
289 out.setPixel(3, p, colorFor(h >>> 8));
[all …]
/bootable/recovery/applypatch/
Dbsdiff.cpp60 static void split(off_t *I,off_t *V,off_t start,off_t len,off_t h) in split() argument
66 j=1;x=V[I[k]+h]; in split()
68 if(V[I[k+i]+h]<x) { in split()
69 x=V[I[k+i]+h]; in split()
72 if(V[I[k+i]+h]==x) { in split()
83 x=V[I[start+len/2]+h]; in split()
86 if(V[I[i]+h]<x) jj++; in split()
87 if(V[I[i]+h]==x) kk++; in split()
93 if(V[I[i]+h]<x) { in split()
95 } else if(V[I[i]+h]==x) { in split()
[all …]
/bootable/recovery/edify/
Dparser.yy18 #include <stdio.h>
19 #include <stdlib.h>
20 #include <string.h>
22 #include "expr.h"
23 #include "yydefs.h"
24 #include "parser.h"
Dlexer.ll18 #include <string.h>
21 #include "expr.h"
22 #include "yydefs.h"
23 #include "parser.h"
/bootable/recovery/
Dinterlace-frames.py44 w, h = sizes.pop()
47 out = Image.new("RGB", (w, h*N))
48 for j in range(h):
Dadb_install.h22 int apply_from_adb(RecoveryUI* h, bool* wipe_cache, const char* install_file);
/bootable/recovery/minui/
Dresources.cpp420 int h = (row[3] << 8) | row[2]; in res_create_localized_alpha_surface() local
424 if (y+1+h >= height || matches_locale(loc, locale)) { in res_create_localized_alpha_surface()
425 printf(" %20s: %s (%d x %d @ %d)\n", name, loc, w, h, y); in res_create_localized_alpha_surface()
427 surface = malloc_surface(w*h); in res_create_localized_alpha_surface()
433 surface->height = h; in res_create_localized_alpha_surface()
438 for (i = 0; i < h; ++i, ++y) { in res_create_localized_alpha_surface()
447 for (i = 0; i < h; ++i, ++y) { in res_create_localized_alpha_surface()
Dminui.h53 void gr_blit(GRSurface* source, int sx, int sy, int w, int h, int dx, int dy);
Dgraphics.cpp232 void gr_blit(GRSurface* source, int sx, int sy, int w, int h, int dx, int dy) { in gr_blit() argument
243 if (outside(dx, dy) || outside(dx+w-1, dy+h-1)) return; in gr_blit()
249 for (i = 0; i < h; ++i) { in gr_blit()