Searched refs:A (Results 1 – 2 of 2) sorted by relevance
35 #define dfixed_const(A) (u32)(((A) << 12))/* + ((B + 0.000122)*4096)) */ argument36 #define dfixed_const_half(A) (u32)(((A) << 12) + 2048) argument37 #define dfixed_const_666(A) (u32)(((A) << 12) + 2731) argument38 #define dfixed_const_8(A) (u32)(((A) << 12) + 3277) argument39 #define dfixed_mul(A, B) ((u64)((u64)(A).full * (B).full + 2048) >> 12) argument40 #define dfixed_init(A) { .full = dfixed_const((A)) } argument41 #define dfixed_init_half(A) { .full = dfixed_const_half((A)) } argument42 #define dfixed_trunc(A) ((A).full >> 12) argument43 #define dfixed_frac(A) ((A).full & ((1 << 12) - 1)) argument45 static inline u32 dfixed_floor(fixed20_12 A) in dfixed_floor() argument[all …]
400 #define va_start(ap, A) (void) ((ap) = (((char *) &(A)) + (_bnd (A,_AUPBND)))) argument