Lines Matching refs:t
115 struct tag *t = (struct tag *)params; in arch_decomp_setup() local
118 if (t->hdr.tag == ATAG_CORE) { in arch_decomp_setup()
119 for (; t->hdr.size; t = tag_next(t)) { in arch_decomp_setup()
120 if (t->hdr.tag == ATAG_VIDEOTEXT) { in arch_decomp_setup()
121 video_num_rows = t->u.videotext.video_lines; in arch_decomp_setup()
122 video_num_cols = t->u.videotext.video_cols; in arch_decomp_setup()
123 video_x = t->u.videotext.x; in arch_decomp_setup()
124 video_y = t->u.videotext.y; in arch_decomp_setup()
125 } else if (t->hdr.tag == ATAG_VIDEOLFB) { in arch_decomp_setup()
126 bytes_per_char_h = t->u.videolfb.lfb_depth; in arch_decomp_setup()
128 } else if (t->hdr.tag == ATAG_MEM) { in arch_decomp_setup()
130 nr_pages += (t->u.mem.size / PAGE_SIZE); in arch_decomp_setup()