Searched defs:v (Results 1 – 13 of 13) sorted by relevance
/liblc3-latest/src/ |
D | common.h | 88 #define LC3_CLIP(v, min, max) LC3_MIN(LC3_MAX(v, min), max) argument 89 #define LC3_SAT16(v) LC3_CLIP(v, -(1 << 15), (1 << 15) - 1) argument 90 #define LC3_SAT24(v) LC3_CLIP(v, -(1 << 23), (1 << 23) - 1) argument 92 #define LC3_ABS(v) ( (v) < 0 ? -(v) : (v) ) argument 98 #define LC3_SAT16(v) __ssat(v, 16) argument 101 #define LC3_SAT24(v) __ssat(v, 24) argument
|
D | bits.h | 95 unsigned v; member 210 LC3_HOT static inline void lc3_put_bit(lc3_bits_t *bits, int v) in lc3_put_bit() 219 struct lc3_bits *bits, unsigned v, int n) in lc3_put_bits() 247 int v = (accu->v >> accu->n) & ((1u << n) - 1); in lc3_get_bits() local
|
D | bits.c | 265 LC3_HOT void lc3_put_bits_generic(struct lc3_bits *bits, unsigned v, int n) in lc3_put_bits_generic() 349 unsigned v = (accu->v >> accu->n) & ((1u << n1) - 1); in lc3_get_bits_generic() local
|
D | tables.h | 125 int count; const float *v; member
|
D | fastmath.h | 97 volatile union { float f; int32_t s; } v; in lc3_exp2f() local
|
D | ltpf_neon.h | 197 int64x2_t v = vmovq_n_s64(0); in neon_dot() local
|
D | ltpf.c | 440 int64_t v = 0; in dot() local 705 int16_t u[128], v[128]; in lc3_ltpf_analyse() local
|
D | spec.c | 154 int v = 0; in estimate_gain() local 523 int u = 0, v = 0; in get_quantized() local
|
D | tns.c | 44 float v = 0; in dot() local
|
D | mdct.c | 259 struct lc3_complex v, vw = *(--w1); in mdct_pre_fft() local
|
/liblc3-latest/test/neon/ |
D | neon.h | 86 static int32_t vaddvq_s32(int32x4_t v) in vaddvq_s32() 92 static int64_t vaddvq_s64(int64x2_t v) in vaddvq_s64() 112 static int32x4_t vmovq_n_s32(uint32_t v) in vmovq_n_s32() 118 static int64x2_t vmovq_n_s64(int64_t v) in vmovq_n_s64() 173 static void vst1_f32(float *p, float32x2_t v) in vst1_f32() 179 static void vst1q_f32(float *p, float32x4_t v) in vst1q_f32() 275 static float32x4_t vmovq_n_f32(float v) in vmovq_n_f32() 281 static float32x2_t vrev64_f32(float32x2_t v) in vrev64_f32() 287 static float32x4_t vrev64q_f32(float32x4_t v) in vrev64q_f32()
|
/liblc3-latest/test/ |
D | sns.py | 185 def enum_mpvq(self, v): argument
|
D | ctypes.h | 115 static PyObject *__to_1d_copy(PyObject *obj, int t, void *v, int n) in __to_1d_copy() 126 static PyObject *__to_2d_copy(PyObject *obj, int t, void *v, int n1, int n2) in __to_2d_copy()
|