Lines Matching defs:table
124 unsigned long *table = __va(asce & _ASCE_ORIGIN);
129 table += (address & _REGION1_INDEX) >> _REGION1_SHIFT;
130 if (bad_address(table))
132 pr_cont("R1:%016lx ", *table);
133 if (*table & _REGION_ENTRY_INVALID)
135 table = __va(*table & _REGION_ENTRY_ORIGIN);
138 table += (address & _REGION2_INDEX) >> _REGION2_SHIFT;
139 if (bad_address(table))
141 pr_cont("R2:%016lx ", *table);
142 if (*table & _REGION_ENTRY_INVALID)
144 table = __va(*table & _REGION_ENTRY_ORIGIN);
147 table += (address & _REGION3_INDEX) >> _REGION3_SHIFT;
148 if (bad_address(table))
150 pr_cont("R3:%016lx ", *table);
151 if (*table & (_REGION_ENTRY_INVALID | _REGION3_ENTRY_LARGE))
153 table = __va(*table & _REGION_ENTRY_ORIGIN);
156 table += (address & _SEGMENT_INDEX) >> _SEGMENT_SHIFT;
157 if (bad_address(table))
159 pr_cont("S:%016lx ", *table);
160 if (*table & (_SEGMENT_ENTRY_INVALID | _SEGMENT_ENTRY_LARGE))
162 table = __va(*table & _SEGMENT_ENTRY_ORIGIN);
164 table += (address & _PAGE_INDEX) >> _PAGE_SHIFT;
165 if (bad_address(table))
167 pr_cont("P:%016lx ", *table);