Home
last modified time | relevance | path

Searched refs:GX_BINRES_READ_USHORT (Results 1 – 4 of 4) sorted by relevance

/GUIX-v6.2.1/common/src/
Dgx_binres_language_table_load.c75GX_BINRES_READ_USHORT(header -> gx_resource_header_magic_number, info -> gx_binres_root_address + … in _gx_binres_resource_header_load()
78GX_BINRES_READ_USHORT(header -> gx_resource_header_version, info -> gx_binres_root_address + info … in _gx_binres_resource_header_load()
81GX_BINRES_READ_USHORT(header -> gx_resource_header_theme_count, info -> gx_binres_root_address + i… in _gx_binres_resource_header_load()
84GX_BINRES_READ_USHORT(header -> gx_resource_header_language_count, info -> gx_binres_root_address … in _gx_binres_resource_header_load()
144GX_BINRES_READ_USHORT(header -> gx_string_header_magic_number, info -> gx_binres_root_address + in… in _gx_binres_string_header_load()
147GX_BINRES_READ_USHORT(header -> gx_string_header_language_count, info -> gx_binres_root_address + … in _gx_binres_string_header_load()
150GX_BINRES_READ_USHORT(header -> gx_string_header_string_count, info -> gx_binres_root_address + in… in _gx_binres_string_header_load()
204GX_BINRES_READ_USHORT(header -> gx_language_header_magic_number, info -> gx_binres_root_address + … in _gx_binres_language_header_load()
207GX_BINRES_READ_USHORT(header -> gx_language_header_index, info -> gx_binres_root_address + info ->… in _gx_binres_language_header_load()
444GX_BINRES_READ_USHORT(string_length, info.gx_binres_root_address + info.gx_binres_read_offset); in _gx_binres_language_table_load()
Dgx_binres_theme_load.c80GX_BINRES_READ_USHORT(header -> gx_theme_header_magic_number, info -> gx_binres_root_address + inf… in _gx_binres_theme_header_load()
83GX_BINRES_READ_USHORT(header -> gx_theme_header_index, info -> gx_binres_root_address + info -> gx… in _gx_binres_theme_header_load()
86GX_BINRES_READ_USHORT(header -> gx_theme_header_color_count, info -> gx_binres_root_address + info… in _gx_binres_theme_header_load()
89GX_BINRES_READ_USHORT(header -> gx_theme_header_palette_count, info -> gx_binres_root_address + in… in _gx_binres_theme_header_load()
92GX_BINRES_READ_USHORT(header -> gx_theme_header_font_count, info -> gx_binres_root_address + info … in _gx_binres_theme_header_load()
95GX_BINRES_READ_USHORT(header -> gx_theme_header_pixelmap_count, info -> gx_binres_root_address + i… in _gx_binres_theme_header_load()
239GX_BINRES_READ_USHORT(header -> gx_color_header_magic_number, info -> gx_binres_root_address + inf… in _gx_binres_color_header_load()
242GX_BINRES_READ_USHORT(header -> gx_color_header_color_count, info -> gx_binres_root_address + info… in _gx_binres_color_header_load()
296GX_BINRES_READ_USHORT(header -> gx_palette_header_magic_number, info -> gx_binres_root_address + i… in _gx_binres_palette_header_load()
299GX_BINRES_READ_USHORT(header -> gx_palette_header_color_count, info -> gx_binres_root_address + in… in _gx_binres_palette_header_load()
[all …]
Dgx_binres_pixelmap_load.c74 GX_BINRES_READ_USHORT(type, info -> gx_binres_root_address + info -> gx_binres_read_offset); in _gx_binres_standalone_resource_seek()
/GUIX-v6.2.1/common/inc/
Dgx_binres_loader.h61 #define GX_BINRES_READ_USHORT(dest, src) (dest) = (USHORT)(((src)[1] << 8) | (src)[0]) macro