Home
last modified time | relevance | path

Searched refs:src_p (Results 1 – 2 of 2) sorted by relevance

/aosp12/bootable/recovery/minui/
H A Dgraphics.cpp141 static void TextBlend(const uint8_t* src_p, int src_row_bytes, uint32_t* dst_p, int dst_row_pixels, in TextBlend() argument
145 const uint8_t* sx = src_p; in TextBlend()
152 src_p += src_row_bytes; in TextBlend()
179 const uint8_t* src_p = font->texture->data() + ((ch - ' ') * font->char_width) + in gr_text() local
183 TextBlend(src_p, font->texture->row_bytes, dst_p, row_pixels, font->char_width, in gr_text()
204 const uint8_t* src_p = icon->data(); in gr_texticon() local
206 TextBlend(src_p, icon->row_bytes, dst_p, row_pixels, icon->width, icon->height); in gr_texticon()
291 const uint8_t* src_p = source->data() + sy * source->row_bytes + sx * source->pixel_bytes; in gr_blit() local
295 memcpy(dst_p, src_p, w * source->pixel_bytes); in gr_blit()
296 src_p += source->row_bytes; in gr_blit()
/aosp12/build/make/tools/releasetools/
H A Dbuild_image.py574 def copy_prop(src_p, dest_p): argument
583 if src_p in glob_dict:
584 d[dest_p] = str(glob_dict[src_p])
861 def copy_prop(src_p, dest_p): argument
862 if src_p in image_prop:
863 d[dest_p] = image_prop[src_p]