Lines Matching defs:storage
52 static char *expand_tabs(char *line, char **storage, size_t *storage_len);
1857 struct symbol_lookup_storage *storage = disinfo;
1860 storage->branch_addr = value;
1862 storage->pcrel_load_addr = value;
1883 struct symbol_lookup_storage storage;
1909 disasm = LLVMCreateDisasm(triplet, &storage, 0, NULL,
1947 storage.branch_addr = 0;
1948 storage.pcrel_load_addr = 0;
1957 if (storage.branch_addr != 0) {
1959 storage.branch_addr);
1968 if (storage.pcrel_load_addr != 0) {
1970 storage.pcrel_load_addr);
1974 storage.pcrel_load_addr);
2024 * existing or new line, storage is updated if a new line is allocated. If
2027 static char *expand_tabs(char *line, char **storage, size_t *storage_len)
2076 free(*storage);
2077 *storage = new_line;