Home
last modified time | relevance | path

Searched refs:palette (Results 1 – 25 of 49) sorted by relevance

12

/TwlSDK-5.1.0/build/demos/mb/multiboot/src/
Ddispfunc.c99 static void BgiPutChar(s16 x, s16 y, u8 palette, char c, u8 lcd);
100 static void BgiPutStringN(s16 x, s16 y, u8 palette, char *text, u32 num, u8 lcd);
103 static void BgiPutChar(s16 x, s16 y, u8 palette, char c, u8 lcd) in BgiPutChar() argument
107 vscr[((y * 32) + x) % (32 * 32)] = (u16)((palette << 12) | c); in BgiPutChar()
111 vscr_sub[((y * 32) + x) % (32 * 32)] = (u16)((palette << 12) | c); in BgiPutChar()
115 static void BgiPutStringN(s16 x, s16 y, u8 palette, char *text, u32 num, u8 lcd) in BgiPutStringN() argument
126 BgiPutChar((s16)(x + i), y, palette, text[i], lcd); in BgiPutStringN()
179 void BgPrintf(s16 x, s16 y, u8 palette, char *text, ...) in BgPrintf() argument
190 BgPutString(x, y, palette, temp); in BgPrintf()
195 void BgPutString(s16 x, s16 y, u8 palette, char *text) in BgPutString() argument
[all …]
/TwlSDK-5.1.0/build/demos/mb/multiboot/include/
Ddispfunc.h89 void BgPrintf(s16 x, s16 y, u8 palette, char *text, ...);
90 void BgPutString(s16 x, s16 y, u8 palette, char *text);
91 void BgPutStringN(s16 x, s16 y, u8 palette, char *text, u32 num);
92 void BgPutChar(s16 x, s16 y, u8 palette, char c);
96 void BgPrintfSub(s16 x, s16 y, u8 palette, char *text, ...);
97 void BgPutStringSub(s16 x, s16 y, u8 palette, char *text);
98 void BgPutStringNSub(s16 x, s16 y, u8 palette, char *text, u32 num);
99 void BgPutCharSub(s16 x, s16 y, u8 palette, char c);
106 void BgSetMessage(u8 palette, char *message, ...);
107 void BgSetMessageSub(u8 palette, char *message, ...);
[all …]
/TwlSDK-5.1.0/build/demos/mb/multiboot-Model/common/include/
Ddisp.h77 void BgPutChar(s32 x, s32 y, s32 palette, s8 c);
78 void BgPutStringN(s32 x, s32 y, s32 palette, const char *text, s32 num);
79 void BgPutString(s32 x, s32 y, s32 palette, const char *text);
80 void BgPrintStr(s32 x, s32 y, s32 palette, const char *text, ...);
81 void BgSetMessage(s32 palette, const char *text, ...);
83 void BgColorString(s16 x, s16 y, s16 length, u8 palette);
/TwlSDK-5.1.0/build/demos/wvr/with_mb/common/include/
Ddisp.h74 void BgPutChar(s32 x, s32 y, s32 palette, s8 c);
75 void BgPutStringN(s32 x, s32 y, s32 palette, const char *text, s32 num);
76 void BgPutString(s32 x, s32 y, s32 palette, const char *text);
77 void BgPrintStr(s32 x, s32 y, s32 palette, const char *text, ...);
78 void BgSetMessage(s32 palette, const char *text, ...);
80 void BgColorString(s16 x, s16 y, s16 length, u8 palette);
/TwlSDK-5.1.0/build/demos/mb/fake_child/common/include/
Ddisp.h77 void BgPutChar(s32 x, s32 y, s32 palette, s8 c);
78 void BgPutStringN(s32 x, s32 y, s32 palette, const char *text, s32 num);
79 void BgPutString(s32 x, s32 y, s32 palette, const char *text);
80 void BgPrintStr(s32 x, s32 y, s32 palette, const char *text, ...);
81 void BgSetMessage(s32 palette, const char *text, ...);
83 void BgColorString(s16 x, s16 y, s16 length, u8 palette);
/TwlSDK-5.1.0/build/demos/mb/cloneboot/include/
Ddisp.h73 void BgPutChar(s32 x, s32 y, s32 palette, s8 c);
74 void BgPutStringN(s32 x, s32 y, s32 palette, const char *text, s32 num);
75 void BgPutString(s32 x, s32 y, s32 palette, const char *text);
76 void BgPrintStr(s32 x, s32 y, s32 palette, const char *text, ...);
77 void BgSetMessage(s32 palette, const char *text, ...);
79 void BgColorString(s16 x, s16 y, s16 length, u8 palette);
/TwlSDK-5.1.0/build/demos/mb/multiboot-Model/common/src/
Ddisp.c311 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()
387 void BgSetMessage(s32 palette, const char *text, ...) in BgSetMessage() argument
396 BgPutString(4, 22, palette, temp); in BgSetMessage()
[all …]
/TwlSDK-5.1.0/build/demos/wvr/with_mb/common/src/
Ddisp.c311 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()
387 void BgSetMessage(s32 palette, const char *text, ...) in BgSetMessage() argument
396 BgPutString(4, 22, palette, temp); in BgSetMessage()
[all …]
/TwlSDK-5.1.0/build/demos/mb/fake_child/common/src/
Ddisp.c314 void BgPutStringN(s32 x, s32 y, s32 palette, const char *text, s32 num) in BgPutStringN() argument
328 BgPutChar(x + i, y, palette, text[i]); in BgPutStringN()
341 void BgPutChar(s32 x, s32 y, s32 palette, s8 c) in BgPutChar() argument
343 vscr[((y * 32) + x) % (32 * 32)] = (u16)((palette << 12) | c); in BgPutChar()
355 void BgPutString(s32 x, s32 y, s32 palette, const char *text) in BgPutString() argument
357 BgPutStringN(x, y, palette, text, BGSTR_MAX_LENGTH); in BgPutString()
369 void BgPrintStr(s32 x, s32 y, s32 palette, const char *text, ...) in BgPrintStr() argument
378 BgPutString(x, y, palette, temp); in BgPrintStr()
390 void BgSetMessage(s32 palette, const char *text, ...) in BgSetMessage() argument
399 BgPutString(4, 22, palette, temp); in BgSetMessage()
[all …]
/TwlSDK-5.1.0/build/demos/mb/cloneboot/src/
Ddisp.c311 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()
387 void BgSetMessage(s32 palette, const char *text, ...) in BgSetMessage() argument
396 BgPutString(4, 22, palette, temp); in BgSetMessage()
[all …]
/TwlSDK-5.1.0/build/demos/os/reset-1/src/
Dscreen.c54 void PrintString(s16 x, s16 y, u8 palette, char *text, ...) in PrintString() argument
72 *p = (u16)((palette << 12) | *tempPtr); in PrintString()
92 void ColorString(s16 x, s16 y, s16 length, u8 palette) in ColorString() argument
107 temp |= (palette << 12); in ColorString()
/TwlSDK-5.1.0/build/demos/os/consoleType-1/src/
Dscreen.c51 void PrintString(s16 x, s16 y, u8 palette, char *text, ...) in PrintString() argument
69 *p = (u16)((palette << 12) | *tempPtr); in PrintString()
89 void ColorString(s16 x, s16 y, s16 length, u8 palette) in ColorString() argument
104 temp |= (palette << 12); in ColorString()
/TwlSDK-5.1.0/build/demos/ctrdg/pullout-1/src/
Dscreen.c51 void PrintString(s16 x, s16 y, u8 palette, char *text, ...) in PrintString() argument
69 *p = (u16)((palette << 12) | *tempPtr); in PrintString()
89 void ColorString(s16 x, s16 y, s16 length, u8 palette) in ColorString() argument
104 temp |= (palette << 12); in ColorString()
/TwlSDK-5.1.0/build/demos.TWL/spi/pm-2/src/
Dscreen.c50 void PrintString(s16 x, s16 y, u8 palette, char *text, ...) in PrintString() argument
68 *p = (u16)((palette << 12) | *tempPtr); in PrintString()
88 void ColorString(s16 x, s16 y, s16 length, u8 palette) in ColorString() argument
103 temp |= (palette << 12); in ColorString()
/TwlSDK-5.1.0/build/demos/os/exceptionDisplay-4/src/
Dscreen.c51 void PrintString(s16 x, s16 y, u8 palette, char *text, ...) in PrintString() argument
69 *p = (u16)((palette << 12) | *tempPtr); in PrintString()
89 void ColorString(s16 x, s16 y, s16 length, u8 palette) in ColorString() argument
104 temp |= (palette << 12); in ColorString()
/TwlSDK-5.1.0/build/demos/spi/pm-1/src/
Dscreen.c52 void PrintString(s16 x, s16 y, u8 palette, char *text, ...) in PrintString() argument
70 *p = (u16)((palette << 12) | *tempPtr); in PrintString()
90 void ColorString(s16 x, s16 y, s16 length, u8 palette) in ColorString() argument
105 temp |= (palette << 12); in ColorString()
/TwlSDK-5.1.0/build/demos/os/reset-1/include/
Dscreen.h31 void PrintString(s16 x, s16 y, u8 palette, char *text, ...);
32 void ColorString(s16 x, s16 y, s16 length, u8 palette);
/TwlSDK-5.1.0/build/demos/os/exceptionDisplay-4/include/
Dscreen.h32 void PrintString(s16 x, s16 y, u8 palette, char *text, ...);
33 void ColorString(s16 x, s16 y, s16 length, u8 palette);
/TwlSDK-5.1.0/build/demos/ctrdg/pullout-1/include/
Dscreen.h31 void PrintString(s16 x, s16 y, u8 palette, char *text, ...);
32 void ColorString(s16 x, s16 y, s16 length, u8 palette);
/TwlSDK-5.1.0/build/demos/os/consoleType-1/include/
Dscreen.h32 void PrintString(s16 x, s16 y, u8 palette, char *text, ...);
33 void ColorString(s16 x, s16 y, s16 length, u8 palette);
/TwlSDK-5.1.0/build/demos.TWL/spi/pm-2/include/
Dscreen.h33 void PrintString(s16 x, s16 y, u8 palette, char *text, ...);
34 void ColorString(s16 x, s16 y, s16 length, u8 palette);
/TwlSDK-5.1.0/build/demos/spi/pm-1/include/
Dscreen.h39 void PrintString(s16 x, s16 y, u8 palette, char *text, ...);
40 void ColorString(s16 x, s16 y, s16 length, u8 palette);
/TwlSDK-5.1.0/build/demos.TWL/os/os_jump/include/
Dscreen.h35 void PutMainScreen(s32 x, s32 y, u8 palette, char* text, ...);
36 void PutSubScreen(s32 x, s32 y, u8 palette, char* text, ...);
/TwlSDK-5.1.0/build/demos/wm/wireless-all/src/
Dcommon.c313 void LoadLinkIcon(int id, int palette, int level) in LoadLinkIcon() argument
318 GXRgb palette[16]; in LoadLinkIcon() member
330 GX_LoadOBJPltt(table[level]->palette, sizeof(GXRgb) * 16 * palette, in LoadLinkIcon()
331 sizeof(table[level]->palette)); in LoadLinkIcon()
346 void PrintString(int x, int y, int palette, const char *format, ...) in PrintString() argument
357 vscr[(y + i) & ((32 * 32) - 1)] = (u16)((palette << 12) | tmp[i]); in PrintString()
/TwlSDK-5.1.0/build/demos/rtc/swclock-1/src/
Dmain.c72 static void PrintString(s16 x, s16 y, u8 palette, char *text, ...);
73 static void ColorString(s16 x, s16 y, s16 length, u8 palette);
323 static void PrintString(s16 x, s16 y, u8 palette, char *text, ...) in PrintString() argument
340 gScreen[((y * 32) + x + i) % (32 * 32)] = (u16)((palette << 12) | temp[i]); in PrintString()
356 static void ColorString(s16 x, s16 y, s16 length, u8 palette) in ColorString() argument
370 temp |= (palette << 12); in ColorString()

12