Lines Matching refs:y
226 void ObjSet(s32 objNo, s32 x, s32 y, s32 charNo, s32 paletteNo) in ObjSet() argument
230 y, in ObjSet()
246 void ObjSetString(s32 startobjNo, s32 x, s32 y, const char *string, s32 paletteNo) in ObjSetString() argument
251 ObjSet(startobjNo + i, x + i * 8, y, (s32)string[i], paletteNo); in ObjSetString()
311 void BgPutStringN(s32 x, s32 y, s32 palette, const char *text, s32 num) in BgPutStringN() argument
325 BgPutChar(x + i, y, palette, text[i]); in BgPutStringN()
338 void BgPutChar(s32 x, s32 y, s32 palette, s8 c) in BgPutChar() argument
340 vscr[((y * 32) + x) % (32 * 32)] = (u16)((palette << 12) | c); in BgPutChar()
352 void BgPutString(s32 x, s32 y, s32 palette, const char *text) in BgPutString() argument
354 BgPutStringN(x, y, palette, text, BGSTR_MAX_LENGTH); in BgPutString()
366 void BgPrintStr(s32 x, s32 y, s32 palette, const char *text, ...) in BgPrintStr() argument
375 BgPutString(x, y, palette, temp); in BgPrintStr()
426 void BgColorString(s16 x, s16 y, s16 length, u8 palette) in BgColorString() argument
439 index = ((y * 32) + x + i) % (32 * 32); in BgColorString()