Home
last modified time | relevance | path

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

12345678910>>...53

/device/google/cuttlefish_common/guest/libs/eglwrapper/
Dgles3.types1 GLbitfield 32 0x%08x
4 GLclampx 32 0x%08x
6 GLenum 32 0x%08x
7 GLfixed 32 0x%08x
10 GLintptr 32 0x%08lx
13 GLsizeiptr 32 0x%08lx
14 GLubyte 8 0x%02x
16 GLvoid 0 %x
18 GLenum* 32 0x%08x
19 GLboolean* 32 0x%08x
[all …]
Dgles1.types1 GLbitfield 32 0x%08x
4 GLclampx 32 0x%08x
6 GLenum 32 0x%08x
7 GLfixed 32 0x%08x
10 GLintptr 32 0x%08lx
13 GLsizeiptr 32 0x%08lx
14 GLubyte 8 0x%02x
16 GLvoid 0 %x
18 GLenum* 32 0x%08x
19 GLboolean* 32 0x%08x
[all …]
Degl.types1 char* 32 0x%08x
2 void* 32 0x%08x
4 EGLconstcharptr 32 0x%08x
5 EGLenum 32 0x%08x
7 EGLint* 32 0x%08x
10 EGLClientBuffer 32 0x%08x
11 EGLConfig 32 0x%08x
12 EGLConfig* 32 0x%08x
13 EGLContext 32 0x%08x
14 EGLDisplay 32 0x%08x
[all …]
/device/generic/opengl-transport/host/libs/virglrenderer/GLESv3_dec/
Dgles3.types1 GLbitfield 32 0x%08x
4 GLclampx 32 0x%08x
6 GLenum 32 0x%08x
7 GLfixed 32 0x%08x
10 GLintptr 32 0x%08lx
13 GLsizeiptr 32 0x%08lx
14 GLubyte 8 0x%02x
16 GLvoid 0 %x
18 GLenum* 32 0x%08x
19 GLboolean* 32 0x%08x
[all …]
/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
54 __typeof((x)) x_ = (x); \
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
[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/generic/opengl-transport/host/libs/virglrenderer/GLESv1_dec/
Dgles1.types1 GLbitfield 32 0x%08x
4 GLclampx 32 0x%08x
6 GLenum 32 0x%08x
7 GLfixed 32 0x%08x
10 GLintptr 32 0x%08lx
13 GLsizeiptr 32 0x%08lx
14 GLubyte 8 0x%02x
16 GLvoid 0 %x
18 GLenum* 32 0x%08x
19 GLboolean* 32 0x%08x
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
D_math.c42 _Py_acosh(double x) in _Py_acosh() argument
44 if (Py_IS_NAN(x)) { in _Py_acosh()
45 return x+x; in _Py_acosh()
47 if (x < 1.) { /* x < 1; return a signaling NaN */ in _Py_acosh()
52 return (x-x)/(x-x); in _Py_acosh()
55 else if (x >= two_pow_p28) { /* x > 2**28 */ in _Py_acosh()
56 if (Py_IS_INFINITY(x)) { in _Py_acosh()
57 return x+x; in _Py_acosh()
60 return log(x)+ln2; /* acosh(huge)=log(2x) */ in _Py_acosh()
63 else if (x == 1.) { in _Py_acosh()
[all …]
Dsignalmodule.c574 PyObject *m, *d, *x; in initsignal() local
590 x = DefaultHandler = PyLong_FromVoidPtr((void *)SIG_DFL); in initsignal()
591 if (!x || PyDict_SetItemString(d, "SIG_DFL", x) < 0) in initsignal()
594 x = IgnoreHandler = PyLong_FromVoidPtr((void *)SIG_IGN); in initsignal()
595 if (!x || PyDict_SetItemString(d, "SIG_IGN", x) < 0) in initsignal()
598 x = PyInt_FromLong((long)NSIG); in initsignal()
599 if (!x || PyDict_SetItemString(d, "NSIG", x) < 0) in initsignal()
601 Py_DECREF(x); in initsignal()
603 x = IntHandler = PyDict_GetItemString(d, "default_int_handler"); in initsignal()
604 if (!x) in initsignal()
[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
133 #define ntohl(x) bswap32((uint32_t)(x))
134 #define ntohs(x) bswap16((uint16_t)(x))
[all …]
Dbswap.h41 #define __byte_swap_u64_constant(x) \ argument
43 ((((x) & 0xff00000000000000ull) >> 56) | \
44 (((x) & 0x00ff000000000000ull) >> 40) | \
45 (((x) & 0x0000ff0000000000ull) >> 24) | \
46 (((x) & 0x000000ff00000000ull) >> 8) | \
47 (((x) & 0x00000000ff000000ull) << 8) | \
48 (((x) & 0x0000000000ff0000ull) << 24) | \
49 (((x) & 0x000000000000ff00ull) << 40) | \
50 (((x) & 0x00000000000000ffull) << 56)))
52 #define __byte_swap_u32_constant(x) \ argument
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
D_math.c42 _Py_acosh(double x) in _Py_acosh() argument
44 if (Py_IS_NAN(x)) { in _Py_acosh()
45 return x+x; in _Py_acosh()
47 if (x < 1.) { /* x < 1; return a signaling NaN */ in _Py_acosh()
52 return (x-x)/(x-x); in _Py_acosh()
55 else if (x >= two_pow_p28) { /* x > 2**28 */ in _Py_acosh()
56 if (Py_IS_INFINITY(x)) { in _Py_acosh()
57 return x+x; in _Py_acosh()
60 return log(x)+ln2; /* acosh(huge)=log(2x) */ in _Py_acosh()
63 else if (x == 1.) { in _Py_acosh()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_augassign.py9 x = 2
10 x += 1
11 x *= 2
12 x **= 2
13 x -= 8
14 x //= 5
15 x %= 3
16 x &= 2
17 x |= 5
18 x ^= 1
[all …]
Dtest_grammar.py16 x = 1 \
18 self.assertEqual(x, 2, 'backslash for line continuation')
21 x = 0
22 self.assertEqual(x, 0, 'backslash ending comment')
38 x = eval(s)
48 x = eval(s)
55 x = 0L
56 x = 0l
57 x = 0xffffffffffffffffL
58 x = 0xffffffffffffffffl
[all …]
Dtest_copy.py21 x = 42
22 y = copy.copy(x)
23 self.assertEqual(x, y)
31 x = C(42)
32 y = copy.copy(x)
33 self.assertEqual(y.__class__, x.__class__)
34 self.assertEqual(y.foo, x.foo)
44 x = C(42)
45 self.assertRaises(TypeError, copy.copy, x)
47 y = copy.copy(x)
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/data/
Dpy3_test_grammar.py21 x = 1 \
23 self.assertEquals(x, 2, 'backslash for line continuation')
26 x = 0
27 self.assertEquals(x, 0, 'backslash ending comment')
47 x = eval(s)
59 x = eval(s)
66 x = 0
67 x = 0xffffffffffffffff
68 x = 0Xffffffffffffffff
69 x = 0o77777777777777777
[all …]
Dpy2_test_grammar.py21 x = 1 \
23 self.assertEquals(x, 2, 'backslash for line continuation')
26 x = 0
27 self.assertEquals(x, 0, 'backslash ending comment')
43 x = eval(s)
53 x = eval(s)
60 x = 0L
61 x = 0l
62 x = 0xffffffffffffffffL
63 x = 0xffffffffffffffffl
[all …]
/device/generic/goldfish-opengl/system/renderControl_enc/
DrenderControl.types1 uint32_t 32 0x%08x
2 uint64_t 64 0x%016lx
3 EGLint 32 0x%08x
4 GLint 32 0x%08x
5 GLuint 32 0x%08x
6 GLenum 32 0x%08x
7 EGLenum 32 0x%08x
8 uint32_t* 32 0x%08x
9 EGLint* 32 0x%08x
10 int* 32 0x%08x
[all …]
/device/generic/opengl-transport/host/libs/virglrenderer/renderControl_dec/
DrenderControl.types1 uint32_t 32 0x%08x
2 uint64_t 64 0x%016lx
3 EGLint 32 0x%08x
4 GLint 32 0x%08x
5 GLuint 32 0x%08x
6 GLenum 32 0x%08x
7 EGLenum 32 0x%08x
8 uint32_t* 32 0x%08x
9 EGLint* 32 0x%08x
10 int* 32 0x%08x
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/
DLookups.py32 x = c.__a
33 x = c.__b
34 x = c.__c
36 x = c.__a
37 x = c.__b
38 x = c.__c
40 x = c.__a
41 x = c.__b
42 x = c.__c
44 x = c.__a
[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/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/sample/skins/WVGAMedDpi/
Dlayout17 x 0
29 x 56
34 x 0
39 x 112
44 x 77
49 x 77
54 x 53
59 x 123
64 x 77
69 x 0
[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
74 (EXTRACT_BYTE(x, 2) << 8) | EXTRACT_BYTE(x, 3))
75 #define CPU_TO_FDT64(x) ((EXTRACT_BYTE(x, 0) << 56) | (EXTRACT_BYTE(x, 1) << 48) | \ argument
76 (EXTRACT_BYTE(x, 2) << 40) | (EXTRACT_BYTE(x, 3) << 32) | \
77 (EXTRACT_BYTE(x, 4) << 24) | (EXTRACT_BYTE(x, 5) << 16) | \
78 (EXTRACT_BYTE(x, 6) << 8) | EXTRACT_BYTE(x, 7))
80 static inline uint16_t fdt16_to_cpu(fdt16_t x) in fdt16_to_cpu() argument
82 return (__force uint16_t)CPU_TO_FDT16(x); in fdt16_to_cpu()
[all …]

12345678910>>...53