Lines Matching refs:symbol
484 static void learn_symbol(unsigned char *symbol, int len) in learn_symbol() argument
489 token_profit[ symbol[i] + (symbol[i + 1] << 8) ]++; in learn_symbol()
493 static void forget_symbol(unsigned char *symbol, int len) in forget_symbol() argument
498 token_profit[ symbol[i] + (symbol[i + 1] << 8) ]--; in forget_symbol()
655 const char *symbol = (char *)se->sym + 1; in may_be_linker_script_provide_symbol() local
661 if (symbol[0] != '_' || symbol[1] != '_') in may_be_linker_script_provide_symbol()
665 if (!memcmp(symbol + 2, "start_", 6)) in may_be_linker_script_provide_symbol()
669 if (!memcmp(symbol + 2, "stop_", 5)) in may_be_linker_script_provide_symbol()
673 if (!memcmp(symbol + 2, "end_", 4)) in may_be_linker_script_provide_symbol()
677 if (!memcmp(symbol + len - 6, "_start", 6)) in may_be_linker_script_provide_symbol()
681 if (!memcmp(symbol + len - 4, "_end", 4)) in may_be_linker_script_provide_symbol()