Lines Matching refs:cc
40 enum fcc_type cc;
47 cc = fcc_unordered;
49 cc = fcc_equal;
52 cc = fcc_greater;
54 cc = fcc_less;
55 else { /* signs the same, compute magnitude cc */
57 cc = fcc_greater;
59 cc = fcc_less;
62 cc = fcc_equal; /* same infinity */
64 cc = fcc_greater;
66 cc = fcc_less;
69 if (n > 0) cc = fcc_greater;
70 else if (n < 0) cc = fcc_less;
71 else cc = fcc_equal;
74 switch (cc) { /* negative numbers */
76 cc = fcc_greater;
79 cc = fcc_less;
83 return (cc);