Home
last modified time | relevance | path

Searched refs:x (Results 1 – 25 of 369) sorted by relevance

12345678910>>...15

/xen-4.10.0-shim-comet/tools/xentrace/
A Dformats1 …(tsc)d (+%(reltsc)8d) unknown (0x%(event)016x) [ 0x%(1)08x 0x%(2)08x 0x%(3)08x 0x%(4)08x 0x%(5)0…
76 …c)8d) rtds:runq_pick [ dom:vcpu = 0x%(1)08x, cur_deadline = 0x%(3)08x%(2)08x, cur_budget = 0x
78 …c)8d) rtds:repl_budget [ dom:vcpu = 0x%(1)08x, cur_deadline = 0x%(3)08x%(2)08x, cur_budget = 0x
115 … (+%(reltsc)8d) CPUID [ func = 0x%(1)08x, eax = 0x%(2)08x, ebx = 0x%(3)08x, ecx=0x%(4)08x, …
133 …)d (+%(reltsc)8d) NPF [ gpa = 0x%(2)08x%(1)08x mfn = 0x%(4)08x%(3)08x qual = 0x%(5)04x p2…
145 …d %(tsc)d (+%(reltsc)8d) page_fault [ rip = 0x%(2)08x%(1)08x, addr = 0x%(4)08x%(3)08x, error = 0
159 …%(reltsc)8d) ptwr_emulation [ addr = 0x%(4)08x%(3)08x, rip = 0x%(6)08x%(5)08x, npte = 0x%(2)…
161 …%(reltsc)8d) ptwr_emulation_pae [ addr = 0x%(4)08x%(3)08x, rip = 0x%(6)08x%(5)08x, npte = 0x%(2)…
166 …d) shadow_not_shadow [ gl1e = 0x%(2)08x%(1)08x, va = 0x%(4)08x%(3)08x, flags = 0x
176 …d) shadow_fixup [ gl1e = 0x%(2)08x%(1)08x, va = 0x%(4)08x%(3)08x, flags = 0x
[all …]
/xen-4.10.0-shim-comet/tools/tests/x86_emulator/
A Dsimd.c113 # define to_int(x) ((vec_t){ (int)(x)[0] }) argument
141 # define recip(x) __builtin_ia32_rcpps256(x) argument
143 # define sqrt(x) __builtin_ia32_sqrtps256(x) argument
160 # define recip(x) __builtin_ia32_rcpps(x) argument
161 # define rsqrt(x) __builtin_ia32_rsqrtps(x) argument
162 # define sqrt(x) __builtin_ia32_sqrtps(x) argument
163 # define swap(x) __builtin_ia32_shufps(x, x, 0b00011011) argument
203 # define sqrt(x) __builtin_ia32_sqrtpd(x) argument
204 # define swap(x) __builtin_ia32_shufpd(x, x, 0b01) argument
826 x = hadd((vec_t){}, x); in simd_test()
[all …]
/xen-4.10.0-shim-comet/xen/include/xen/byteorder/
A Dswab.h83 # define __arch__swab16p(x) __arch__swab16(*(x)) argument
86 # define __arch__swab32p(x) __arch__swab32(*(x)) argument
89 # define __arch__swab64p(x) __arch__swab64(*(x)) argument
93 # define __arch__swab16s(x) do { *(x) = __arch__swab16p((x)); } while (0) argument
96 # define __arch__swab32s(x) do { *(x) = __arch__swab32p((x)); } while (0) argument
99 # define __arch__swab64s(x) do { *(x) = __arch__swab64p((x)); } while (0) argument
110 __fswab16((x)))
114 __fswab32((x)))
120 # define __swab16(x) __fswab16(x) argument
121 # define __swab32(x) __fswab32(x) argument
[all …]
A Dbig_endian.h32 #define __cpu_to_be64(x) ((__force __be64)(__u64)(x)) argument
33 #define __be64_to_cpu(x) ((__force __u64)(__be64)(x)) argument
34 #define __cpu_to_be32(x) ((__force __be32)(__u32)(x)) argument
35 #define __be32_to_cpu(x) ((__force __u32)(__be32)(x)) argument
36 #define __cpu_to_be16(x) ((__force __be16)(__u16)(x)) argument
87 #define __cpu_to_le64s(x) __swab64s((x)) argument
88 #define __le64_to_cpus(x) __swab64s((x)) argument
89 #define __cpu_to_le32s(x) __swab32s((x)) argument
90 #define __le32_to_cpus(x) __swab32s((x)) argument
91 #define __cpu_to_le16s(x) __swab16s((x)) argument
[all …]
A Dlittle_endian.h26 #define __cpu_to_le64(x) ((__force __le64)(__u64)(x)) argument
27 #define __le64_to_cpu(x) ((__force __u64)(__le64)(x)) argument
28 #define __cpu_to_le32(x) ((__force __le32)(__u32)(x)) argument
29 #define __le32_to_cpu(x) ((__force __u32)(__le32)(x)) argument
30 #define __cpu_to_le16(x) ((__force __le16)(__u16)(x)) argument
93 #define __cpu_to_be64s(x) __swab64s((x)) argument
94 #define __be64_to_cpus(x) __swab64s((x)) argument
95 #define __cpu_to_be32s(x) __swab32s((x)) argument
96 #define __be32_to_cpus(x) __swab32s((x)) argument
97 #define __cpu_to_be16s(x) __swab16s((x)) argument
[all …]
/xen-4.10.0-shim-comet/tools/libxl/
A Dlibxl_osdeps.h91 # define htole16(x) (x) argument
93 # define le16toh(x) (x) argument
96 # define htole32(x) (x) argument
98 # define le32toh(x) (x) argument
101 # define htole64(x) (x) argument
103 # define le64toh(x) (x) argument
105 # define htobe16(x) (x) argument
107 # define be16toh(x) (x) argument
110 # define htobe32(x) (x) argument
112 # define be32toh(x) (x) argument
[all …]
/xen-4.10.0-shim-comet/xen/include/xen/
A Dperfc.h57 #define perfc_value(x) this_cpu(perfcounters)[PERFC_ ## x] argument
59 ( (y) <= PERFC_LAST_ ## x - PERFC_ ## x ? \
61 #define perfc_set(x,v) (this_cpu(perfcounters)[PERFC_ ## x] = (v)) argument
63 ( (y) <= PERFC_LAST_ ## x - PERFC_ ## x ? \
65 #define perfc_incr(x) (++this_cpu(perfcounters)[PERFC_ ## x]) argument
66 #define perfc_decr(x) (--this_cpu(perfcounters)[PERFC_ ## x]) argument
68 ( (y) <= PERFC_LAST_ ## x - PERFC_ ## x ? \
70 #define perfc_add(x,v) (this_cpu(perfcounters)[PERFC_ ## x] += (v)) argument
72 ( (y) <= PERFC_LAST_ ## x - PERFC_ ## x ? \
87 (PERFC_LAST_ ## x - PERFC_ ## x - 2) ) \
[all …]
A Dbitops.h26 if (!x) in generic_ffs()
29 x >>= 16; in generic_ffs()
33 x >>= 8; in generic_ffs()
37 x >>= 4; in generic_ffs()
41 x >>= 2; in generic_ffs()
45 x >>= 1; in generic_ffs()
59 if (!x) in generic_fls()
66 x <<= 8; in generic_fls()
70 x <<= 4; in generic_fls()
88 return !x || (u32)x ? generic_ffs(x) : generic_ffs(x >> 32) + 32; in generic_ffsl()
[all …]
A Dkernel.h15 #define min(x,y) ({ \ argument
16 const typeof(x) _x = (x); \
21 #define max(x,y) ({ \ argument
22 const typeof(x) _x = (x); \
33 #define min_t(type,x,y) \ argument
34 ({ type __x = (x); type __y = (y); __x < __y ? __x: __y; })
35 #define max_t(type,x,y) \ argument
42 #define MIN(x,y) ((x) < (y) ? (x) : (y)) argument
43 #define MAX(x,y) ((x) > (y) ? (x) : (y)) argument
61 #define typecheck(type,x) \ argument
[all …]
/xen-4.10.0-shim-comet/stubdom/grub/
A Dosdep.h5 #define swap32(x) bswap_32(x) argument
6 #define swap16(x) bswap_16(x) argument
10 #define htons(x) (x) argument
11 #define ntohs(x) (x) argument
12 #define htonl(x) (x) argument
13 #define ntohl(x) (x) argument
15 #define htons(x) swap16(x) argument
16 #define ntohs(x) swap16(x) argument
17 #define htonl(x) swap32(x) argument
18 #define ntohl(x) swap32(x) argument
[all …]
/xen-4.10.0-shim-comet/xen/common/
A Drangeset.c130 if ( (x == NULL) || ((x->e < s) && ((x->e + 1) != s)) ) in rangeset_add_range()
156 x = next_range(r, x); in rangeset_add_range()
201 if ( (x->s < s) && (x->e > e) ) in rangeset_remove_range()
231 x = next_range(r, x); in rangeset_remove_range()
237 x = next_range(r, x); in rangeset_remove_range()
242 if ( x->s > x->e ) in rangeset_remove_range()
261 contains = (x && (x->e >= e)); in rangeset_contains_range()
277 overlaps = (x && (s <= x->e)); in rangeset_overlaps_range()
292 for ( x = first_range(r); x && (x->s <= e) && !rc; x = next_range(r, x) ) in rangeset_report_ranges()
505 for ( x = first_range(r); x != NULL; x = next_range(r, x) ) in rangeset_printk()
[all …]
A Dgunzip.c41 # define Trace(x) do { fprintf x; } while (0) argument
42 # define Tracev(x) do { if (verbose) fprintf x ; } while (0) argument
43 # define Tracevv(x) do { if (verbose > 1) fprintf x ; } while (0) argument
44 # define Tracec(c, x) do { if (verbose && (c)) fprintf x ; } while (0) argument
45 # define Tracecv(c, x) do { if (verbose > 1 && (c)) fprintf x ; } while (0) argument
48 # define Trace(x) argument
49 # define Tracev(x) argument
50 # define Tracevv(x) argument
51 # define Tracec(c, x) argument
52 # define Tracecv(c, x) argument
[all …]
/xen-4.10.0-shim-comet/xen/include/asm-x86/
A Dpage.h59 #define l1e_get_intpte(x) ((x).l1) argument
60 #define l2e_get_intpte(x) ((x).l2) argument
61 #define l3e_get_intpte(x) ((x).l3) argument
62 #define l4e_get_intpte(x) ((x).l4) argument
75 #define l1e_get_mfn(x) _mfn(l1e_get_pfn(x)) argument
76 #define l2e_get_mfn(x) _mfn(l2e_get_pfn(x)) argument
77 #define l3e_get_mfn(x) _mfn(l3e_get_pfn(x)) argument
78 #define l4e_get_mfn(x) _mfn(l4e_get_pfn(x)) argument
219 #define pagetable_get_pfn(x) ((x).pfn) argument
221 #define pagetable_is_null(x) ((x).pfn == 0) argument
[all …]
A Dapicdef.h15 #define GET_xAPIC_ID(x) (((x)>>24)&0xFFu) argument
16 #define SET_xAPIC_ID(x) (((x)<<24)) argument
20 #define GET_APIC_VERSION(x) ((x)&0xFF) argument
21 #define GET_APIC_MAXLVT(x) (((x)>>16)&0xFF) argument
22 #define APIC_XAPIC(x) ((x) >= 0x14) argument
33 #define GET_xAPIC_LOGICAL_ID(x) (((x)>>24)&0xFF) argument
34 #define SET_xAPIC_LOGICAL_ID(x) (((x)<<24)) argument
81 #define GET_xAPIC_DEST_FIELD(x) (((x)>>24)&0xFF) argument
82 #define SET_xAPIC_DEST_FIELD(x) ((x)<<24) argument
99 #define GET_APIC_DELIVERY_MODE(x) (((x)>>8)&0x7) argument
[all …]
A Dio.h8 #define readb(x) (*(volatile uint8_t *)(x)) argument
9 #define readw(x) (*(volatile uint16_t *)(x)) argument
10 #define readl(x) (*(volatile uint32_t *)(x)) argument
11 #define readq(x) (*(volatile uint64_t *)(x)) argument
12 #define writeb(d,x) (*(volatile uint8_t *)(x) = (d)) argument
13 #define writew(d,x) (*(volatile uint16_t *)(x) = (d)) argument
14 #define writel(d,x) (*(volatile uint32_t *)(x) = (d)) argument
15 #define writeq(d,x) (*(volatile uint64_t *)(x) = (d)) argument
17 #define __OUT1(s,x) \ argument
23 #define __OUT(s,s1,x) \ argument
[all …]
A Dsystem.h27 #define __xg(x) ((volatile struct __xchg_dummy *)(x)) argument
37 unsigned long x, volatile void *ptr, int size) in __xchg() argument
43 : "=q" (x) in __xchg()
44 : "m" (*__xg(ptr)), "0" (x) in __xchg()
49 : "=r" (x) in __xchg()
50 : "m" (*__xg(ptr)), "0" (x) in __xchg()
55 : "=r" (x) in __xchg()
56 : "m" (*__xg(ptr)), "0" (x) in __xchg()
61 : "=r" (x) in __xchg()
62 : "m" (*__xg(ptr)), "0" (x) in __xchg()
[all …]
A Duaccess.h40 #define get_user(x,ptr) \ argument
41 __get_user_check((x),(ptr),sizeof(*(ptr)))
59 #define put_user(x,ptr) \ argument
82 #define __get_user(x,ptr) \ argument
104 #define __put_user(x,ptr) \ argument
107 #define __put_user_nocheck(x, ptr, size) \ argument
114 #define __put_user_check(x, ptr, size) \ argument
122 #define __get_user_nocheck(x, ptr, size) \ argument
129 #define __get_user_check(x, ptr, size) \ argument
138 #define __m(x) (*(const struct __large_struct *)(x)) argument
[all …]
/xen-4.10.0-shim-comet/xen/common/libelf/
A Dlibelf-private.h34 #define bswap_16(x) swab16(x) argument
35 #define bswap_32(x) swab32(x) argument
36 #define bswap_64(x) swab64(x) argument
49 #define bswap_16(x) BSWAP_16(x) argument
54 #define bswap_16(x) bswap16(x) argument
55 #define bswap_32(x) bswap32(x) argument
56 #define bswap_64(x) bswap64(x) argument
59 #define bswap_16(x) swap16(x) argument
60 #define bswap_32(x) swap32(x) argument
61 #define bswap_64(x) swap64(x) argument
[all …]
/xen-4.10.0-shim-comet/tools/firmware/hvmloader/
A Dapic_regs.h8 #define GET_APIC_ID(x) (((x)>>24)&0xFFu) argument
9 #define SET_APIC_ID(x) (((x)<<24)) argument
12 #define GET_APIC_VERSION(x) ((x)&0xFF) argument
13 #define GET_APIC_MAXLVT(x) (((x)>>16)&0xFF) argument
14 #define APIC_INTEGRATED(x) ((x)&0xF0) argument
15 #define APIC_XAPIC(x) ((x) >= 0x14) argument
26 #define GET_APIC_LOGICAL_ID(x) (((x)>>24)&0xFF) argument
27 #define SET_APIC_LOGICAL_ID(x) (((x)<<24)) argument
70 #define SET_APIC_DEST_FIELD(x) ((x)<<24) argument
76 #define GET_APIC_TIMER_BASE(x) (((x)>>18)&0x3) argument
[all …]
/xen-4.10.0-shim-comet/tools/libfsimage/zfs/zfs-include/
A Dspa.h29 #define BF32_DECODE(x, low, len) P2PHASE((x) >> (low), 1U << (len)) argument
30 #define BF64_DECODE(x, low, len) P2PHASE((x) >> (low), 1ULL << (len)) argument
31 #define BF32_ENCODE(x, low, len) (P2PHASE((x), 1U << (len)) << (low)) argument
32 #define BF64_ENCODE(x, low, len) (P2PHASE((x), 1ULL << (len)) << (low)) argument
34 #define BF32_GET(x, low, len) BF32_DECODE(x, low, len) argument
35 #define BF64_GET(x, low, len) BF64_DECODE(x, low, len) argument
38 ((x) ^= BF32_ENCODE((x >> low) ^ (val), low, len))
40 ((x) ^= BF64_ENCODE((x >> low) ^ (val), low, len))
207 #define BP_SET_TYPE(bp, x) BF64_SET((bp)->blk_prop, 48, 8, x) argument
210 #define BP_SET_LEVEL(bp, x) BF64_SET((bp)->blk_prop, 56, 5, x) argument
[all …]
/xen-4.10.0-shim-comet/tools/libfsimage/zfs/
A Dzfs_sha256.c43 #define Ch(x, y, z) ((z) ^ ((x) & ((y) ^ (z)))) argument
44 #define Maj(x, y, z) (((x) & (y)) ^ ((z) & ((x) ^ (y)))) argument
45 #define Rot32(x, s) (((x) >> s) | ((x) << (32 - s))) argument
46 #define SIGMA0(x) (Rot32(x, 2) ^ Rot32(x, 13) ^ Rot32(x, 22)) argument
47 #define SIGMA1(x) (Rot32(x, 6) ^ Rot32(x, 11) ^ Rot32(x, 25)) argument
48 #define sigma0(x) (Rot32(x, 7) ^ Rot32(x, 18) ^ ((x) >> 3)) argument
49 #define sigma1(x) (Rot32(x, 17) ^ Rot32(x, 19) ^ ((x) >> 10)) argument
A Dfsys_zfs.h91 #define BSWAP_8(x) ((x) & 0xff) argument
92 #define BSWAP_16(x) ((BSWAP_8(x) << 8) | BSWAP_8((x) >> 8)) argument
93 #define BSWAP_32(x) ((BSWAP_16(x) << 16) | BSWAP_16((x) >> 16)) argument
94 #define BSWAP_64(x) ((BSWAP_32(x) << 32) | BSWAP_32((x) >> 32)) argument
95 #define P2ROUNDUP(x, align) (-(-(x) & -(align))) argument
120 #define P2PHASE(x, align) ((x) & ((align) - 1)) argument
131 #define P2ALIGN(x, align) ((x) & -(align)) argument
/xen-4.10.0-shim-comet/xen/include/xen/libfdt/
A Dlibfdt_env.h12 #define fdt16_to_cpu(x) be16_to_cpu(x) argument
13 #define cpu_to_fdt16(x) cpu_to_be16(x) argument
14 #define fdt32_to_cpu(x) be32_to_cpu(x) argument
15 #define cpu_to_fdt32(x) cpu_to_be32(x) argument
16 #define fdt64_to_cpu(x) be64_to_cpu(x) argument
17 #define cpu_to_fdt64(x) cpu_to_be64(x) argument
/xen-4.10.0-shim-comet/xen/include/asm-arm/
A Dbitops.h110 static inline int fls(unsigned int x) in fls() argument
114 if (__builtin_constant_p(x)) in fls()
115 return generic_fls(x); in fls()
117 asm("clz\t%"__OP32"0, %"__OP32"1" : "=r" (ret) : "r" (x)); in fls()
122 #define ffs(x) ({ unsigned int __t = (x); fls(__t & -__t); }) argument
123 #define ffsl(x) ({ unsigned long __t = (x); flsl(__t & -__t); }) argument
143 #define hweight64(x) generic_hweight64(x) argument
144 #define hweight32(x) generic_hweight32(x) argument
145 #define hweight16(x) generic_hweight16(x) argument
146 #define hweight8(x) generic_hweight8(x) argument
/xen-4.10.0-shim-comet/m4/
A Dstubdom.m429 AS_IF([test "x$$2" = "xy" || test "x$$2" = "x"], [
38 AS_IF([test "x$$1" = "x" && test "x$$2" = "xn"], [
58 AS_IF([test "x$enableval" = "xyes"], [
61 AS_IF([test "x$enableval" = "xno"],[
73 for x in $STUBDOM_BUILD; do
74 echo " $x"
80 AS_IF([test "x$$1_URL" = "x"], [
81 AS_IF([test "x$extfiles" = "xy"],
92 AS_IF([test "x$$1_URL" = "x"], [

Completed in 43 milliseconds

12345678910>>...15