Lines Matching refs:integer
147 "external", "integer", "unsigned", "float", "string"
202 x->data.constant.value.integer = x->data.constant.value.floating;
209 x->data.constant.value.floating = x->data.constant.value.integer;
212 sfprintf(p->tmp, "%I*d", sizeof(x->data.constant.value.integer), x->data.constant.value.integer);
216 x->data.constant.value.integer = strtod(x->data.constant.value.string, &e);
222 x->data.constant.value.integer = strtoll(s, &e, 0);
224 x->data.constant.value.integer = *s != 0;
278 v.integer = (type == UNSIGNED) ? (Sfulong_t)v.floating : v.floating;
285 v.floating = (from == UNSIGNED) ? (Sfulong_t)v.integer : v.integer;
288 sfsprintf(buf, size, "%I*d", sizeof(v.integer), v.integer);
295 v.integer = *v.string != 0;