Lines Matching defs:value
1728 * propVal - property value to set
1768 * propVal - property value
2113 * Purpose: Get current value for a resource property
2119 * propVal - void pointer to a pointer of the value to be retrieved
2527 * propVal - valid resource value
2623 * propVal - property value to be set
2650 * propVal - pointer to character to contain the retrieved property value
2851 * propVal - valid resource value
3064 * Given a numeric suffix, convert the value into a number of bits that the
3065 * resulting value must be shifted.
3105 niceStrToNum(const char *value, uint64_t *num)
3113 if ((value[0] < '0' || value[0] > '9') && value[0] != '.') {
3119 *num = strtoull(value, &end, 10);
3122 * Check for ERANGE, which indicates that the value is too large to fit
3123 * in a 64-bit value.
3130 * If we have a decimal value, then do the computation with floating
3134 double fval = strtod(value, &end);
6597 /* Set to old value */