Searched refs:x (Results 1 – 12 of 12) sorted by relevance
/bootable/recovery/minui/ |
D | graphics.cpp | 58 static bool outside(int x, int y) in outside() argument 60 return x < 0 || x >= gr_draw->width || y < 0 || y >= gr_draw->height; in outside() 68 void gr_font_size(int *x, int *y) in gr_font_size() argument 70 *x = gr_font->cwidth; in gr_font_size() 106 void gr_text(int x, int y, const char *s, bool bold) in gr_text() argument 114 x += overscan_offset_x; in gr_text() 119 if (outside(x, y) || outside(x+font->cwidth-1, y+font->cheight-1)) break; in gr_text() 127 unsigned char* dst_p = gr_draw->data + y*gr_draw->row_bytes + x*gr_draw->pixel_bytes; in gr_text() 133 x += font->cwidth; in gr_text() 137 void gr_texticon(int x, int y, GRSurface* icon) { in gr_texticon() argument [all …]
|
D | mkfont.c | 7 unsigned char *x; in main() local 14 x = gimp_image.pixel_data; in main() 27 run_val = (*x ? 0 : 255); in main() 30 x+=3; in main() 33 unsigned val = (*x ? 0 : 255); in main() 34 x+=3; in main()
|
D | minui.h | 48 void gr_text(int x, int y, const char *s, bool bold); 49 void gr_texticon(int x, int y, GRSurface* icon); 51 void gr_font_size(int *x, int *y);
|
D | resources.cpp | 167 int x; in transform_rgb_to_draw() local 174 for (x = 0; x < width; ++x) { in transform_rgb_to_draw() 185 for (x = 0; x < width; ++x) { in transform_rgb_to_draw()
|
D | events.cpp | 34 #define BITS_TO_LONGS(x) (((x) + BITS_PER_LONG - 1) / BITS_PER_LONG) argument
|
/bootable/recovery/ |
D | common.h | 40 #define STRINGIFY(x) #x argument 41 #define EXPAND(x) STRINGIFY(x) argument
|
D | verifier.h | 24 p256_int x; member
|
D | verifier.cpp | 279 if (!p256_ecdsa_verify(&(pKeys[i].ec->x), &(pKeys[i].ec->y), in verify_file() 430 p256_from_bin(x_bytes, &key->x); in load_keys()
|
D | screen_ui.cpp | 116 int x = (gr_fb_width() - max_stage * gr_get_width(stageMarkerEmpty)) / 2; in draw_background_locked() local 120 0, 0, sw, stageHeight, x, y); in draw_background_locked() 121 x += sw; in draw_background_locked()
|
/bootable/recovery/applypatch/ |
D | bsdiff.c | 58 #define MIN(x,y) (((x)<(y)) ? (x) : (y)) argument 62 off_t i,j,k,x,tmp,jj,kk; in split() local 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() [all …]
|
/bootable/recovery/minadbd/ |
D | services.cpp | 39 void* service_bootstrap_func(void* x) { in service_bootstrap_func() argument 40 stinfo* sti = reinterpret_cast<stinfo*>(x); in service_bootstrap_func()
|
/bootable/recovery/edify/ |
D | lexer.l | 37 %x STR 68 \\x[0-9a-fA-F]{2} {
|