Symbol
char *Symbol;
Symbol = " += ";
Symbol = " -= ";
Symbol = " *= ";
Symbol = " /= ";
Symbol = " %= ";
Symbol = " <<= ";
Symbol = " >>= ";
Symbol = " &= ";
Symbol = " |= ";
Symbol = " ^= ";
return (Symbol);
Symbol *_new_HashSymbol(HashTable *hash, const char *name, int code,
Symbol *_del_HashSymbol(HashTable *hash, const char *name)
Symbol *_find_HashSymbol(HashTable *hash, const char *name)
Symbol symbol; /* The symbol stored in the hash-entry */
Symbol *_new_HashSymbol(HashTable *hash, const char *key, int code,
Symbol *_del_HashSymbol(HashTable *hash, const char *key);
Symbol *_find_HashSymbol(HashTable *hash, const char *key);
#define HASH_SCAN_FN(fn) int (fn)(Symbol *sym, void *context)
Symbol *sym = _find_HashSymbol(kt->actions, action);
Symbol *sym; /* The symbol table entry of the action */
Symbol *sym; /* The symbol table entry of the action */
#define ACPI_EXPORT_SYMBOL_INIT(Symbol)
#define ACPI_EXPORT_SYMBOL(Symbol)