Home
last modified time | relevance | path

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

12345678910>>...15

/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/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/google/cuttlefish_kernel/5.4-arm64/
DSystem.map15 ffffffc010080000 t $x
24 ffffffc010080148 t $x
25 ffffffc010081000 t $x.1727
30 ffffffc010081018 t $x.1729
31 ffffffc010081020 t $x.1731
32 ffffffc01008108c t $x.1733
33 ffffffc0100810dc t $x.1735
34 ffffffc010081124 t $x.1737
35 ffffffc010081154 t $x.1739
36 ffffffc01008115c t $x.22
[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/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/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/google/contexthub/firmware/lib/libm/
Dsf_atan.c68 float atanf(float x) in atanf() argument
70 float atanf(x) in atanf()
71 float x; in atanf()
77 GET_FLOAT_WORD(hx,x);
81 return x+x; /* NaN */
86 if(huge+x>one) return x; /* raise inexact */
90 x = fabsf(x);
93 id = 0; x = ((float)2.0*x-one)/((float)2.0+x);
95 id = 1; x = (x-one)/(x+one);
99 id = 2; x = (x-(float)1.5)/(one+(float)1.5*x);
[all …]
Dsf_scalbn.c37 float scalbnf (float x, int n) in scalbnf() argument
39 float scalbnf (x,n) in scalbnf()
40 float x; int n; in scalbnf()
46 GET_FLOAT_WORD(ix,x);
50 return x;
52 return x+x; /* NaN or Inf */
54 x *= two25;
55 GET_FLOAT_WORD(ix,x);
57 if (n< -50000) return tiny*x; /*underflow*/
60 if (k > FLT_LARGEST_EXP) return huge*copysignf(huge,x); /* overflow */
[all …]
Dsf_floor.c34 float floorf(float x) in floorf() argument
36 float floorf(x) in floorf()
37 float x; in floorf()
42 GET_FLOAT_WORD(i0,x);
47 if(huge+x>(float)0.0) {/* return 0*sign(x) if |x|<1 */
54 if((i0&i)==0) return x; /* x is integral */
55 if(huge+x>(float)0.0) { /* raise inexact flag */
61 if(!FLT_UWORD_IS_FINITE(ix)) return x+x; /* inf or NaN */
62 else return x; /* x is integral */
64 SET_FLOAT_WORD(x,i0);
[all …]
Dsf_round.c15 float roundf(float x) in roundf() argument
17 float roundf(x) in roundf()
18 float x; in roundf()
25 GET_FLOAT_WORD(w, x);
44 return x;
54 return x + x;
56 return x;
58 SET_FLOAT_WORD(x, w);
59 return x;
65 double round(double x) in round() argument
[all …]
Def_exp.c43 float __ieee754_expf(float x) /* default IEEE double exp */ in __ieee754_expf() argument
45 float __ieee754_expf(x) /* default IEEE double exp */ in __ieee754_expf()
46 float x; in __ieee754_expf()
53 GET_FLOAT_WORD(sx,x);
59 return x+x; /* NaN */
61 return (xsb==0)? x:0.0; /* exp(+-inf)={inf,0} */
70 hi = x-ln2HI[xsb]; lo=ln2LO[xsb]; k = 1-xsb-xsb;
72 k = invln2*x+halF[xsb];
74 hi = x - t*ln2HI[0]; /* t*ln2HI is exact here */
77 x = hi - lo;
[all …]
/device/google/contexthub/firmware/external/freebsd/lib/msun/src/
Ds_atanf.c49 atanf(float x) in atanf() argument
54 GET_FLOAT_WORD(hx,x); in atanf()
58 return x+x; /* NaN */ in atanf()
63 if(huge+x>one) return x; /* raise inexact */ in atanf()
67 x = fabsf(x); in atanf()
70 id = 0; x = ((float)2.0*x-one)/((float)2.0+x); in atanf()
72 id = 1; x = (x-one)/(x+one); in atanf()
76 id = 2; x = (x-(float)1.5)/(one+(float)1.5*x); in atanf()
78 id = 3; x = -(float)1.0/x; in atanf()
82 z = x*x; in atanf()
[all …]
De_expf.c46 __ieee754_expf(float x) in __ieee754_expf() argument
52 GET_FLOAT_WORD(hx,x); in __ieee754_expf()
59 return x+x; /* NaN */ in __ieee754_expf()
61 return (xsb==0)? x:0.0; /* exp(+-inf)={inf,0} */ in __ieee754_expf()
62 if(x > o_threshold) return huge*huge; /* overflow */ in __ieee754_expf()
63 if(x < u_threshold) return twom100*twom100; /* underflow */ in __ieee754_expf()
69 hi = x-ln2HI[xsb]; lo=ln2LO[xsb]; k = 1-xsb-xsb; in __ieee754_expf()
71 k = invln2*x+halF[xsb]; in __ieee754_expf()
73 hi = x - t*ln2HI[0]; /* t*ln2HI is exact here */ in __ieee754_expf()
76 STRICT_ASSIGN(float, x, hi - lo); in __ieee754_expf()
[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
119 x.sample_rate = 48000;\
120 x.channels = 2;\
121 x.pcm_width = 16;\
122 x.id = a; } while(0)
124 #define START_TIME_XA_PROFILER(x) do { set_ccount(0); \ argument
125 x.cstart=read_ccount(); } while(0)
126 #define STOP_TIME_XA_PROFILER(x) do { x.cstop =read_ccount(); \ argument
127 x.cycles += (x.cstop - x.cstart); } while(0)
128 #define COMPUTE_MHZ_XA_PROFILER(x, a, b, c) do { xa_compute_mcps(&x, a, b, c); } while(0) argument
[all …]
/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/google/coral/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/dragonboard/db845c/firmware/
Dadsp.b131x%x, 0x%x, 0x%x)��qurt_elite_memorymap.cpp:qurt_elite_memorymap_add_remove_pool_page poolID:(%d, …
/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
Dvec.h49 float x, y, z; member
53 float x, y, z, w; member
57 static inline void initVec3(struct Vec3 *v, float x, float y, float z) { in initVec3() argument
59 v->x = x; in initVec3()
68 v->x += w->x; in vec3Add()
79 u->x = v->x + w->x; in vec3AddVecs()
88 v->x -= w->x; in vec3Sub()
99 u->x = v->x - w->x; in vec3SubVecs()
107 v->x *= c; in vec3ScalarMul()
116 return v->x * w->x + v->y * w->y + v->z * w->z; in vec3Dot()
[all …]
/device/generic/opengl-transport/host/commands/emugen/tests/t.001/input/
Dfoo.types5 FooEnum 32 %08x
6 FooVoid 0 %x
8 FooChar* 32 0x%08x
9 void* 32 0x%08x
10 void*const* 32 0x%08x
11 FooStruct* 32 0x%08x
12 uint32_t* 32 0x%08x
/device/google/cuttlefish/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
25 THREAD_ANNOTATION_ATTRIBUTE__(capability(x))
30 #define GUARDED_BY(x) \ argument
31 THREAD_ANNOTATION_ATTRIBUTE__(guarded_by(x))
33 #define PT_GUARDED_BY(x) \ argument
34 THREAD_ANNOTATION_ATTRIBUTE__(pt_guarded_by(x))
69 #define ASSERT_CAPABILITY(x) \ argument
70 THREAD_ANNOTATION_ATTRIBUTE__(assert_capability(x))
[all …]
/device/generic/goldfish-opengl/system/vulkan_enc/
Dvulkan_enc_unittests.cpp81 int x = 0; in TEST() local
88 tasks.push_back([&x] { ++x; }); in TEST()
97 EXPECT_GE(x, 1); in TEST()
107 std::atomic<int> x { 0 }; in TEST() local
112 tasks.push_back([&x] { ++x; }); in TEST()
119 EXPECT_EQ(x, 8); in TEST()
128 std::atomic<int> x { 0 }; in TEST() local
135 tasks1.push_back([&x] { ++x; }); in TEST()
145 EXPECT_EQ(x, 8); in TEST()
160 std::atomic<int> x { 0 }; in TEST() local
[all …]
/device/google/contexthub/firmware/os/platform/stm32/inc/plat/
Dgpio.h45 #define GPIO_PA(x) ((GPIO_PORTA << GPIO_PORT_SHIFT) + (x)) argument
46 #define GPIO_PB(x) ((GPIO_PORTB << GPIO_PORT_SHIFT) + (x)) argument
47 #define GPIO_PC(x) ((GPIO_PORTC << GPIO_PORT_SHIFT) + (x)) argument
48 #define GPIO_PD(x) ((GPIO_PORTD << GPIO_PORT_SHIFT) + (x)) argument
49 #define GPIO_PE(x) ((GPIO_PORTE << GPIO_PORT_SHIFT) + (x)) argument
50 #define GPIO_PF(x) ((GPIO_PORTF << GPIO_PORT_SHIFT) + (x)) argument
51 #define GPIO_PG(x) ((GPIO_PORTG << GPIO_PORT_SHIFT) + (x)) argument
52 #define GPIO_PH(x) ((GPIO_PORTH << GPIO_PORT_SHIFT) + (x)) argument
53 #define GPIO_PI(x) ((GPIO_PORTI << GPIO_PORT_SHIFT) + (x)) argument

12345678910>>...15