Lines Matching full:base
15 #define BOOTINFO0(base, id) \ argument
17 stw_be_p(base, id); \
18 base += 2; \
19 stw_be_p(base, sizeof(struct bi_record)); \
20 base += 2; \
23 #define BOOTINFO1(base, id, value) \ argument
25 stw_be_p(base, id); \
26 base += 2; \
27 stw_be_p(base, sizeof(struct bi_record) + 4); \
28 base += 2; \
29 stl_be_p(base, value); \
30 base += 4; \
33 #define BOOTINFO2(base, id, value1, value2) \ argument
35 stw_be_p(base, id); \
36 base += 2; \
37 stw_be_p(base, sizeof(struct bi_record) + 8); \
38 base += 2; \
39 stl_be_p(base, value1); \
40 base += 4; \
41 stl_be_p(base, value2); \
42 base += 4; \
45 #define BOOTINFOSTR(base, id, string) \ argument
47 stw_be_p(base, id); \
48 base += 2; \
49 stw_be_p(base, \
52 base += 2; \
54 stb_p(base++, string[i_]); \
56 stb_p(base++, 0); \
57 base = QEMU_ALIGN_PTR_UP(base, 4); \
60 #define BOOTINFODATA(base, id, data, len) \ argument
62 stw_be_p(base, id); \
63 base += 2; \
64 stw_be_p(base, \
67 base += 2; \
68 stw_be_p(base, len); \
69 base += 2; \
71 stb_p(base++, data[i_]); \
73 base = QEMU_ALIGN_PTR_UP(base, 4); \