Searched refs:y (Results 1 – 10 of 10) sorted by relevance
/bootable/recovery/applypatch/ |
D | bspatch.c | 68 off_t y; in offtin() local 70 y=buf[7]&0x7F; in offtin() 71 y=y*256;y+=buf[6]; in offtin() 72 y=y*256;y+=buf[5]; in offtin() 73 y=y*256;y+=buf[4]; in offtin() 74 y=y*256;y+=buf[3]; in offtin() 75 y=y*256;y+=buf[2]; in offtin() 76 y=y*256;y+=buf[1]; in offtin() 77 y=y*256;y+=buf[0]; in offtin() 79 if(buf[7]&0x80) y=-y; in offtin() [all …]
|
D | bsdiff.c | 58 #define MIN(x,y) (((x)<(y)) ? (x) : (y)) argument 172 off_t x,y; in search() local 176 y=matchlen(old+I[en],oldsize-I[en],new,newsize); in search() 178 if(x>y) { in search() 183 return y; in search() 197 off_t y; in offtout() local 199 if(x<0) y=-x; else y=x; in offtout() 201 buf[0]=y%256;y-=buf[0]; in offtout() 202 y=y/256;buf[1]=y%256;y-=buf[1]; in offtout() 203 y=y/256;buf[2]=y%256;y-=buf[2]; in offtout() [all …]
|
/bootable/recovery/minui/ |
D | resources.c | 42 double pow(double x, double y) { in pow() argument 43 return x * y; in pow() 139 unsigned int y; in res_create_surface() local 141 for (y = 0; y < height; ++y) { in res_create_surface() 142 unsigned char* pRow = pData + y * stride; in res_create_surface() 160 for (y = 0; y < height; ++y) { in res_create_surface() 161 unsigned char* pRow = pData + y * stride; in res_create_surface() 264 int y; in res_create_localized_surface() local 265 for (y = 0; y < height; ++y) { in res_create_localized_surface() 272 if (y+1+h >= height || matches_locale(loc)) { in res_create_localized_surface() [all …]
|
D | minui.h | 40 int gr_text(int x, int y, const char *s, int bold); 41 void gr_texticon(int x, int y, gr_surface icon); 43 void gr_font_size(int *x, int *y);
|
D | graphics.c | 220 void gr_font_size(int *x, int *y) in gr_font_size() argument 223 *y = gr_font->cheight; in gr_font_size() 226 int gr_text(int x, int y, const char *s, int bold) in gr_text() argument 237 y += overscan_offset_y; in gr_text() 249 (bold ? font->cheight : 0) - y); in gr_text() 250 gl->recti(gl, x, y, x + font->cwidth, y + font->cheight); in gr_text() 258 void gr_texticon(int x, int y, gr_surface icon) { in gr_texticon() argument 265 y += overscan_offset_y; in gr_texticon() 276 gl->texCoord2i(gl, -x, -y); in gr_texticon() 277 gl->recti(gl, x, y, x+gr_get_width(icon), y+gr_get_height(icon)); in gr_texticon()
|
/bootable/diskinstaller/ |
D | android_img_system_layout.conf | 16 active y 24 active y 32 active y
|
D | android_img_data_layout.conf | 16 active y 24 active y 32 active y
|
D | installer_img_layout.conf | 15 active y
|
/bootable/recovery/ |
D | screen_ui.cpp | 210 int y = 0; in draw_screen_locked() local 220 gr_fill(0, y-2, gr_fb_width(), y+char_height+2); in draw_screen_locked() 223 if (menu[i][0]) gr_text(4, y, menu[i], 1); in draw_screen_locked() 226 if (menu[i][0]) gr_text(4, y, menu[i], i < menu_top); in draw_screen_locked() 228 y += char_height+4; in draw_screen_locked() 231 y += 4; in draw_screen_locked() 232 gr_fill(0, y, gr_fb_width(), y+2); in draw_screen_locked() 233 y += 4; in draw_screen_locked() 245 ty > y+2 && count < text_rows; in draw_screen_locked()
|
/bootable/recovery/edify/ |
D | Android.mk | 7 parser.y \
|