Home | History | Annotate | Download | only in gcc

Lines Matching refs:cst

58   static double_int from_uhwi (unsigned HOST_WIDE_INT cst);
59 static double_int from_shwi (HOST_WIDE_INT cst);
204 /* Constructs double_int from integer CST. The bits over the precision of
208 double_int::from_shwi (HOST_WIDE_INT cst)
211 r.low = (unsigned HOST_WIDE_INT) cst;
212 r.high = cst < 0 ? -1 : 0;
227 /* Constructs double_int from unsigned integer CST. The bits over the
231 double_int::from_uhwi (unsigned HOST_WIDE_INT cst)
234 r.low = cst;
283 /* Returns value of CST as a signed number. CST must satisfy
292 /* Returns value of CST as an unsigned number. CST must satisfy
301 /* Returns true if CST fits in unsigned HOST_WIDE_INT. */
374 /* Returns true if CST is zero. */
382 /* Returns true if CST is one. */
390 /* Returns true if CST is minus one. */
398 /* Returns true if CST is negative. */
422 /* Return number of set bits of CST. */