Lines Matching full:weak
95 # 1) Record all the local and weak symbols by using 'nm'
163 my %weak; # List of weak functions
168 my $weak_regex; # Match a weak function (return function)
405 # Step 1: find all the local (static functions) and weak symbols.
406 # 't' is local, 'w/W' is weak
413 $weak{$2} = $1;
432 # Sanity check on weak function. A weak function may be overwritten by
434 if (defined $weak{$ref_func}) {
435 die "$inputfile: ERROR: referencing weak function" .
512 # if this is either a local function or a weak function
515 if (!defined($locals{$text}) && !defined($weak{$text})) {
520 # if we already have a function, and this is weak, skip it
521 if (!defined($ref_func) && !defined($weak{$text}) &&