Lines Matching refs:vdouble
1325 value->vdouble = atof((const char*) value->ptr); // converts from string to double in GetValue()
1326 value->ptr = &value->vdouble; in GetValue()
2913 double vdouble; in is_bool_str() local
2944 vdouble = atof(str); in is_bool_str()
2945 *pbool = (vdouble != 0) ? TRUE : FALSE; in is_bool_str()
2972 *pint = round(value->vdouble); in binn_get_int32()
3004 *pint = round(value->vdouble); in binn_get_int64()
3041 *pfloat = value->vdouble; in binn_get_double()
3081 *pbool = (value->vdouble != 0) ? TRUE : FALSE; in binn_get_bool()
3106 value->vdouble = value->vfloat; in binn_get_str()
3108 snprintf(buf, sizeof(buf), "%g", value->vdouble); in binn_get_str()