• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /barrelfish-2018-10-04/kernel/include/target/x86_32/

Lines Matching refs:tmp

238     union x86_32_pdir_entry tmp;
239 tmp.raw = PTABLE_CLEAR;
241 tmp.d.present = 1;
242 tmp.d.read_write = 1;
243 tmp.d.user_supervisor = 1;
244 tmp.d.base_addr = base >> 12;
246 *entry = tmp;
253 union x86_32_pdpte_entry tmp;
254 tmp.raw = X86_32_PTABLE_CLEAR;
256 tmp.d.present = 1;
257 tmp.d.base_addr = base >> 12;
259 *entry = tmp;
277 union x86_32_ptable_entry tmp;
278 tmp.raw = X86_32_PTABLE_CLEAR;
280 tmp.large.present = bitmap & X86_32_PTABLE_PRESENT ? 1 : 0;
281 tmp.large.read_write = bitmap & X86_32_PTABLE_READ_WRITE ? 1 : 0;
282 tmp.large.user_supervisor = bitmap & X86_32_PTABLE_USER_SUPERVISOR ? 1 : 0;
283 tmp.large.write_through = bitmap & X86_32_PTABLE_WRITE_THROUGH ? 1 : 0;
284 tmp.large.cache_disabled = bitmap & X86_32_PTABLE_CACHE_DISABLED ? 1 : 0;
285 tmp.large.global = bitmap & X86_32_PTABLE_GLOBAL_PAGE ? 1 : 0;
286 tmp.large.attr_index = bitmap & X86_32_PTABLE_ATTR_INDEX ? 1 : 0;
288 tmp.large.execute_disable = bitmap & X86_32_PTABLE_EXECUTE_DISABLE ? 1 : 0;
290 tmp.large.always1 = 1;
292 tmp.large.base_addr = base >> 21;
294 tmp.large.base_addr = base >> 22;
297 *entry = tmp;
314 union x86_32_ptable_entry tmp;
315 tmp.raw = X86_32_PTABLE_CLEAR;
317 tmp.base.present = bitmap & X86_32_PTABLE_PRESENT ? 1 : 0;
318 tmp.base.read_write = bitmap & X86_32_PTABLE_READ_WRITE ? 1 : 0;
319 tmp.base.user_supervisor = bitmap & X86_32_PTABLE_USER_SUPERVISOR ? 1 : 0;
320 tmp.base.write_through = bitmap & X86_32_PTABLE_WRITE_THROUGH ? 1 : 0;
321 tmp.base.cache_disabled = bitmap & X86_32_PTABLE_CACHE_DISABLED ? 1 : 0;
322 tmp.base.attr_index = bitmap & X86_32_PTABLE_ATTR_INDEX ? 1 : 0;
323 tmp.base.global = bitmap & X86_32_PTABLE_GLOBAL_PAGE ? 1 : 0;
325 tmp.base.execute_disable = bitmap & X86_32_PTABLE_EXECUTE_DISABLE ? 1 : 0;
327 tmp.base.base_addr = base >> 12;
329 *entry = tmp;
344 union x86_32_ptable_entry tmp = *entry;
346 tmp.base.present = bitmap & X86_32_PTABLE_PRESENT ? 1 : 0;
347 tmp.base.read_write = bitmap & X86_32_PTABLE_READ_WRITE ? 1 : 0;
348 tmp.base.user_supervisor = bitmap & X86_32_PTABLE_USER_SUPERVISOR ? 1 : 0;
349 tmp.base.write_through = bitmap & X86_32_PTABLE_WRITE_THROUGH ? 1 : 0;
350 tmp.base.cache_disabled = bitmap & X86_32_PTABLE_CACHE_DISABLED ? 1 : 0;
351 tmp.base.attr_index = bitmap & X86_32_PTABLE_ATTR_INDEX ? 1 : 0;
352 tmp.base.global = bitmap & X86_32_PTABLE_GLOBAL_PAGE ? 1 : 0;
354 tmp.base.execute_disable = bitmap & X86_32_PTABLE_EXECUTE_DISABLE ? 1 : 0;
357 *entry = tmp;
372 union x86_32_ptable_entry tmp = *entry;
374 tmp.base.present = bitmap & X86_32_PTABLE_PRESENT ? 1 : 0;
375 tmp.base.read_write = bitmap & X86_32_PTABLE_READ_WRITE ? 1 : 0;
376 tmp.base.user_supervisor = bitmap & X86_32_PTABLE_USER_SUPERVISOR ? 1 : 0;
377 tmp.base.write_through = bitmap & X86_32_PTABLE_WRITE_THROUGH ? 1 : 0;
378 tmp.base.cache_disabled = bitmap & X86_32_PTABLE_CACHE_DISABLED ? 1 : 0;
379 tmp.base.attr_index = bitmap & X86_32_PTABLE_ATTR_INDEX ? 1 : 0;
380 tmp.base.global = bitmap & X86_32_PTABLE_GLOBAL_PAGE ? 1 : 0;
382 tmp.base.execute_disable = bitmap & X86_32_PTABLE_EXECUTE_DISABLE ? 1 : 0;
385 *entry = tmp;