Searched defs:table (Results 51 - 52 of 52) sorted by relevance

123

/arch/ia64/kernel/
H A Dunwind.c91 /* table of registers that prologues can save (and order in which they're saved): */
105 /* unwind table for the kernel: */
108 /* unwind table describing the gate page (kernel code that is mapped into user space): */
112 /* hash table that maps instruction pointer to script index: */
1298 /* remove the old script from the hash table (if it's there): */
1313 /* old script wasn't in the hash-table */
1319 /* enter new script in the hash table */
1503 lookup (struct unw_table *table, unsigned long rel_ip)
1509 for (lo = 0, hi = table->length; lo < hi; ) {
1511 e = &table
1500 lookup(struct unw_table *table, unsigned long rel_ip) argument
1533 struct unw_table *table, *prev; local
2081 init_unwind_table(struct unw_table *table, const char *name, unsigned long segment_base, unsigned long gp, const void *table_start, const void *table_end) argument
2100 struct unw_table *table; local
2129 struct unw_table *table, *prev; local
[all...]
/arch/sparc/kernel/
H A Dldc.c1009 struct ldc_mtable_entry *table; local
1030 table = (struct ldc_mtable_entry *)
1033 if (!table) {
1034 printk(KERN_ERR PFX "Alloc of MTE table failed, "
1039 memset(table, 0, PAGE_SIZE << order);
1041 iommu->page_table = table;
1043 hv_err = sun4v_ldc_set_map_table(lp->id, __pa(table),
1052 free_pages((unsigned long) table, order);

Completed in 69 milliseconds

123