Lines Matching defs:field
36 "values.]:[field]"
45 "\n[ field ... ]\n"
104 Field_t* field;
114 Field_t* field;
226 if (!print->field || !(r->value.string.data = (char*)print->field->variable->name))
314 Field_t* field;
449 (*disc->errorf)(cx, disc, 2, "%s: not a numeric field", variable->name);
452 if (!(field = vmnewof(vm, 0, Field_t, 1, 0)))
458 field->variable = variable;
459 if (state->field)
460 lastfield = lastfield->next = field;
462 lastfield = state->field = field;
526 register Field_t* field;
575 if (!state->field)
581 for (field = state->field; field; field = field->next)
583 if (cxcast(cx, &val, field->variable, cx->state->type_number, data, NiL))
616 list(Cx_t* cx, register State_t* state, Sfio_t* op, const char* label, register Field_t* field, register Total_t* total, Cxoperand_t* key)
630 pr.field = field;
640 if (field)
641 sfprintf(op, "%*s", state->fw, field->variable->name);
688 } while (field && (field = field->next));
703 if (state->field)
726 if (list(cx, state, expr->op, NiL, state->field, bucket->total, bucket->key))
728 if (state->total->count && list(cx, state, expr->op, "OVERFLOW", state->field, state->total, NiL))
731 else if (list(cx, state, expr->op, NiL, state->field, state->total, NiL))
744 "collect numeric field value statistics",