Home
last modified time | relevance | path

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

12

/openbmc/linux/arch/sparc/include/asm/
H A Dtrap_block.h154 __GET_CPUID(TMP) \
156 sllx TMP, TRAP_BLOCK_SZ_SHIFT, TMP; \
158 add DEST, TMP, DEST; \
161 #define TRAP_LOAD_PGD_PHYS(DEST, TMP) \ argument
162 TRAP_LOAD_TRAP_BLOCK(DEST, TMP) \
167 TRAP_LOAD_TRAP_BLOCK(DEST, TMP) \
172 TRAP_LOAD_TRAP_BLOCK(DEST, TMP) \
199 #define TRAP_LOAD_PGD_PHYS(DEST, TMP) \ argument
200 TRAP_LOAD_TRAP_BLOCK(DEST, TMP) \
205 TRAP_LOAD_TRAP_BLOCK(DEST, TMP) \
[all …]
/openbmc/openbmc/meta-security/recipes-mac/smack/smack-test/
H A Dsmack_test_file_access.sh5 TMP="/tmp"
6 test_file=$TMP/smack_test_access_file
11 python3 $TMP/notroot.py $uid "TheOther" $ECHO 'TEST' > $test_file
20 python3 $TMP/notroot.py $uid "TheOne" $CAT $test_file 2>&1 1>/dev/null | grep -q "Permission denied…
28 python3 $TMP/notroot.py $uid "TheOne" $CAT $test_file | grep -q "TEST" || RC=$?
39 python3 $TMP/notroot.py $uid "TheOne" $CAT $test_file | grep -q "TEST" || RC=$?
48 python3 $TMP/notroot.py $uid '*' $TOUCH $TMP/test_file_2
49 ls -la $TMP/test_file_2 2>&1 | grep -q 'No such file or directory' || RC=$?
/openbmc/linux/scripts/
H A Dtest_fortify.sh20 TMP="${OUT}.tmp"
30 rm -f "$TMP"
40 if "$@" -Werror -c "$IN" -o "$OUT".o 2> "$TMP" ; then
45 if ! $NM -A "$OUT".o | grep -m1 "\bU ${WANT}$" >>"$TMP" ; then
54 if ! grep -Eq -m1 "error: call to .?\b${WANT}\b.?" "$TMP" ; then
66 cat "$TMP" >>"$OUT"
H A DMakefile.compiler23 TMP=$(TMPOUT)/tmp; \
35 …r $(KBUILD_CPPFLAGS) $(KBUILD_AFLAGS) $(1) -c -x assembler-with-cpp /dev/null -o "$$TMP",$(1),$(2))
41 …LAGS) $(KBUILD_AFLAGS) -Wa$(comma)--fatal-warnings -c -x assembler-with-cpp -o "$$TMP" -,$(2),$(3))
46 $(1) -Werror $(2) $(3) -c -x c /dev/null -o "$$TMP",$(3),$(4))
57 $(CC) -Werror $(KBUILD_CPPFLAGS) $(KBUILD_CFLAGS) $(1) -c -x c /dev/null -o "$$TMP",y,n)
62 …$(CC) -Werror $(KBUILD_CPPFLAGS) $(KBUILD_CFLAGS) -W$(strip $(1)) -c -x c /dev/null -o "$$TMP",-Wn…
/openbmc/u-boot/scripts/
H A Dgcc-stack-usage.sh7 TMP="$$"
9 cat <<END | $@ -Werror -fstack-usage -x c - -c -o $TMP >/dev/null 2>&1 \
17 rm -f $TMP $TMP.su
H A DKbuild.include87 # Usage: option = $(call try-run, $(CC)...-o "$$TMP",option-ok,otherwise)
88 # Exit code chooses option. "$$TMP" is can be used as temporary file and
92 TMP="$(TMPOUT).$$$$.tmp"; \
99 rm -f "$$TMP" "$$TMPO" "$$TMPSU")
105 $(CC) $(KBUILD_CFLAGS) $(1) -c -x assembler /dev/null -o "$$TMP",$(1),$(2))
111 printf "%b\n" "$(1)" | $(CC) $(KBUILD_AFLAGS) -c -x assembler -o "$$TMP" -,$(2),$(3))
117 $(CC) -Werror $(KBUILD_CPPFLAGS) $(KBUILD_CFLAGS) $(1) -c -x c /dev/null -o "$$TMP",$(1),$(2))
122 $(CC) -Werror $(KBUILD_CPPFLAGS) $(KBUILD_CFLAGS) $(1) -c -x c /dev/null -o "$$TMP",y,n)
156 $(CC) $(1) -nostdlib -x c /dev/null -o "$$TMP",$(1),$(2))
161 $(CC) -x c /dev/null -c -o "$$TMPO" ; $(LD) $(1) "$$TMPO" -o "$$TMP",$(1),$(2))
[all …]
/openbmc/qemu/scripts/
H A Dgensyscalls.sh12 TMP=$(mktemp -d)
51 -I${TMP} \
93 mkdir "$TMP/asm"
94 > "$TMP/asm/bitsperlong.h"
103 rm -fr "$TMP"
H A Dupdate-mips-syscall-args.sh15 TMP=$(mktemp -d)
16 cd $TMP
19 curl --create-dirs $URL/$file -o $TMP/$file
58 rm -fr "$TMP"
/openbmc/u-boot/arch/arm/lib/
H A Duldivmod.S32 TMP .req r8 label
38 stmfd sp!, {r4, r5, r6, r7, THUMB(TMP,) lr}
75 THUMB( lsrmi TMP, B_0, ip )
76 THUMB( orrmi B_1, B_1, TMP )
82 THUMB( lsrmi TMP, C_0, ip )
83 THUMB( orrmi C_1, C_1, TMP )
156 ldmfd sp!, {r4, r5, r6, r7, THUMB(TMP,) pc}
166 ldmfd sp!, {r4, r5, r6, r7, THUMB(TMP,) pc}
187 THUMB( lslpl TMP, A_1, D_1 )
188 THUMB( orrpl A_0, A_0, TMP )
[all …]
/openbmc/linux/tools/testing/selftests/mount/
H A Dnosymfollow-test.c28 #define TMP "/tmp" macro
181 ret = statfs(TMP, &buf); in test_statfs()
187 die("ST_NOSYMFOLLOW not set on %s\n", TMP); in test_statfs()
190 die("ST_NOSYMFOLLOW set on %s\n", TMP); in test_statfs()
206 if (mount("testing", TMP, "ramfs", 0, NULL) != 0) in main()
212 if (mount("testing", TMP, "ramfs", MS_REMOUNT|MS_NOSYMFOLLOW, NULL) != 0) in main()
/openbmc/linux/arch/x86/crypto/
H A Dpolyval-clmulni_asm.S43 #define TMP %rax macro
230 mov BLOCKS_LEFT, TMP
231 shlq $4, TMP
233 subq TMP, KEY_POWERS
/openbmc/openbmc/poky/meta/recipes-core/dbus/dbus/
H A Dtmpdir.patch33 -elif ! test -z "$TMP" ; then
34 - DEFAULT_SOCKET_DIR=$TMP
/openbmc/linux/arch/arm64/crypto/
H A Dpolyval-ce-core.S36 TMP .req x13 label
312 adr TMP, .Lgstar
313 ld1 {GSTAR.2d}, [TMP]
337 adr TMP, .Lgstar
339 ld1 {GSTAR.2d}, [TMP]
/openbmc/linux/tools/build/
H A DBuild.include108 # Usage: option = $(call try-run, $(CC)...-o "$$TMP",option-ok,otherwise)
109 # Exit code chooses option. "$$TMP" serves as a temporary file and is
112 TMP=$(TMPOUT)/tmp; \
123 $(CC) -Werror $(1) -c -x c /dev/null -o "$$TMP",$(1),$(2))
H A DMakefile.feature282 $(eval TMP := $(filter-out $(FEATURE_DISPLAY),$(FEATURE_TESTS)))
283 $(foreach feat,$(TMP),$(call feature_print_status,$(feat),) $$(info $(MSG)))
/openbmc/linux/arch/sparc/lib/
H A DNGmemcpy.S12 #define RESTORE_ASI(TMP) \ argument
16 #define RESTORE_ASI(TMP) \ argument
256 #define MIX_THREE_WORDS(WORD1, WORD2, WORD3, PRE_SHIFT, POST_SHIFT, TMP) \ argument
258 srlx WORD2, PRE_SHIFT, TMP; \
260 or WORD1, TMP, WORD1; \
261 srlx WORD3, PRE_SHIFT, TMP; \
262 or WORD2, TMP, WORD2;
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/pimd/pimd/
H A D0001-configure-Dont-use-uname-to-determine-target-OS.patch26 TMP=`mktemp /tmp/XXXXXX`
/openbmc/linux/tools/testing/selftests/powerpc/pmu/ebb/
H A DMakefile13 $(CC) -Werror $(KBUILD_CPPFLAGS) $(CC_OPTION_CFLAGS) -no-pie -x c - -o "$$TMP", -no-pie)
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-benchmark/lmbench/lmbench/
H A Dfix-lmbench-memory-check-failure.patch52 read TMP
53 if [ X$TMP != X ]
68 then EDITOR=$TMP
H A Dupdate-results-script.patch123 then EDITOR=$TMP
/openbmc/linux/arch/arm64/kernel/vdso32/
H A DMakefile23 $(CC_COMPAT) $(1) -c -x c /dev/null -o "$$TMP",$(1),$(2))
25 $(CC_COMPAT) -W$(strip $(1)) -c -x c /dev/null -o "$$TMP",-Wno-$(strip $(1)))
/openbmc/linux/tools/testing/selftests/
H A DMakefile114 TMP := $(filter-out $(SKIP_TARGETS), $(TARGETS)) macro
115 override TARGETS := $(TMP)
/openbmc/linux/drivers/platform/surface/
H A Dsurface_platform_profile.c171 { SSAM_SDEV(TMP, SAM, 0x00, 0x01) },
/openbmc/linux/tools/testing/selftests/kvm/
H A DMakefile226 $(CC) -Werror $(CFLAGS) -no-pie -x c - -o "$$TMP", -no-pie)
230 $(CC) -Werror -Wl$(comma)--s390-pgste -x c - -o "$$TMP",-Wl$(comma)--s390-pgste)
/openbmc/linux/arch/arm64/
H A DMakefile33 }' | $(CC) -S -x c -o "$$TMP" -,,-DCONFIG_CC_HAS_K_CONSTRAINT=1)

12