Lines Matching defs:full
33 u32 full;
41 #define dfixed_mul(A, B) ((u64)((u64)(A).full * (B).full + 2048) >> 12)
42 #define dfixed_init(A) { .full = dfixed_const((A)) }
43 #define dfixed_init_half(A) { .full = dfixed_const_half((A)) }
44 #define dfixed_trunc(A) ((A).full >> 12)
45 #define dfixed_frac(A) ((A).full & ((1 << 12) - 1))
58 if (A.full > dfixed_const(non_frac))
66 u64 tmp = ((u64)A.full << 13);
68 do_div(tmp, B.full);