Searched refs:source (Results 1 – 8 of 8) sorted by relevance
/bootable/recovery/minui/ |
D | graphics.cpp | 232 void gr_blit(GRSurface* source, int sx, int sy, int w, int h, int dx, int dy) { in gr_blit() argument 233 if (source == NULL) return; in gr_blit() 235 if (gr_draw->pixel_bytes != source->pixel_bytes) { in gr_blit() 245 unsigned char* src_p = source->data + sy*source->row_bytes + sx*source->pixel_bytes; in gr_blit() 250 memcpy(dst_p, src_p, w * source->pixel_bytes); in gr_blit() 251 src_p += source->row_bytes; in gr_blit()
|
D | minui.h | 53 void gr_blit(GRSurface* source, int sx, int sy, int w, int h, int dx, int dy);
|
/bootable/recovery/fonts/ |
D | README | 5 https://code.google.com/p/googlefontdirectory/source/browse/ofl/inconsolata/
|
D | OFL.txt | 31 include source files, build scripts and documentation.
|
/bootable/recovery/applypatch/ |
D | NOTICE | 22 Redistribution and use in source and binary forms, with or without 25 1. Redistributions of source code must retain the above copyright
|
/bootable/recovery/ |
D | NOTICE | 40 including but not limited to software source code, documentation 41 source, and configuration files. 69 communication on electronic mailing lists, source code control systems,
|
D | recovery.cpp | 291 static void copy_log_file(const char* source, const char* destination, bool append) { in copy_log_file() argument 296 FILE* source_fp = fopen(source, "r"); in copy_log_file() 309 check_and_fclose(source_fp, source); in copy_log_file()
|
/bootable/recovery/updater/ |
D | blockimg.c | 875 static void MoveRange(uint8_t* dest, RangeSet* locs, const uint8_t* source) { in MoveRange() argument 885 memmove(dest + (locs->pos[i*2] * BLOCKSIZE), source + (start * BLOCKSIZE), in MoveRange()
|