/device/google/contexthub/firmware/external/freebsd/inc/sys/ |
D | endian.h | 38 #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/google/contexthub/firmware/inc/platform/stm32f4xx/ |
D | gpio.h | 45 #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
|
/device/google/contexthub/lib/libm/ |
D | fdlibm.h | 62 #define FLT_UWORD_IS_FINITE(x) 1 argument 63 #define FLT_UWORD_IS_NAN(x) 0 argument 64 #define FLT_UWORD_IS_INFINITE(x) 0 argument 71 #define FLT_UWORD_IS_FINITE(x) ((x)<0x7f800000L) argument 72 #define FLT_UWORD_IS_NAN(x) ((x)>0x7f800000L) argument 73 #define FLT_UWORD_IS_INFINITE(x) ((x)==0x7f800000L) argument 111 #define FLT_UWORD_IS_ZERO(x) ((x)<0x00800000L) argument 112 #define FLT_UWORD_IS_SUBNORMAL(x) 0 argument 118 #define FLT_UWORD_IS_ZERO(x) ((x)==0) argument 119 #define FLT_UWORD_IS_SUBNORMAL(x) ((x)<0x00800000L) argument
|
D | wf_asin.c | 26 float asinf(float x) /* wrapper asinf */ in asinf() 62 double asin(double x) in asin()
|
D | wf_atan2.c | 25 float atan2f(float y, float x) /* wrapper atan2f */ in atan2f() 37 double atan2(double y, double x) in atan2()
|
D | wf_fmod.c | 24 float fmodf(float x, float y) /* wrapper fmodf */ in fmodf() 64 double fmod(double x, double y) in fmod()
|
D | wf_exp.c | 32 float expf(float x) /* wrapper expf */ in expf() 94 double exp(double x) in exp()
|
D | wf_pow.c | 24 float powf(float x, float y) /* wrapper powf */ in powf() 170 double pow(double x, double y) in pow()
|
D | sf_round.c | 15 float roundf(float x) in roundf() 65 double round(double x) in round()
|
D | sf_sin.c | 19 float sinf(float x) in sinf() 53 double sin(double x) in sin()
|
D | sf_cos.c | 25 float cosf(float x) in cosf() 59 double cos(double x) in cos()
|
D | sf_floor.c | 34 float floorf(float x) in floorf() 71 double floor(double x) in floor()
|
D | sf_scalbn.c | 37 float scalbnf (float x, int n) in scalbnf() 76 double scalbn(double x, int n) in scalbn()
|
D | sf_atan.c | 68 float atanf(float x) in atanf() 120 double atan(double x) in atan()
|
/device/google/dragon/audio/hal/dsp/ |
D | drc_math.h | 70 static inline float round_int(float x) in round_int() 107 static inline float frexpf_fast(float x, int *e) in frexpf_fast() 134 float x = frexpf_fast(linear, &e); in linear_to_decibels() local 161 static inline float warp_sinf(float x) in warp_sinf() 181 static inline float warp_asinf(float x) in warp_asinf() 199 static inline int isbadf(float x) in isbadf()
|
D | drc_kernel.c | 113 static float knee_curve(struct drc_kernel *dk, float x, float k) in knee_curve() 127 static float slope_at(struct drc_kernel *dk, float x, float k) in slope_at() 148 float x = decibels_to_linear(x_db); in k_at_slope() local 206 static float knee_curveK(struct drc_kernel *dk, float x) in knee_curveK() 220 static float volume_gain(struct drc_kernel *dk, float x) in volume_gain() 364 float x = compression_diff_db; in dk_update_envelope() local 399 float x = 0.25f / eff_atten_diff_db; in dk_update_envelope() local 413 float32x4_t x, y; in max_abs_division() local 446 __m128 x, y; in max_abs_division() local 572 float32x4_t x, x2, x4, left, right, tmp1, tmp2; in dk_compress_output() local [all …]
|
/device/google/contexthub/firmware/inc/ |
D | toolchain.h | 38 #define LIKELY(x) (x) argument 39 #define UNLIKELY(x) (x) argument 66 #define SET_INTERNAL_LOCATION(x, y) _Pragma((x, y)) __root argument 68 #define SET_INTERNAL_LOCATION_ATTRIBUTES(x, y) argument 70 #define SET_EXTERNAL_APP_ATTRIBUTES(x, y, z) argument 72 #define SET_EXTERNAL_APP_VERSION(x, y, z) argument
|
/device/google/contexthub/firmware/src/platform/stm32f4xx/ |
D | dma.c | 30 #define dmaLogDebug(x) osLog(LOG_DEBUG, x "\n") argument 32 #define dmaLogDebug(x) do {} while(0) argument 71 #define STM_DMA_CR_DIR(x) ((x) << 6) argument 75 #define STM_DMA_CR_PSIZE(x) ((x) << 11) argument 77 #define STM_DMA_CR_MSIZE(x) ((x) << 13) argument 79 #define STM_DMA_CR_PL(x) ((x) << 16) argument 80 #define STM_DMA_CR_PBURST(x) ((x) << 21) argument 81 #define STM_DMA_CR_MBURST(x) ((x) << 23) argument 83 #define STM_DMA_CR_CHSEL(x) ((x) << 25) argument
|
/device/google/contexthub/firmware/inc/algos/ |
D | vec.h | 27 float x, y, z; member 31 float x, y, z, w; member 35 static inline void initVec3(struct Vec3 *v, float x, float y, float z) { in initVec3() 84 static inline void initVec4(struct Vec4 *v, float x, float y, float z, float w) { in initVec4()
|
/device/google/contexthub/firmware/external/freebsd/lib/msun/src/ |
D | math_private.h | 307 #define RETURNI(x) do { \ argument 314 #define ENTERI(x) argument 315 #define RETURNI(x) RETURNF(x) argument 463 cpackf(float x, float y) in cpackf() 473 cpack(double x, double y) in cpack() 483 cpackl(long double x, long double y) in cpackl() 499 irint(double x) in irint() 511 irint(double x) in irint() 523 irintl(long double x) in irintl() 633 #define RETURNP(x) do { \ argument [all …]
|
/device/generic/goldfish-opengl/shared/OpenglCodecCommon/ |
D | ChecksumCalculator.h | 27 #define LOG_CHECKSUMHELPER(x...) fprintf(stderr, x) argument 29 #define LOG_CHECKSUMHELPER(x...) argument
|
/device/google/contexthub/firmware/src/algos/ |
D | accel_cal.c | 48 #define ENCODE_FLOAT(x, num_digits) ((x < 0) ? "-" : ""), (int)floorf(fabsf(x)), \ argument 226 float x, float y, float z) { in accelStillnessDetection() 448 bool accelCalUpdateBias(struct accelCal_t *acc, float *x, float *y, float *z) { in accelCalUpdateBias() 470 float x, float y, float z) { in accelCalBiasSet() 478 float *x, float *y, float *z) { in accelCalBiasRemove() 485 float x, float y, float z,float temp) { in accelCalRun()
|
/device/google/contexthub/firmware/external/arm/ |
D | arm_sin_cos_f32.c | 210 float32_t x) in arm_sin_f32() 299 float32_t x) in arm_cos_f32()
|
/device/google/contexthub/util/nanoapp_sign/ |
D | nanoapp_sign.c | 31 inline uint32_t bswap32 (uint32_t x) { in bswap32() 38 #define htobe32(x) bswap32((x)) argument 39 #define htole32(x) ((uint32_t)(x)) argument 40 #define be32toh(x) bswap32((x)) argument 41 #define le32toh(x) ((uint32_t)(x)) argument
|
/device/google/contexthub/firmware/inc/platform/stm32f4xx/cmsis/ |
D | arm_math.h | 460 q63_t x) in clip_q63_to_q31() 470 q63_t x) in clip_q63_to_q15() 480 q31_t x) in clip_q31_to_q7() 490 q31_t x) in clip_q31_to_q15() 501 q63_t x, in mult32x64() 646 q31_t x, in __SSAT() 694 q31_t x, in __QADD8() 721 q31_t x, in __QSUB8() 751 q31_t x, in __QADD16() 774 q31_t x, in __SHADD16() [all …]
|