Searched defs:residue (Results 1 - 5 of 5) sorted by relevance

/arch/mips/math-emu/
H A Ddp_tint.c26 u64 residue; local
63 residue = xm;
65 sticky = residue != 0;
68 residue = xm << (64 - DP_FBITS + xe);
69 round = (residue >> 63) != 0;
70 sticky = (residue << 1) != 0;
H A Ddp_tlong.c26 u64 residue; local
66 residue = xm;
68 sticky = residue != 0;
74 residue = xm << (xe + 1);
75 residue <<= 63 - DP_FBITS;
76 round = (residue >> 63) != 0;
77 sticky = (residue << 1) != 0;
H A Dsp_tint.c26 u32 residue; local
66 residue = xm;
68 sticky = residue != 0;
74 residue = xm << (xe + 1);
75 residue <<= 31 - SP_FBITS;
76 round = (residue >> 31) != 0;
77 sticky = (residue << 1) != 0;
H A Dsp_tlong.c27 u32 residue; local
67 residue = xm;
69 sticky = residue != 0;
72 residue = xm << (32 - SP_FBITS + xe);
73 round = (residue >> 31) != 0;
74 sticky = (residue << 1) != 0;
/arch/arm/include/asm/mach/
H A Ddma.h22 int (*residue)(unsigned int, dma_t *); /* optional */ member in struct:dma_ops

Completed in 446 milliseconds