/arch/x86/lib/ |
D | inat.c | 43 const insn_attr_t *table; in inat_get_escape_attribute() local 48 table = inat_escape_tables[n][0]; in inat_get_escape_attribute() 49 if (!table) in inat_get_escape_attribute() 51 if (inat_has_variant(table[opcode]) && lpfx_id) { in inat_get_escape_attribute() 52 table = inat_escape_tables[n][lpfx_id]; in inat_get_escape_attribute() 53 if (!table) in inat_get_escape_attribute() 56 return table[opcode]; in inat_get_escape_attribute() 62 const insn_attr_t *table; in inat_get_group_attribute() local 67 table = inat_group_tables[n][0]; in inat_get_group_attribute() 68 if (!table) in inat_get_group_attribute() [all …]
|
/arch/powerpc/boot/ |
D | planetcore.c | 29 void planetcore_prepare_table(char *table) in planetcore_prepare_table() argument 32 if (*table == '\n') in planetcore_prepare_table() 33 *table = 0; in planetcore_prepare_table() 35 table++; in planetcore_prepare_table() 36 } while (*(table - 1) || *table != '\n'); in planetcore_prepare_table() 38 *table = 0; in planetcore_prepare_table() 41 const char *planetcore_get_key(const char *table, const char *key) in planetcore_get_key() argument 46 if (!strncmp(table, key, keylen) && table[keylen] == '=') in planetcore_get_key() 47 return table + keylen + 1; in planetcore_get_key() 49 table += strlen(table) + 1; in planetcore_get_key() [all …]
|
D | planetcore.h | 25 void planetcore_prepare_table(char *table); 32 const char *planetcore_get_key(const char *table, const char *key); 33 int planetcore_get_decimal(const char *table, const char *key, u64 *val); 34 int planetcore_get_hex(const char *table, const char *key, u64 *val); 39 void planetcore_set_mac_addrs(const char *table); 44 void planetcore_set_stdout_path(const char *table); 47 void planetcore_set_serial_speed(const char *table);
|
D | ep8248e.c | 18 static char *table; variable 28 planetcore_set_mac_addrs(table); in platform_fixups() 30 if (!planetcore_get_decimal(table, PLANETCORE_KEY_CRYSTAL_HZ, &val)) { in platform_fixups() 41 table = (char *)r3; in platform_init() 42 planetcore_prepare_table(table); in platform_init() 44 if (!planetcore_get_decimal(table, PLANETCORE_KEY_MB_RAM, &mem_size)) in platform_init() 52 planetcore_set_stdout_path(table); in platform_init()
|
D | ep88xc.c | 18 static char *table; variable 26 planetcore_set_mac_addrs(table); in platform_fixups() 28 if (!planetcore_get_decimal(table, PLANETCORE_KEY_CRYSTAL_HZ, &val)) { in platform_fixups() 39 table = (char *)r3; in platform_init() 40 planetcore_prepare_table(table); in platform_init() 42 if (!planetcore_get_decimal(table, PLANETCORE_KEY_MB_RAM, &mem_size)) in platform_init() 50 planetcore_set_stdout_path(table); in platform_init()
|
D | ep405.c | 24 static char *table; variable 33 planetcore_set_mac_addrs(table); in platform_fixups() 35 if (!planetcore_get_decimal(table, PLANETCORE_KEY_CRYSTAL_HZ, &val)) { in platform_fixups() 43 if (!planetcore_get_decimal(table, PLANETCORE_KEY_KB_NVRAM, &val)) { in platform_fixups() 59 table = (char *)r3; in platform_init() 60 planetcore_prepare_table(table); in platform_init() 62 if (!planetcore_get_decimal(table, PLANETCORE_KEY_MB_RAM, &mem_size)) in platform_init() 70 planetcore_set_stdout_path(table); in platform_init()
|
/arch/s390/mm/ |
D | fault.c | 139 unsigned long *table = __va(asce & PAGE_MASK); in dump_pagetable() local 144 table = table + ((address >> 53) & 0x7ff); in dump_pagetable() 145 if (bad_address(table)) in dump_pagetable() 147 pr_cont("R1:%016lx ", *table); in dump_pagetable() 148 if (*table & _REGION_ENTRY_INVALID) in dump_pagetable() 150 table = (unsigned long *)(*table & _REGION_ENTRY_ORIGIN); in dump_pagetable() 153 table = table + ((address >> 42) & 0x7ff); in dump_pagetable() 154 if (bad_address(table)) in dump_pagetable() 156 pr_cont("R2:%016lx ", *table); in dump_pagetable() 157 if (*table & _REGION_ENTRY_INVALID) in dump_pagetable() [all …]
|
D | pgtable.c | 46 void crst_table_free(struct mm_struct *mm, unsigned long *table) in crst_table_free() argument 48 free_pages((unsigned long) table, ALLOC_ORDER); in crst_table_free() 65 unsigned long *table, *pgd; in crst_table_upgrade() local 72 table = crst_table_alloc(mm); in crst_table_upgrade() 73 if (!table) in crst_table_upgrade() 91 crst_table_init(table, entry); in crst_table_upgrade() 92 pgd_populate(mm, (pgd_t *) table, (pud_t *) pgd); in crst_table_upgrade() 93 mm->pgd = (pgd_t *) table; in crst_table_upgrade() 95 table = NULL; in crst_table_upgrade() 99 if (table) in crst_table_upgrade() [all …]
|
/arch/x86/crypto/ |
D | aes-i586-asm_32.S | 93 #define do_col(table, a1,a2,a3,a4, idx, tmp) \ argument 95 xor table(,%tmp,4),%a1; \ 98 xor table+tlen(,%tmp,4),%a2; \ 101 xor table+2*tlen(,%tmp,4),%a3; \ 102 xor table+3*tlen(,%idx,4),%a4; 107 #define do_fcol(table, a1,a2,a3,a4, idx, tmp, sched) \ argument 111 xor table(,%tmp,4),%a1; \ 115 xor table+tlen(,%tmp,4),%a2; \ 118 xor table+3*tlen(,%idx,4),%a4; \ 121 xor table+2*tlen(,%tmp,4),%a3; [all …]
|
/arch/powerpc/include/asm/ |
D | pgalloc-32.h | 51 static inline void pgtable_free(void *table, unsigned index_size) in pgtable_free() argument 54 free_page((unsigned long)table); in pgtable_free() 61 void *table, int shift) in pgtable_free_tlb() argument 63 unsigned long pgf = (unsigned long)table; in pgtable_free_tlb() 71 void *table = (void *)((unsigned long)_table & ~MAX_PGTABLE_INDEX_SIZE); in __tlb_remove_table() local 74 pgtable_free(table, shift); in __tlb_remove_table() 78 void *table, int shift) in pgtable_free_tlb() argument 80 pgtable_free(table, shift); in pgtable_free_tlb() 84 static inline void __pte_free_tlb(struct mmu_gather *tlb, pgtable_t table, in __pte_free_tlb() argument 88 pgtable_page_dtor(table); in __pte_free_tlb() [all …]
|
D | pgalloc-64.h | 113 static inline void pgtable_free(void *table, unsigned index_size) in pgtable_free() argument 116 free_page((unsigned long)table); in pgtable_free() 119 kmem_cache_free(PGT_CACHE(index_size), table); in pgtable_free() 125 void *table, int shift) in pgtable_free_tlb() argument 127 unsigned long pgf = (unsigned long)table; in pgtable_free_tlb() 135 void *table = (void *)((unsigned long)_table & ~MAX_PGTABLE_INDEX_SIZE); in __tlb_remove_table() local 138 pgtable_free(table, shift); in __tlb_remove_table() 142 void *table, int shift) in pgtable_free_tlb() argument 144 pgtable_free(table, shift); in pgtable_free_tlb() 148 static inline void __pte_free_tlb(struct mmu_gather *tlb, pgtable_t table, in __pte_free_tlb() argument [all …]
|
/arch/parisc/kernel/ |
D | unwind.c | 47 find_unwind_entry_in_table(const struct unwind_table *table, unsigned long addr) in find_unwind_entry_in_table() argument 53 hi = table->length - 1; in find_unwind_entry_in_table() 57 e = &table->table[mid]; in find_unwind_entry_in_table() 72 struct unwind_table *table; in find_unwind_entry() local 79 list_for_each_entry(table, &unwind_tables, list) { in find_unwind_entry() 80 if (addr >= table->start && in find_unwind_entry() 81 addr <= table->end) in find_unwind_entry() 82 e = find_unwind_entry_in_table(table, addr); in find_unwind_entry() 85 list_move(&table->list, &unwind_tables); in find_unwind_entry() 94 unwind_table_init(struct unwind_table *table, const char *name, in unwind_table_init() argument [all …]
|
/arch/arc/kernel/ |
D | unwind.c | 159 struct unwind_table *table; in find_table() local 161 for (table = &root_table; table; table = table->link) in find_table() 162 if ((pc >= table->core.pc in find_table() 163 && pc < table->core.pc + table->core.range) in find_table() 164 || (pc >= table->init.pc in find_table() 165 && pc < table->init.pc + table->init.range)) in find_table() 168 return table; in find_table() 174 static void init_unwind_table(struct unwind_table *table, const char *name, in init_unwind_table() argument 183 table->core.pc = (unsigned long)core_start; in init_unwind_table() 184 table->core.range = core_size; in init_unwind_table() [all …]
|
/arch/mips/lasat/ |
D | sysctl.c | 42 int proc_dolasatstring(struct ctl_table *table, int write, in proc_dolasatstring() argument 47 r = proc_dostring(table, write, buffer, lenp, ppos); in proc_dolasatstring() 57 int proc_dolasatint(struct ctl_table *table, int write, in proc_dolasatint() argument 62 r = proc_dointvec(table, write, buffer, lenp, ppos); in proc_dolasatint() 75 int proc_dolasatrtc(struct ctl_table *table, int write, in proc_dolasatrtc() argument 88 r = proc_dointvec(table, write, buffer, lenp, ppos); in proc_dolasatrtc() 100 int proc_lasat_ip(struct ctl_table *table, int write, in proc_lasat_ip() argument 108 if (!table->data || !table->maxlen || !*lenp || in proc_lasat_ip() 132 *(unsigned int *)(table->data) = ip; in proc_lasat_ip() 135 ip = *(unsigned int *)(table->data); in proc_lasat_ip() [all …]
|
/arch/unicore32/mm/ |
D | proc-macros.S | 99 mov \off, \va >> #22 @ off <- index of 1st page table 100 adr \tbl, 910f @ tbl <- table of 1st page table 101 900: @ ---- handle 1, 2 page table 102 add \pa, \pa, #PAGE_OFFSET @ pa <- virt addr of page table 107 add \tbl, \tbl, \off << #3 @ cmove table pointer 110 930: @ ---- handle 2nd page table 116 adr \tbl, 920f @ tbl <- table of 2nd pt 118 910: @ 1st level page table 119 .word 0xfffff000, 930b @ second level page table 120 .word 0xfffffc00, 930b @ second level large page table [all …]
|
/arch/s390/include/asm/ |
D | pgalloc.h | 86 unsigned long *table = crst_table_alloc(mm); in pud_alloc_one() local 87 if (table) in pud_alloc_one() 88 crst_table_init(table, _REGION3_ENTRY_EMPTY); in pud_alloc_one() 89 return (pud_t *) table; in pud_alloc_one() 95 unsigned long *table = crst_table_alloc(mm); in pmd_alloc_one() local 97 if (!table) in pmd_alloc_one() 99 crst_table_init(table, _SEGMENT_ENTRY_EMPTY); in pmd_alloc_one() 100 if (!pgtable_pmd_page_ctor(virt_to_page(table))) { in pmd_alloc_one() 101 crst_table_free(mm, table); in pmd_alloc_one() 104 return (pmd_t *) table; in pmd_alloc_one()
|
/arch/sparc/include/asm/ |
D | pgalloc_64.h | 77 void pgtable_free(void *table, bool is_page); 84 static inline void pgtable_free_tlb(struct mmu_gather *tlb, void *table, bool is_page) in pgtable_free_tlb() argument 86 unsigned long pgf = (unsigned long)table; in pgtable_free_tlb() 94 void *table = (void *)((unsigned long)_table & ~0x1UL); in __tlb_remove_table() local 99 pgtable_free(table, is_page); in __tlb_remove_table() 102 static inline void pgtable_free_tlb(struct mmu_gather *tlb, void *table, bool is_page) in pgtable_free_tlb() argument 104 pgtable_free(table, is_page); in pgtable_free_tlb()
|
D | agp.h | 13 #define free_gatt_pages(table, order) \ argument 14 free_pages((unsigned long)(table), (order))
|
/arch/s390/pci/ |
D | pci_dma.c | 29 unsigned long *table, *entry; in dma_alloc_cpu_table() local 31 table = kmem_cache_alloc(dma_region_table_cache, GFP_ATOMIC); in dma_alloc_cpu_table() 32 if (!table) in dma_alloc_cpu_table() 35 for (entry = table; entry < table + ZPCI_TABLE_ENTRIES; entry++) in dma_alloc_cpu_table() 37 return table; in dma_alloc_cpu_table() 40 static void dma_free_cpu_table(void *table) in dma_free_cpu_table() argument 42 kmem_cache_free(dma_region_table_cache, table); in dma_free_cpu_table() 47 unsigned long *table, *entry; in dma_alloc_page_table() local 49 table = kmem_cache_alloc(dma_page_table_cache, GFP_ATOMIC); in dma_alloc_page_table() 50 if (!table) in dma_alloc_page_table() [all …]
|
/arch/x86/platform/sfi/ |
D | sfi.c | 52 static int __init sfi_parse_cpus(struct sfi_table_header *table) in sfi_parse_cpus() argument 59 sb = (struct sfi_table_simple *)table; in sfi_parse_cpus() 78 static int __init sfi_parse_ioapic(struct sfi_table_header *table) in sfi_parse_ioapic() argument 88 sb = (struct sfi_table_simple *)table; in sfi_parse_ioapic()
|
/arch/powerpc/sysdev/ |
D | dcr-low.S | 16 #define DCR_ACCESS_PROLOG(table) \ argument 19 lis r5,table@h; \ 20 ori r5,r5,table@l; \
|
/arch/x86/tools/ |
D | gen-insn-attr-x86.awk | 16 delete table 170 if (array_size(table) != 0) { 171 print_table(table, tname "[INAT_GROUP_TABLE_SIZE]", 192 if (array_size(table) != 0) { 193 print_table(table, tname "[INAT_OPCODE_TABLE_SIZE]", 261 if (idx in table) 275 table[idx] = "INAT_MAKE_ESCAPE(" escape[ref] ")" 349 table[idx] = add_flags(table[idx],flags) 353 table[idx] = add_flags(table[idx],variant)
|
/arch/frv/kernel/ |
D | entry-table.S | 23 # (1) The trap table for debug mode 24 # (2) The trap table for kernel mode 25 # (3) The trap table for user mode 27 # The CPU jumps to an appropriate slot in the appropriate table to perform 33 # (4) The exception handler vector table 37 # table, as indexed by the exception ID from the TBR. 39 # (5) The fixup table for kernel-trap single-step 40 # (6) The fixup table for user-trap single-step 45 # routine pointed to by this table. 53 # trap table for entry from debug mode [all …]
|
/arch/alpha/include/asm/ |
D | agp.h | 15 #define free_gatt_pages(table, order) \ argument 16 free_pages((unsigned long)(table), (order))
|
/arch/ia64/include/asm/ |
D | agp.h | 23 #define free_gatt_pages(table, order) \ argument 24 free_pages((unsigned long)(table), (order))
|