| /arch/arc/kernel/ |
| A D | signal.c | 115 uregs.scratch.fp = regs->fp; in stash_usr_regs() 120 uregs.scratch.r9 = regs->r9; in stash_usr_regs() 121 uregs.scratch.r8 = regs->r8; in stash_usr_regs() 122 uregs.scratch.r7 = regs->r7; in stash_usr_regs() 123 uregs.scratch.r6 = regs->r6; in stash_usr_regs() 124 uregs.scratch.r5 = regs->r5; in stash_usr_regs() 125 uregs.scratch.r4 = regs->r4; in stash_usr_regs() 126 uregs.scratch.r3 = regs->r3; in stash_usr_regs() 127 uregs.scratch.r2 = regs->r2; in stash_usr_regs() 128 uregs.scratch.r1 = regs->r1; in stash_usr_regs() [all …]
|
| A D | ptrace.c | 197 REG_IGNORE_ONE(scratch.status32); in genregs_set() 201 REG_IN_ONE(scratch.fp, &ptregs->fp); in genregs_set() 206 REG_IN_ONE(scratch.r9, &ptregs->r9); in genregs_set() 207 REG_IN_ONE(scratch.r8, &ptregs->r8); in genregs_set() 208 REG_IN_ONE(scratch.r7, &ptregs->r7); in genregs_set() 209 REG_IN_ONE(scratch.r6, &ptregs->r6); in genregs_set() 210 REG_IN_ONE(scratch.r5, &ptregs->r5); in genregs_set() 211 REG_IN_ONE(scratch.r4, &ptregs->r4); in genregs_set() 212 REG_IN_ONE(scratch.r3, &ptregs->r3); in genregs_set() 213 REG_IN_ONE(scratch.r2, &ptregs->r2); in genregs_set() [all …]
|
| /arch/sparc/include/asm/ |
| A D | winmacro.h | 50 #define LOAD_PT_YREG(base_reg, scratch) \ argument 52 wr %scratch, 0x0, %y; 78 rd %y, %scratch; \ 94 sll %scratch, 2, %scratch; \ 95 add %scratch, %cur_reg, %scratch; \ 97 sub %scratch, %cur_reg, %scratch; \ 98 sll %scratch, 4, %scratch; \ 99 add %scratch, %cur_reg, %scratch; \ 101 sub %scratch, %cur_reg, %scratch; \ 102 srl %scratch, 6, %scratch; \ [all …]
|
| /arch/arc/include/asm/ |
| A D | irqflags-compact.h | 185 .macro IRQ_DISABLE scratch 186 lr \scratch, [status32] 187 bic \scratch, \scratch, (STATUS_E1_MASK | STATUS_E2_MASK) 188 flag \scratch 192 .macro IRQ_ENABLE scratch 194 lr \scratch, [status32] 195 or \scratch, \scratch, (STATUS_E1_MASK | STATUS_E2_MASK) 196 flag \scratch
|
| A D | irqflags-arcv2.h | 163 .macro IRQ_DISABLE scratch 168 .macro IRQ_ENABLE scratch
|
| /arch/x86/include/asm/ |
| A D | bootparam_utils.h | 52 static struct boot_params scratch; in sanitize_boot_params() local 54 char *save_base = (char *)&scratch; in sanitize_boot_params() 68 BOOT_PARAM_PRESERVE(scratch), in sanitize_boot_params() 80 memset(&scratch, 0, sizeof(scratch)); in sanitize_boot_params()
|
| /arch/riscv/kernel/ |
| A D | module-sections.c | 121 Elf_Rela *scratch = NULL; in module_frob_arch_sections() local 168 scratch_size_needed = (num_scratch_relas + num_relas) * sizeof(*scratch); in module_frob_arch_sections() 171 scratch = kvrealloc(scratch, scratch_size, GFP_KERNEL); in module_frob_arch_sections() 172 if (!scratch) in module_frob_arch_sections() 178 scratch[num_scratch_relas++] = relas[j]; in module_frob_arch_sections() 181 if (scratch) { in module_frob_arch_sections() 183 sort(scratch, num_scratch_relas, sizeof(*scratch), cmp_rela, NULL); in module_frob_arch_sections() 184 count_max_entries(scratch, num_scratch_relas, &num_plts, &num_gots); in module_frob_arch_sections() 185 kvfree(scratch); in module_frob_arch_sections()
|
| /arch/alpha/kernel/ |
| A D | err_marvel.c | 153 int scratch, i; in marvel_print_po7_uncrr_sym() local 199 for (i = 0; i < 4; i++, scratch >>= 2) { in marvel_print_po7_uncrr_sym() 200 if (scratch & 0x3) in marvel_print_po7_uncrr_sym() 233 int lost = scratch & (1UL << 4); in marvel_print_po7_uncrr_sym() 234 scratch &= ~lost; in marvel_print_po7_uncrr_sym() 235 for (i = 0; i < 8; i++, scratch >>= 1) { in marvel_print_po7_uncrr_sym() 236 if (!(scratch & 1)) in marvel_print_po7_uncrr_sym() 247 for (i = 0; i < 8; i++, scratch >>= 1) { in marvel_print_po7_uncrr_sym() 248 if (!(scratch & 1)) in marvel_print_po7_uncrr_sym() 259 if (scratch & IO7__STRV_VTR__IS_MSI) in marvel_print_po7_uncrr_sym() [all …]
|
| /arch/mips/mm/ |
| A D | tlbex.c | 1058 rv.huge_pte = scratch; in build_fast_tlb_refill_handler() 1113 #define LOC_PTEP scratch in build_fast_tlb_refill_handler() 1137 uasm_i_andi(p, scratch, scratch, (PTRS_PER_PGD - 1) << 3); in build_fast_tlb_refill_handler() 1149 uasm_i_andi(p, scratch, scratch, (PTRS_PER_PUD - 1) << 3); in build_fast_tlb_refill_handler() 1164 uasm_i_andi(p, scratch, scratch, (PTRS_PER_PMD - 1) << 3); in build_fast_tlb_refill_handler() 1168 UASM_i_LWX(p, scratch, scratch, ptr); in build_fast_tlb_refill_handler() 1171 UASM_i_LW(p, scratch, 0, ptr); in build_fast_tlb_refill_handler() 1643 uasm_i_or(p, pte, pte, scratch); in iPTE_SW() 1706 int t = scratch >= 0 ? scratch : pte; in build_pte_present() 1758 int t = scratch >= 0 ? scratch : pte; in build_pte_writable() [all …]
|
| /arch/sparc/lib/ |
| A D | NG4fls.S | 12 .register %g2, #scratch 13 .register %g3, #scratch
|
| A D | fls64.S | 12 .register %g2, #scratch 13 .register %g3, #scratch
|
| A D | NG4copy_page.S | 13 .register %g2, #scratch 14 .register %g3, #scratch
|
| A D | fls.S | 12 .register %g2, #scratch 13 .register %g3, #scratch
|
| A D | copy_in_user.S | 25 .register %g2,#scratch 26 .register %g3,#scratch
|
| A D | NG4clear_page.S | 12 .register %g3, #scratch
|
| A D | GENmemcpy.S | 42 .register %g2,#scratch 43 .register %g3,#scratch
|
| A D | NG4memset.S | 9 .register %g2, #scratch 10 .register %g3, #scratch
|
| A D | ffs.S | 5 .register %g2,#scratch
|
| /arch/powerpc/kvm/ |
| A D | booke_interrupts.S | 45 .macro __KVM_HANDLER ivor_nr scratch srr0 47 mtspr \scratch , r4 53 mfspr r3, \scratch 66 .macro KVM_HANDLER ivor_nr scratch srr0 68 __KVM_HANDLER \ivor_nr \scratch \srr0 71 .macro KVM_DBG_HANDLER ivor_nr scratch srr0 73 mtspr \scratch, r4 92 mfspr r4, \scratch 99 mfspr r4, \scratch 100 __KVM_HANDLER \ivor_nr \scratch \srr0
|
| /arch/mips/ath25/ |
| A D | ar5312.c | 286 u32 scratch, devid, clock_ctl1; in ar5312_cpu_frequency() local 292 scratch = ar5312_rst_reg_read(AR5312_SCRATCH); in ar5312_cpu_frequency() 293 if (scratch) in ar5312_cpu_frequency() 294 return scratch; in ar5312_cpu_frequency()
|
| /arch/m68k/fpsp040/ |
| A D | bindec.S | 112 | d0: scratch; LEN input to binstr 113 | d1: scratch 115 | d3: scratch;lower 32-bits of mantissa for binstr 121 | a1: scratch pointer 123 | fp0: scratch 124 | fp1: scratch 125 | fp2: scratch 288 | d2: x/x/scratch 359 | d0: exponent/scratch - final is 0 361 | d3: x/scratch - offset ptr into PTENRM array [all …]
|
| /arch/arc/include/uapi/asm/ |
| A D | ptrace.h | 42 } scratch; member
|
| /arch/x86/kernel/ |
| A D | vmlinux.lds.S | 416 .init.scratch : AT(ADDR(.init.scratch) - LOAD_OFFSET) { 418 *(.init.scratch) argument
|
| A D | amd_gart_64.c | 713 unsigned long scratch; in gart_iommu_init() local 801 scratch = get_zeroed_page(GFP_KERNEL); in gart_iommu_init() 802 if (!scratch) in gart_iommu_init() 804 gart_unmapped_entry = GPTE_ENCODE(__pa(scratch)); in gart_iommu_init()
|
| /arch/powerpc/include/asm/ |
| A D | ppc_asm.h | 509 #define DCBT_BOOK3S_STOP_ALL_STREAM_IDS(scratch) \ argument 510 lis scratch,0x60000000@h; \ 513 dcbt 0,scratch,0b01010; \ 516 #define DCBT_SETUP_STREAMS(from, from_parms, to, to_parms, scratch) \ argument 517 lis scratch,0x8000; /* GO=1 */ \ 518 clrldi scratch,scratch,32; \ 528 dcbt 0,scratch,0b01010; /* all streams GO */ \
|