/hafnium-2.8-rc0/test/inc/test/ |
A D | hftest.h | 46 #define ASSERT_EQ(x, y) HFTEST_ASSERT_OP(x, y, ==, true) argument 47 #define ASSERT_NE(x, y) HFTEST_ASSERT_OP(x, y, !=, true) argument 48 #define ASSERT_LE(x, y) HFTEST_ASSERT_OP(x, y, <=, true) argument 49 #define ASSERT_LT(x, y) HFTEST_ASSERT_OP(x, y, <, true) argument 50 #define ASSERT_GE(x, y) HFTEST_ASSERT_OP(x, y, >=, true) argument 51 #define ASSERT_GT(x, y) HFTEST_ASSERT_OP(x, y, >, true) argument 53 #define ASSERT_TRUE(x) ASSERT_EQ(x, true) argument 54 #define ASSERT_FALSE(x) ASSERT_EQ(x, false) argument 59 #define EXPECT_LT(x, y) HFTEST_ASSERT_OP(x, y, <, false) argument 63 #define EXPECT_TRUE(x) EXPECT_EQ(x, true) argument [all …]
|
A D | hftest_impl.h | 193 #define hftest_any_get(any, x) \ argument 194 _Generic((x), \ 212 #define hftest_dlog_format(x) \ argument 213 _Generic((x), \
|
/hafnium-2.8-rc0/src/arch/aarch64/ |
A D | std.c | 24 char *x = dst; in memcpy() local 28 *x = *y; in memcpy() 29 x++; in memcpy() 38 char *x; in memmove() local 58 *x = *y; in memmove() 59 x--; in memmove() 75 x++; in memcmp() 84 char x = 0; in strncmp() local 88 x = *a++; in strncmp() 90 if (x == 0 || x != y) { in strncmp() [all …]
|
A D | mm.c | 40 #define STAGE1_SH(x) ((x) << 8) argument 43 #define STAGE1_AP(x) ((x) << 6) argument 45 #define STAGE1_ATTRINDX(x) ((x) << 2) argument 55 #define STAGE2_XN(x) ((x) << 53) argument 59 #define STAGE2_SH(x) ((x) << 8) argument 60 #define STAGE2_S2AP(x) ((x) << 6) argument
|
/hafnium-2.8-rc0/test/vmapi/primary_with_secondaries/ |
A D | sysregs.h | 20 uintreg_t x; \ 21 x = read_msr(REG); \ 22 EXPECT_EQ(x, VALUE); \ 33 uintreg_t x; \ 36 x = read_msr(REG); \ 37 EXPECT_EQ(x, FROM); \ 39 x = read_msr(REG); \ 40 EXPECT_EQ(x, TO); \
|
/hafnium-2.8-rc0/inc/hf/ |
A D | check.h | 20 #define CHECK(x) \ argument 22 if (!(x)) { \ 23 panic("check failed (%s) at %s:%d", #x, __FILE__, \
|
/hafnium-2.8-rc0/build/ |
A D | parse_strace_open.py | 140 syscall_args = list(map(lambda x: x.strip(), syscall_args)) 177 files = filter(lambda x: not x[0].startswith(root_dir + "/"), files) 179 files = filter(lambda x: not x[0].startswith("/tmp/"), files) 188 stdin = map(lambda x: x.strip(), sys.stdin.readlines()) 194 print("\n".join(map(lambda x: "{} ({})".format(x[0], x[1]), files)))
|
/hafnium-2.8-rc0/test/inc/test/vmapi/ |
A D | ffa.h | 36 #define SP_ID(x) ((x) | SP_ID_MASK) argument 37 #define VM_ID(x) (x & ~SP_ID_MASK) argument 38 #define IS_SP_ID(x) ((x & SP_ID_MASK) != 0U) argument
|
/hafnium-2.8-rc0/inc/hf/arch/ |
A D | std.h | 20 #define ctz(x) __builtin_ctz(x) argument 24 #define __has_builtin(x) 0 argument
|
/hafnium-2.8-rc0/docs/ |
A D | PreparingLinux.md | 65 chmod u+x etc/init.d/rcS
|
A D | GettingStarted.md | 8 …-msg" https://review.trustedfirmware.org/tools/hooks/commit-msg && { chmod +x "$f/hooks/commit-msg…
|
/hafnium-2.8-rc0/build/bash/ |
A D | common.inc | 14 set -x
|
/hafnium-2.8-rc0/test/hftest/ |
A D | hftest.py | 67 return " ".join(filter(lambda x: x, args))
|