Lines Matching refs:dst

251             u16        *dst = &context->sub_bg[y * 32];  in DEMO_DrawFlip()  local
255 dst[x] = (u16)((u8)src[x] | (palette << 12)); in DEMO_DrawFlip()
259 dst[x] = (u16)(0 | (palette << 12)); in DEMO_DrawFlip()
362 GXRgb *dst = &context->bitmap_frame[x + y * GX_LCD_SIZE_X]; in DEMOiFillRect() local
365 MI_CpuFill16(dst, color, wx * sizeof(GXRgb)); in DEMOiFillRect()
366 dst += GX_LCD_SIZE_X; in DEMOiFillRect()
402 GXRgb *dst = &context->bitmap_frame[x + y * GX_LCD_SIZE_X]; in DEMOBlitRect() local
405 MI_CpuCopy16(image, dst, wx * sizeof(GXRgb)); in DEMOBlitRect()
407 dst += GX_LCD_SIZE_X; in DEMOBlitRect()
445 GXRgb *dst = &context->bitmap_frame[x + y * GX_LCD_SIZE_X]; in DEMOBlitTex16() local
460dst[(ty + dy) * GX_LCD_SIZE_X + tx + dx] = (GXRgb)(plt[index] | 0x8000); in DEMOBlitTex16()
497 GXRgb *dst = NULL; in DEMOiDrawLine() local
518 dst = &context->bitmap_frame[sx + sy * GX_LCD_SIZE_X]; in DEMOiDrawLine()
521 *dst = color; in DEMOiDrawLine()
522 dst += GX_LCD_SIZE_X; in DEMOiDrawLine()
539 dst = &context->bitmap_frame[sx + sy * GX_LCD_SIZE_X]; in DEMOiDrawLine()
540 MI_CpuFill16(dst, color, wx * sizeof(GXRgb)); in DEMOiDrawLine()
549 dst = &context->bitmap_frame[sx + sy * GX_LCD_SIZE_X]; in DEMOiDrawLine()
563 moved = TRUE, dx = 0, ++sx, dst += 1; in DEMOiDrawLine()
567 moved = TRUE, dy = 0, sy += y_delta, dst += y_ofs; in DEMOiDrawLine()
573 *dst = color; in DEMOiDrawLine()
691 GXRgb *dst = &p[GX_LCD_SIZE_X * oy + px]; in DEMODrawText() local
701 dst[i] = txt; in DEMODrawText()
705 dst[i] = gnd; in DEMODrawText()
708 dst += stroke; in DEMODrawText()
751 u16 *dst = &context->main_bg[y * 32]; in DEMOPutString() local
762 dst[x] = (u16)((u8)tmp[x] | (palette << 12)); in DEMOPutString()
788 char *dst = context->sub_log[context->sub_log_count % 24]; in DEMOPutLog() local
789 int x = STD_GetStringLength(dst); in DEMOPutLog()
801 dst[(x < 32) ? x : 32] = '\0'; in DEMOPutLog()
803 dst = context->sub_log[context->sub_log_count % 24]; in DEMOPutLog()
809 dst[x++] = *src; in DEMOPutLog()
814 dst[x] = '\0'; in DEMOPutLog()