Lines Matching refs:symbol
426 static void learn_symbol(unsigned char *symbol, int len) in learn_symbol() argument
431 token_profit[ symbol[i] + (symbol[i + 1] << 8) ]++; in learn_symbol()
435 static void forget_symbol(unsigned char *symbol, int len) in forget_symbol() argument
440 token_profit[ symbol[i] + (symbol[i + 1] << 8) ]--; in forget_symbol()
595 const char *symbol = (char *)se->sym + 1; in may_be_linker_script_provide_symbol() local
601 if (symbol[0] != '_' || symbol[1] != '_') in may_be_linker_script_provide_symbol()
605 if (!memcmp(symbol + 2, "start_", 6)) in may_be_linker_script_provide_symbol()
609 if (!memcmp(symbol + 2, "stop_", 5)) in may_be_linker_script_provide_symbol()
613 if (!memcmp(symbol + 2, "end_", 4)) in may_be_linker_script_provide_symbol()
617 if (!memcmp(symbol + len - 6, "_start", 6)) in may_be_linker_script_provide_symbol()
621 if (!memcmp(symbol + len - 4, "_end", 4)) in may_be_linker_script_provide_symbol()