Home
last modified time | relevance | path

Searched defs:x (Results 1 – 25 of 784) sorted by relevance

12345678910>>...32

/device/google/contexthub/firmware/external/freebsd/inc/sys/
Dendian.h38 #define bswap16(x) __bswap16(x) argument
39 #define bswap32(x) __bswap32(x) argument
40 #define bswap64(x) __bswap64(x) argument
47 #define htobe16(x) bswap16((x)) argument
48 #define htobe32(x) bswap32((x)) argument
49 #define htobe64(x) bswap64((x)) argument
50 #define htole16(x) ((uint16_t)(x)) argument
51 #define htole32(x) ((uint32_t)(x)) argument
52 #define htole64(x) ((uint64_t)(x)) argument
54 #define be16toh(x) bswap16((x)) argument
[all …]
/device/linaro/bootloader/arm-trusted-firmware/lib/compiler-rt/builtins/
Dint_math.h25 # define __has_builtin(x) 0 argument
41 #define crt_isfinite(x) _finite((x)) argument
42 #define crt_isinf(x) !_finite((x)) argument
43 #define crt_isnan(x) _isnan((x)) argument
50 # define crt_isfinite(x) __builtin_isfinite((x)) argument
52 # define crt_isfinite(x) \ argument
60 #define crt_isinf(x) __builtin_isinf((x)) argument
61 #define crt_isnan(x) __builtin_isnan((x)) argument
65 #define crt_copysign(x, y) copysign((x), (y)) argument
66 #define crt_copysignf(x, y) copysignf((x), (y)) argument
[all …]
/device/linaro/bootloader/edk2/Omap35xxPkg/Include/Omap3530/
DOmap3530Gpio.h69 #define GPIO_IRQSTATUS_MASK(x) (1UL << (x)) argument
70 #define GPIO_IRQSTATUS_NOT_TRIGGERED(x) (0UL << (x)) argument
71 #define GPIO_IRQSTATUS_TRIGGERED(x) (1UL << (x)) argument
72 #define GPIO_IRQSTATUS_CLEAR(x) (1UL << (x)) argument
74 #define GPIO_IRQENABLE_MASK(x) (1UL << (x)) argument
75 #define GPIO_IRQENABLE_DISABLE(x) (0UL << (x)) argument
76 #define GPIO_IRQENABLE_ENABLE(x) (1UL << (x)) argument
78 #define GPIO_WAKEUPENABLE_MASK(x) (1UL << (x)) argument
79 #define GPIO_WAKEUPENABLE_DISABLE(x) (0UL << (x)) argument
80 #define GPIO_WAKEUPENABLE_ENABLE(x) (1UL << (x)) argument
[all …]
/device/linaro/bootloader/edk2/ArmPkg/Library/ArmLib/
DArmLibPrivate.h34 #define SIZE_FIELD_TO_CACHE_SIZE(x) (((x) >> 6) & 0x0F) argument
35 #define SIZE_FIELD_TO_CACHE_ASSOCIATIVITY(x) (((x) >> 3) & 0x07) argument
36 #define SIZE_FIELD_TO_CACHE_PRESENCE(x) (((x) >> 2) & 0x01) argument
37 #define SIZE_FIELD_TO_CACHE_LINE_LENGTH(x) (((x) >> 0) & 0x03) argument
39 #define DATA_CACHE_SIZE_FIELD(x) (((x) >> 12) & 0x0FFF) argument
40 #define INSTRUCTION_CACHE_SIZE_FIELD(x) (((x) >> 0) & 0x0FFF) argument
42 #define DATA_CACHE_SIZE(x) (SIZE_FIELD_TO_CACHE_SIZE(DATA_CACHE_SIZE_FIELD(x))) argument
43 #define DATA_CACHE_ASSOCIATIVITY(x) (SIZE_FIELD_TO_CACHE_ASSOCIATIVITY(DATA_CACHE_SIZE_FI… argument
44 #define DATA_CACHE_PRESENT(x) (SIZE_FIELD_TO_CACHE_PRESENCE(DATA_CACHE_SIZE_FIELD(x… argument
45 #define DATA_CACHE_LINE_LENGTH(x) (SIZE_FIELD_TO_CACHE_LINE_LENGTH(DATA_CACHE_SIZE_FIEL… argument
[all …]
/device/linaro/bootloader/edk2/StdLib/Include/sys/
Dendian.h121 #define ntohl(x) (x) argument
122 #define ntohs(x) (x) argument
123 #define htonl(x) (x) argument
124 #define htons(x) (x) argument
126 #define NTOHL(x) (void) (x) argument
127 #define NTOHS(x) (void) (x) argument
128 #define HTONL(x) (void) (x) argument
129 #define HTONS(x) (void) (x) argument
150 #define htobe16(x) (x) argument
151 #define htobe32(x) (x) argument
[all …]
Dbswap.h41 #define __byte_swap_u64_constant(x) \ argument
52 #define __byte_swap_u32_constant(x) \ argument
58 #define __byte_swap_u16_constant(x) \ argument
62 #define bswap64(x) \ argument
66 #define bswap32(x) \ argument
70 #define bswap16(x) \ argument
DEfiCdefs.h78 #define __GNUC_PREREQ__(x, y) \ argument
85 #define __GNUC_PREREQ__(x, y) 0 argument
121 #define __static_cast(x,y) static_cast<x>(y) argument
125 #define __static_cast(x,y) (x)y argument
136 #define ___STRING(x) __STRING(x) argument
137 #define ___CONCAT(x,y) __CONCAT(x,y) argument
138 #define __CONCAT(x,y) x ## y argument
139 #define __STRING(x) #x argument
196 #define __attribute__(x) /* delete __attribute__ if non-gcc or gcc1 */ argument
225 #define __aligned(x) __attribute__((__aligned__(x))) argument
[all …]
/device/linaro/bootloader/arm-trusted-firmware/include/lib/stdlib/sys/
Dendian.h59 #define bswap16(x) __bswap16(x) argument
60 #define bswap32(x) __bswap32(x) argument
61 #define bswap64(x) __bswap64(x) argument
68 #define htobe16(x) bswap16((x)) argument
69 #define htobe32(x) bswap32((x)) argument
70 #define htobe64(x) bswap64((x)) argument
71 #define htole16(x) ((uint16_t)(x)) argument
72 #define htole32(x) ((uint32_t)(x)) argument
73 #define htole64(x) ((uint64_t)(x)) argument
75 #define be16toh(x) bswap16((x)) argument
[all …]
/device/linaro/bootloader/arm-trusted-firmware/include/lib/libfdt/
Dlibfdt_env.h71 #define EXTRACT_BYTE(x, n) ((unsigned long long)((uint8_t *)&x)[n]) argument
72 #define CPU_TO_FDT16(x) ((EXTRACT_BYTE(x, 0) << 8) | EXTRACT_BYTE(x, 1)) argument
73 #define CPU_TO_FDT32(x) ((EXTRACT_BYTE(x, 0) << 24) | (EXTRACT_BYTE(x, 1) << 16) | \ argument
75 #define CPU_TO_FDT64(x) ((EXTRACT_BYTE(x, 0) << 56) | (EXTRACT_BYTE(x, 1) << 48) | \ argument
80 static inline uint16_t fdt16_to_cpu(fdt16_t x) in fdt16_to_cpu()
84 static inline fdt16_t cpu_to_fdt16(uint16_t x) in cpu_to_fdt16()
89 static inline uint32_t fdt32_to_cpu(fdt32_t x) in fdt32_to_cpu()
93 static inline fdt32_t cpu_to_fdt32(uint32_t x) in cpu_to_fdt32()
98 static inline uint64_t fdt64_to_cpu(fdt64_t x) in fdt64_to_cpu()
102 static inline fdt64_t cpu_to_fdt64(uint64_t x) in cpu_to_fdt64()
/device/google/bonito/json-c/
Ddebug.h32 #define __STRING(x) #x argument
51 #define MC_ERROR(x, ...) mc_error(x, ##__VA_ARGS__) argument
54 #define MC_SET_DEBUG(x) mc_set_debug(x) argument
56 #define MC_SET_SYSLOG(x) mc_set_syslog(x) argument
57 #define MC_DEBUG(x, ...) mc_debug(x, ##__VA_ARGS__) argument
58 #define MC_INFO(x, ...) mc_info(x, ##__VA_ARGS__) argument
60 #define MC_SET_DEBUG(x) if (0) mc_set_debug(x) argument
62 #define MC_SET_SYSLOG(x) if (0) mc_set_syslog(x) argument
63 #define MC_DEBUG(x, ...) if (0) mc_debug(x, ##__VA_ARGS__) argument
64 #define MC_INFO(x, ...) if (0) mc_info(x, ##__VA_ARGS__) argument
/device/google/crosshatch/json-c/
Ddebug.h32 #define __STRING(x) #x argument
51 #define MC_ERROR(x, ...) mc_error(x, ##__VA_ARGS__) argument
54 #define MC_SET_DEBUG(x) mc_set_debug(x) argument
56 #define MC_SET_SYSLOG(x) mc_set_syslog(x) argument
57 #define MC_DEBUG(x, ...) mc_debug(x, ##__VA_ARGS__) argument
58 #define MC_INFO(x, ...) mc_info(x, ##__VA_ARGS__) argument
60 #define MC_SET_DEBUG(x) if (0) mc_set_debug(x) argument
62 #define MC_SET_SYSLOG(x) if (0) mc_set_syslog(x) argument
63 #define MC_DEBUG(x, ...) if (0) mc_debug(x, ##__VA_ARGS__) argument
64 #define MC_INFO(x, ...) if (0) mc_info(x, ##__VA_ARGS__) argument
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Drepr.py23 def repr(self, x): argument
26 def repr1(self, x, level): argument
41 def _repr_iterable(self, x, level, left, right, maxiter, trail=''): argument
54 def repr_tuple(self, x, level): argument
57 def repr_list(self, x, level): argument
60 def repr_array(self, x, level): argument
64 def repr_set(self, x, level): argument
68 def repr_frozenset(self, x, level): argument
73 def repr_deque(self, x, level): argument
76 def repr_dict(self, x, level): argument
[all …]
Dcopy.py66 def copy(x): argument
101 def _copy_immutable(x): argument
113 def _copy_with_constructor(x): argument
118 def _copy_with_copy_method(x): argument
123 def _copy_inst(x): argument
145 def deepcopy(x, memo=None, _nil=[]): argument
198 def _deepcopy_atomic(x, memo): argument
226 def _deepcopy_list(x, memo): argument
234 def _deepcopy_tuple(x, memo): argument
253 def _deepcopy_dict(x, memo): argument
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Drepr.py23 def repr(self, x): argument
26 def repr1(self, x, level): argument
41 def _repr_iterable(self, x, level, left, right, maxiter, trail=''): argument
54 def repr_tuple(self, x, level): argument
57 def repr_list(self, x, level): argument
60 def repr_array(self, x, level): argument
64 def repr_set(self, x, level): argument
68 def repr_frozenset(self, x, level): argument
73 def repr_deque(self, x, level): argument
76 def repr_dict(self, x, level): argument
[all …]
Dcopy.py66 def copy(x): argument
101 def _copy_immutable(x): argument
113 def _copy_with_constructor(x): argument
118 def _copy_with_copy_method(x): argument
123 def _copy_inst(x): argument
145 def deepcopy(x, memo=None, _nil=[]): argument
198 def _deepcopy_atomic(x, memo): argument
226 def _deepcopy_list(x, memo): argument
234 def _deepcopy_tuple(x, memo): argument
253 def _deepcopy_dict(x, memo): argument
[all …]
/device/linaro/bootloader/edk2/StdLib/Include/X64/machine/
Dasm.h41 #define PIC_PLT(x) x@PLT argument
42 #define PIC_GOT(x) x@GOTPCREL(%rip) argument
44 #define PIC_PLT(x) x argument
45 #define PIC_GOT(x) x argument
48 # define _C_LABEL(x) x argument
49 #define _ASM_LABEL(x) x argument
51 #define CVAROFF(x,y) (_C_LABEL(x)+y)(%rip) argument
54 # define __CONCAT(x,y) x ## y argument
55 # define __STRING(x) #x argument
57 # define __CONCAT(x,y) x/**/y argument
[all …]
/device/linaro/bootloader/arm-trusted-firmware/include/lib/stdlib/machine/
Dendian.h61 #define __ntohl(x) (__bswap32(x)) argument
62 #define __ntohs(x) (__bswap16(x)) argument
63 #define __htonl(x) (__bswap32(x)) argument
64 #define __htons(x) (__bswap16(x)) argument
106 __bswap64(__uint64_t x) in __bswap64()
143 #define __bswap32_constant(x) \ argument
149 #define __bswap16_constant(x) \ argument
153 #define __bswap16(x) \ argument
158 #define __bswap32(x) \ argument
164 #define __bswap16(x) __bswap16_var(x) argument
[all …]
/device/linaro/bootloader/edk2/StdLib/Include/Ia32/machine/
Dasm.h53 #define PIC_PLT(x) x@PLT argument
54 #define PIC_GOT(x) x@GOT(%ebx) argument
55 #define PIC_GOTOFF(x) x@GOTOFF(%ebx) argument
59 #define PIC_PLT(x) x argument
60 #define PIC_GOT(x) x argument
61 #define PIC_GOTOFF(x) x argument
65 # define _C_LABEL(x) x argument
68 # define _C_LABEL(x) _ ## x argument
70 # define _C_LABEL(x) _/**/x argument
73 #define _ASM_LABEL(x) x argument
[all …]
/device/linaro/bootloader/edk2/StdLib/Include/Ipf/machine/
Dmd_var.h47 #define IA64_CFM_SOF(x) ((x) & 0x7f) argument
48 #define IA64_CFM_SOL(x) (((x) >> 7) & 0x7f) argument
49 #define IA64_CFM_SOR(x) (((x) >> 14) & 0x0f) argument
50 #define IA64_CFM_RRB_GR(x) (((x) >> 18) & 0x7f) argument
51 #define IA64_CFM_RRB_FR(x) (((x) >> 25) & 0x7f) argument
52 #define IA64_CFM_RRB_PR(x) (((x) >> 32) & 0x3f) argument
54 #define IA64_RNATINDEX(x) (((x) & 0x1f8) >> 3) argument
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/
Drrcs.py47 def checkin(x, copts, fn): argument
61 def checkout(x, copts, fn): argument
67 def lock(x, copts, fn): argument
70 def unlock(x, copts, fn): argument
73 def info(x, copts, fn): argument
81 def head(x, copts, fn): argument
85 def list(x, copts, fn): argument
89 def log(x, copts, fn): argument
97 def diff(x, copts, fn): argument
113 def same(x, copts, fn, data = None): argument
/device/linaro/bootloader/edk2/StdLib/Include/Arm/machine/
Dasm.h41 # define _C_LABEL(x) x argument
44 # define _C_LABEL(x) _ ## x argument
46 # define _C_LABEL(x) _/**/x argument
49 #define _ASM_LABEL(x) x argument
52 # define __CONCAT(x,y) x ## y argument
53 # define __STRING(x) #x argument
55 # define __CONCAT(x,y) x/**/y argument
56 # define __STRING(x) "x" argument
71 #define _ENTRY(x) \ argument
95 #define PIC_SYM(x,y) x ## ( ## y ## ) argument
[all …]
/device/linaro/hikey/hifi/xaf/hifi-dpf/include/
Dxa_profiler.h118 #define INIT_XA_PROFILER(x, a) do { memset(&x, 0, sizeof(xa_profiler)); \ argument
124 #define START_TIME_XA_PROFILER(x) do { set_ccount(0); \ argument
126 #define STOP_TIME_XA_PROFILER(x) do { x.cstop =read_ccount(); \ argument
128 #define COMPUTE_MHZ_XA_PROFILER(x, a, b, c) do { xa_compute_mcps(&x, a, b, c); } while(0) argument
129 #define SUMMARY_XA_PROFILER(x) do { fprintf(stdout,"\n%5s Peak MCPS = %f\n", x.id,… argument
139 #define INIT_XA_PROFILER(x, a) do {} while(0) argument
140 #define START_TIME_XA_PROFILER(x) do {} while(0) argument
141 #define STOP_TIME_XA_PROFILER(x) do {} while(0) argument
142 #define COMPUTE_MHZ_XA_PROFILER(x, a, b) do {} while(0) argument
143 #define SUMMARY_XA_PROFILER(x) do {} while(0) argument
[all …]
/device/google/cuttlefish_common/common/libs/threads/
Dthread_annotations.h19 #define THREAD_ANNOTATION_ATTRIBUTE__(x) __attribute__((x)) argument
21 #define THREAD_ANNOTATION_ATTRIBUTE__(x) // no-op argument
24 #define CAPABILITY(x) \ argument
30 #define GUARDED_BY(x) \ argument
33 #define PT_GUARDED_BY(x) \ argument
69 #define ASSERT_CAPABILITY(x) \ argument
72 #define ASSERT_SHARED_CAPABILITY(x) \ argument
75 #define RETURN_CAPABILITY(x) \ argument
/device/google/contexthub/firmware/os/algos/common/math/
Dmacros.h29 #define NANO_ABS(x) ((x) > 0 ? (x) : -(x)) argument
32 #define SIGMOID(x) (1 / (1 + expf(-x))) argument
36 #define MSEC_TO_NANOS(x) (static_cast<uint64_t>(x * UINT64_C(1000000))) argument
38 #define MSEC_TO_NANOS(x) ((uint64_t)(x * UINT64_C(1000000))) // NOLINT argument
41 #define SEC_TO_NANOS(x) MSEC_TO_NANOS(x * UINT64_C(1000)) argument
42 #define MIN_TO_NANOS(x) SEC_TO_NANOS (x * UINT64_C(60)) argument
43 #define HRS_TO_NANOS(x) MIN_TO_NANOS (x * UINT64_C(60)) argument
44 #define DAYS_TO_NANOS(x) HRS_TO_NANOS (x * UINT64_C(24)) argument
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
D_math.c42 _Py_acosh(double x) in _Py_acosh()
89 _Py_asinh(double x) in _Py_asinh()
132 _Py_atanh(double x) in _Py_atanh()
167 _Py_expm1(double x) in _Py_expm1()
195 _Py_log1p(double x) in _Py_log1p()
214 _Py_log1p(double x) in _Py_log1p()

12345678910>>...32