Home
last modified time | relevance | path

Searched refs:TMP (Results 1 – 4 of 4) sorted by relevance

/linux-2.6.39/arch/sparc/include/asm/
Dtrap_block.h143 #define TRAP_LOAD_TRAP_BLOCK(DEST, TMP) \ argument
144 __GET_CPUID(TMP) \
146 sllx TMP, TRAP_BLOCK_SZ_SHIFT, TMP; \
148 add DEST, TMP, DEST; \
151 #define TRAP_LOAD_PGD_PHYS(DEST, TMP) \ argument
152 TRAP_LOAD_TRAP_BLOCK(DEST, TMP) \
156 #define TRAP_LOAD_IRQ_WORK_PA(DEST, TMP) \ argument
157 TRAP_LOAD_TRAP_BLOCK(DEST, TMP) \
161 #define TRAP_LOAD_THREAD_REG(DEST, TMP) \ argument
162 TRAP_LOAD_TRAP_BLOCK(DEST, TMP) \
[all …]
/linux-2.6.39/scripts/
DKbuild.include81 # Usage: option = $(call try-run, $(CC)...-o "$$TMP",option-ok,otherwise)
82 # Exit code chooses option. "$$TMP" is can be used as temporary file and
85 TMP="$(TMPOUT).$$$$.tmp"; \
91 rm -f "$$TMP" "$$TMPO")
97 $(CC) $(KBUILD_CFLAGS) $(1) -c -xassembler /dev/null -o "$$TMP",$(1),$(2))
103 /bin/echo -e "$(1)" | $(CC) $(KBUILD_AFLAGS) -c -xassembler -o "$$TMP" -,$(2),$(3))
109 $(CC) $(KBUILD_CPPFLAGS) $(KBUILD_CFLAGS) $(1) -c -xc /dev/null -o "$$TMP",$(1),$(2))
114 $(CC) $(KBUILD_CPPFLAGS) $(KBUILD_CFLAGS) $(1) -c -xc /dev/null -o "$$TMP",y,n)
137 $(CC) $(1) -nostdlib -xc /dev/null -o "$$TMP",$(1),$(2))
142 $(CC) /dev/null -c -o "$$TMPO" ; $(LD) $(1) "$$TMPO" -o "$$TMP",$(1),$(2))
/linux-2.6.39/tools/perf/
Dfeature-tests.mak127 'TMP="$(OUTPUT)$(TMPOUT).$$$$"; \
129 $(CC) -x c - $(2) -o "$$TMP" > /dev/null 2>&1 && echo y; \
130 rm -f "$$TMP"')
/linux-2.6.39/arch/sparc/lib/
DNGmemcpy.S10 #define RESTORE_ASI(TMP) \ argument
11 ldub [%g6 + TI_CURRENT_DS], TMP; \
12 wr TMP, 0x0, %asi;
15 #define RESTORE_ASI(TMP) \ argument
173 #define MIX_THREE_WORDS(WORD1, WORD2, WORD3, PRE_SHIFT, POST_SHIFT, TMP) \ argument
175 srlx WORD2, PRE_SHIFT, TMP; \
177 or WORD1, TMP, WORD1; \
178 srlx WORD3, PRE_SHIFT, TMP; \
179 or WORD2, TMP, WORD2;