/linux-4.4.14/arch/sparc/include/asm/ |
H A D | trap_block.h | 145 #define TRAP_LOAD_TRAP_BLOCK(DEST, TMP) \ 146 __GET_CPUID(TMP) \ 148 sllx TMP, TRAP_BLOCK_SZ_SHIFT, TMP; \ 150 add DEST, TMP, DEST; \ 152 /* Clobbers TMP, current address space PGD phys address into DEST. */ 153 #define TRAP_LOAD_PGD_PHYS(DEST, TMP) \ 154 TRAP_LOAD_TRAP_BLOCK(DEST, TMP) \ 157 /* Clobbers TMP, loads local processor's IRQ work area into DEST. */ 158 #define TRAP_LOAD_IRQ_WORK_PA(DEST, TMP) \ 159 TRAP_LOAD_TRAP_BLOCK(DEST, TMP) \ 162 /* Clobbers TMP, loads DEST with current thread info pointer. */ 163 #define TRAP_LOAD_THREAD_REG(DEST, TMP) \ 164 TRAP_LOAD_TRAP_BLOCK(DEST, TMP) \ 186 #define TRAP_LOAD_TRAP_BLOCK(DEST, TMP) \ 191 #define TRAP_LOAD_PGD_PHYS(DEST, TMP) \ 192 TRAP_LOAD_TRAP_BLOCK(DEST, TMP) \ 195 /* Clobbers TMP, loads local processor's IRQ work area into DEST. */ 196 #define TRAP_LOAD_IRQ_WORK_PA(DEST, TMP) \ 197 TRAP_LOAD_TRAP_BLOCK(DEST, TMP) \ 200 #define TRAP_LOAD_THREAD_REG(DEST, TMP) \ 201 TRAP_LOAD_TRAP_BLOCK(DEST, TMP) \
|
/linux-4.4.14/arch/metag/lib/ |
H A D | ashldi3.S | 22 LSR D0Ar6,D0Re0,D0Ar4 ! TMP= LO >> -(COUNT - 32) 23 OR D1Re0,D1Re0,D0Ar6 ! HI = HI | TMP
|
H A D | ashrdi3.S | 23 LSL D0Ar6,D1Re0,D1Ar3 ! TMP= HI << -(COUNT - 32) 24 OR D0Re0,D0Re0,D0Ar6 ! LO = LO | TMP
|
H A D | lshrdi3.S | 23 LSL D0Ar6,D1Re0,D1Ar3 ! TMP= HI << -(COUNT - 32) 24 OR D0Re0,D0Re0,D0Ar6 ! LO = LO | TMP
|
/linux-4.4.14/arch/sparc/lib/ |
H A D | NGmemcpy.S | 10 #define RESTORE_ASI(TMP) \ 11 ldub [%g6 + TI_CURRENT_DS], TMP; \ 12 wr TMP, 0x0, %asi; 15 #define RESTORE_ASI(TMP) \ 173 #define MIX_THREE_WORDS(WORD1, WORD2, WORD3, PRE_SHIFT, POST_SHIFT, TMP) \ 175 srlx WORD2, PRE_SHIFT, TMP; \ 177 or WORD1, TMP, WORD1; \ 178 srlx WORD3, PRE_SHIFT, TMP; \ 179 or WORD2, TMP, WORD2;
|
/linux-4.4.14/tools/perf/config/ |
H A D | utilities.mak | 182 # Usage: option = $(call try-run, $(CC)...-o "$$TMP",option-ok,otherwise) 183 # Exit code chooses option. "$$TMP" is can be used as temporary file and 186 TMP="$(TMPOUT).$$$$.tmp"; \ 192 rm -f "$$TMP" "$$TMPO") 198 $(CC) $(KBUILD_CPPFLAGS) $(KBUILD_CFLAGS) $(1) -c -x c /dev/null -o "$$TMP",$(1),$(2))
|
/linux-4.4.14/arch/x86/crypto/sha-mb/ |
H A D | sha1_x8_avx2.S | 235 # ymm10 T4 TMP 265 TMP = %ymm10 define 373 SHA1_STEP_00_15 A,B,C,D,E, TMP,FUN, I, K, MAGIC_F0 382 SHA1_STEP_16_79 A,B,C,D,E, TMP,FUN, I, K, MAGIC_F0 390 SHA1_STEP_16_79 A,B,C,D,E, TMP,FUN, I, K, MAGIC_F1 398 SHA1_STEP_16_79 A,B,C,D,E, TMP,FUN, I, K, MAGIC_F2 406 SHA1_STEP_16_79 A,B,C,D,E, TMP,FUN, I, K, MAGIC_F3
|
/linux-4.4.14/arch/x86/ |
H A D | Makefile | 140 $(CC) $(KBUILD_AFLAGS) -c -x assembler -o "$$TMP" - && \ 141 $(OBJCOPY) -O elf32-x86-64 "$$TMP" "$$TMPO" && \ 142 $(LD) -m elf32_x86_64 "$$TMPO" -o "$$TMP",y,n)
|
/linux-4.4.14/arch/um/os-Linux/ |
H A D | mem.c | 51 "TMP", choose_tempdir()
|
/linux-4.4.14/arch/x86/crypto/ |
H A D | sha512-avx-asm.S | 110 TMP = h_64 define 118 a_64 = TMP
|
H A D | sha512-ssse3-asm.S | 107 TMP = h_64 define 115 a_64 = TMP
|
/linux-4.4.14/arch/powerpc/kernel/ |
H A D | fsl_booke_entry_mapping.S | 105 xori r6,r4,1 /* Setup TMP mapping in the other Address space */
|
H A D | exceptions-64e.S | 1276 xori r6,r7,MAS1_TS /* Setup TMP mapping in the other Address space */
|
/linux-4.4.14/arch/mips/mm/ |
H A D | tlbex.c | 776 * TMP and PTR are scratch. 777 * TMP will be clobbered, PTR will hold the pmd entry. 808 /* No uasm_i_nop needed here, since the next insn doesn't touch TMP. */ build_get_pmde64() 926 * TMP and PTR are scratch. 927 * TMP will be clobbered, PTR will hold the pgd entry.
|
/linux-4.4.14/net/ipv6/ |
H A D | ipv6_sockglue.c | 801 /* check PUBLIC/TMP/PUBTMP_DEFAULT conflicts */ do_ipv6_setsockopt()
|
/linux-4.4.14/tools/perf/ |
H A D | builtin-kmem.c | 614 { "GFP_TEMPORARY", "TMP" },
|
/linux-4.4.14/drivers/platform/x86/ |
H A D | thinkpad_acpi.c | 5767 TP_EC_THERMAL_TMP0 = 0x78, /* ACPI EC regs TMP 0..7 */ 5768 TP_EC_THERMAL_TMP8 = 0xC0, /* ACPI EC regs TMP 8..15 */ 5811 snprintf(tmpi, sizeof(tmpi), "TMP%c", '0' + idx); thermal_get_sensor() 5823 snprintf(tmpi, sizeof(tmpi), "TMP%c", '0' + idx); thermal_get_sensor()
|