Lines Matching defs:from
160 // EOF (use -1 from stdio.h)
284 // containing a key/value pair. The zlist slot entries are numbered from 0 to
285 // count-1, so need to add one to distinguish from unused. The probe sequence
286 // is borrowed from Python dict, using the "perturb" idea to mix in upper bits
420 // This is called from zlist_append() and add_stack() in run
499 static struct zstring *zstring_copy(struct zstring *to, struct zstring *from)
501 return zstring_update(to, 0, from->str, from->size);
504 static struct zstring *zstring_extend(struct zstring *to, struct zstring *from)
506 return zstring_update(to, to->size, from->str, from->size);
549 static void zvalue_copy(struct zvalue *to, struct zvalue *from)
551 if (IS_RX(from)) *to = *from;
554 *to = *from;
750 // Here if getting from progfile(s).
1532 // the location slots will be chained from the symbol table
1884 #define CALLED_BY_PRINT 99987 // Arbitrary, different from any real rbp value
2459 // Sorry, we can't tell where this was called from, for now at least.
2649 // Differs from rx_find() in that FS cannot match null (empty) string.
2662 *start += p - s; // offsets from original string
3456 // appearing in the string repl shall be replaced by the string from in
3799 ////// FIXME refcnt -- prob. don't need to copy from TT.stack?
3843 // init the pushed arg from the type of the locals table.
3871 // Remove the local args (not supplied by caller) from TT.stack, check to
4109 // 0 tkeof: (nothing; plain getline) from current data file
4110 // 1 tkeof: (lvalue) from current data file
4111 // 0 tklt: (nothing) from named file in 'stream'
4112 // 1 tklt: (lvalue) from named file in 'stream'
4113 // 0 tkpipe: (nothing) from piped command in 'stream'
4114 // 1 tkpipe: (lvalue) from piped command in 'stream'
4329 // is to allow the TT.stack to be readjusted after an 'exit' from a function.
4336 // If exit from function, TT.stack will be loaded with args etc. Clean it.
4410 // pushed arg from the type of the globals table.