Lines Matching defs:value
75 // zvalue: the main awk value type
99 struct zstring *zspr; // Global to receive sprintf() string value
274 // Elements of the hash table (key/value pairs)
284 // containing a key/value pair. The zlist slot entries are numbered from 0 to
287 // of the original hash value.
302 #define NO_EXIT_STATUS (9999987) // value unlikely to appear in exit stmt
521 // It's a special value used for "uninitialized" field vars
1527 // push placeholder for return value, push placeholder for return addr,
1733 // the built-in function arguments described below, the value of
1845 gencd(opnotnot); // replace TT.stack top with truth value
1884 #define CALLED_BY_PRINT 99987 // Arbitrary, different from any real rbp value
2328 // Need to return uninit value if falling off end of function.
2792 // uninit value needed for eventual reference to .vst in zstring_release()
2812 // increase the value of NF; create any intervening TT.fields with the
2813 // uninitialized value; and cause the value of $0 to be recomputed, with the
2814 // TT.fields being separated by the value of OFS.]
2871 // Fetching non-existent field gets uninit string value; no change to NF!
2918 // Set and return logical (0/1) val of top TT.stack value; flag value as NUM.
3213 // FIXME TODO return value never used. What if assign to var not in globals?
3214 static int assign_global(char *var, char *value)
3224 // via -v option or by assignment_arg() it will here be assigned a string value.
3234 value = xstrdup(value);
3235 *v = new_str_val(escape_str(value, 0));
3236 xfree(value);
3622 // if one is numeric and the other has a string value that is a numeric
3624 // value. Otherwise, operands shall be converted to strings as required
3634 // The value of the comparison expression shall be 1 if the relation is
3888 push_int_val(0); // return value placeholder
4123 // fake return value for now
4346 static void insert_argv_map(struct zvalue *map, int key, char *value)
4352 *v = new_str_val(value);