Searched defs:sym (Results 151 - 175 of 291) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/lzma_sdk/
H A D7zDec.c109 int sym = Ppmd7_DecodeSymbol(&ppmd, &rc.p); local
110 if (s.extra || sym < 0)
112 outBuffer[i] = (Byte)sym;
/external/chromium_org/third_party/mesa/src/src/mesa/program/
H A Dprogram_parser.h148 struct asm_symbol *sym; member in struct:asm_parser_state
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
H A Dactions.c24 Symbol *sym; local
25 for(sym = first; sym; sym = sym->next)
26 if(SubStr_eq(&sym->name, str)) return sym;
/external/clang/lib/StaticAnalyzer/Core/
H A DRangeConstraintManager.cpp286 RangeSet GetRange(ProgramStateRef state, SymbolRef sym);
291 ProgramStateRef assumeSymNE(ProgramStateRef state, SymbolRef sym,
295 ProgramStateRef assumeSymEQ(ProgramStateRef state, SymbolRef sym,
299 ProgramStateRef assumeSymLT(ProgramStateRef state, SymbolRef sym,
303 ProgramStateRef assumeSymGT(ProgramStateRef state, SymbolRef sym,
307 ProgramStateRef assumeSymGE(ProgramStateRef state, SymbolRef sym,
311 ProgramStateRef assumeSymLE(ProgramStateRef state, SymbolRef sym,
316 SymbolRef sym) const override;
337 SymbolRef sym) const {
338 const ConstraintRangeTy::data_type *T = St->get<ConstraintRange>(sym);
376 SymbolRef sym = I.getKey(); local
385 GetRange(ProgramStateRef state, SymbolRef sym) argument
[all...]
H A DSValBuilder.cpp101 SymbolRef sym = SymMgr.getRegionValueSymbol(region);
104 return loc::MemRegionVal(MemMgr.getSymbolicRegion(sym));
106 return nonloc::SymbolVal(sym);
132 SymbolRef sym = SymMgr.conjureSymbol(expr, LCtx, type, count, symbolTag);
135 return loc::MemRegionVal(MemMgr.getSymbolicRegion(sym));
137 return nonloc::SymbolVal(sym);
148 SymbolRef sym = SymMgr.conjureSymbol(stmt, LCtx, type, visitCount);
151 return loc::MemRegionVal(MemMgr.getSymbolicRegion(sym));
153 return nonloc::SymbolVal(sym);
164 SymbolRef sym local
174 SymbolRef sym = local
[all...]
H A DSymbolManager.cpp368 void SymbolReaper::markDependentsLive(SymbolRef sym) { argument
370 SymbolMapTy::iterator LI = TheLiving.find(sym);
376 if (const SymbolRefSmallVectorTy *Deps = SymMgr.getDependentSymbols(sym)) {
386 void SymbolReaper::markLive(SymbolRef sym) { argument
387 TheLiving[sym] = NotProcessed;
388 TheDead.erase(sym);
389 markDependentsLive(sym);
396 void SymbolReaper::markInUse(SymbolRef sym) { argument
397 if (isa<SymbolMetadata>(sym))
398 MetadataInUse.insert(sym);
401 maybeDead(SymbolRef sym) argument
440 isLive(SymbolRef sym) argument
[all...]
/external/elfutils/0.153/libdwfl/
H A Drelocate.c127 int symndx, GElf_Sym *sym, GElf_Word *shndx)
184 symndx, sym, shndx) == NULL))
187 if (sym->st_shndx != SHN_XINDEX)
188 *shndx = sym->st_shndx;
190 switch (sym->st_shndx)
197 sym->st_value = 0; /* Value is size, not helpful. */
202 *shndx, &sym->st_value);
213 GElf_Sym *sym, GElf_Word shndx)
216 if (sym->st_name != 0)
229 if (unlikely (sym
125 relocate_getsym(Dwfl_Module *mod, Elf *relocated, struct reloc_symtab_cache *cache, int symndx, GElf_Sym *sym, GElf_Word *shndx) argument
212 resolve_symbol(Dwfl_Module *referer, struct reloc_symtab_cache *symtab, GElf_Sym *sym, GElf_Word shndx) argument
354 GElf_Sym sym; local
[all...]
/external/elfutils/0.153/src/
H A Daddr2line.c473 GElf_Sym sym; local
474 void *arg[2] = { name, &sym };
480 if (sym.st_size != 0 && addr >= sym.st_size)
485 addr += sym.st_value;
H A Dfindtextrel.c550 GElf_Sym *sym; local
555 sym = gelf_getsym (symdata, i, &sym_mem);
556 if (sym == NULL)
559 if (sym->st_value < addr && sym->st_value > lowaddr)
561 lowaddr = sym->st_value;
564 if (sym->st_value > addr && sym->st_value < highaddr)
566 highaddr = sym->st_value;
573 sym
[all...]
/external/jpeg/
H A Djdhuff.c262 int sym = htbl->huffval[i]; local
263 if (sym < 0 || sym > 15)
/external/libvpx/libvpx/build/make/
H A Dobj_int_extract.c448 Elf32_Sym sym; local
450 parse_elf_symbol(&elf, ofst, &sym, NULL);
455 /* if (ELF32_ST_TYPE(sym.st_info) == STT_OBJECT && sym.st_name)
459 sym.st_name));
462 if (ELF32_ST_TYPE(sym.st_info) == STT_OBJECT
463 && sym.st_size == 4) {
468 parse_elf_section(&elf, sym.st_shndx, &dhdr, NULL);
475 if (sizeof(val) != sym.st_size) {
486 elf.buf + dhdr.sh_offset + sym
537 Elf64_Sym sym; local
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dcallchain.c221 call->ms.sym = cursor_node->sym;
332 struct symbol *sym; local
338 sym = node->sym;
340 if (cnode->ms.sym && sym &&
342 if (cnode->ms.sym->start != sym->start)
409 list->ms.map, list->ms.sym);
440 callchain_cursor_append(struct callchain_cursor *cursor, u64 ip, struct map *map, struct symbol *sym) argument
[all...]
/external/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDynamicLoaderPOSIXDYLD.cpp353 Symbol *sym = context.symbol; local
355 if (sym == NULL || !sym->IsTrampoline())
358 const ConstString &sym_name = sym->GetMangled().GetName(Mangled::ePreferMangled);
/external/llvm/tools/gold/
H A Dgold-plugin.cpp323 ld_plugin_symbol &sym = cf.syms.back(); local
324 sym.name = strdup(M->getSymbolName(i));
325 sym.version = NULL;
330 CannotBeHidden.insert(sym.name);
333 sym.visibility = LDPV_HIDDEN;
336 sym.visibility = LDPV_PROTECTED;
341 sym.visibility = LDPV_DEFAULT;
349 sym.comdat_key = NULL;
352 sym.def = LDPK_DEF;
355 sym
476 ld_plugin_symbol &sym = I->syms[i]; local
[all...]
/external/ltrace/
H A Dlibrary.c409 struct library_symbol *sym; local
410 for (sym = lib->symbols; sym != NULL; ) {
411 struct library_symbol *next = sym->next;
412 library_symbol_destroy(sym);
413 free(sym);
414 sym = next;
/external/lzma/C/
H A D7zDec.c109 int sym = Ppmd7_DecodeSymbol(&ppmd, &rc.p); local
110 if (s.extra || sym < 0)
112 outBuffer[i] = (Byte)sym;
/external/mesa3d/src/mesa/program/
H A Dprogram_parser.h148 struct asm_symbol *sym; member in struct:asm_parser_state
/external/oprofile/libutil++/
H A Dbfd_support.cpp126 bool objc_match(string const & sym, string const & method) argument
168 return sym == mangled;
332 bool interesting_symbol(asymbol * sym) argument
336 if (!sym->section) {
343 if (!(sym->section->flags & SEC_CODE))
347 if (!sym->name || sym->name[0] == '\0')
350 if ((strcmp("$a", sym->name) == 0) ||
351 (strcmp("$t", sym->name) == 0) ||
352 (strcmp("$d", sym
468 asymbol * sym = dbg_syms[0]; local
609 find_nearest_line(bfd_info const & b, op_bfd_symbol const & sym, bfd_vma offset, bool anon_obj) argument
[all...]
/external/qemu/distrib/jpeg-6b/
H A Djdhuff.c262 int sym = htbl->huffval[i]; local
263 if (sym < 0 || sym > 15)
/external/bison/src/
H A Dielr.c266 symbol_number sym = TRANSITION_SYMBOL (trans, j); local
267 if (nullable[sym - ntokens])
268 edge_array[nedges++] = map_goto (to_state[i], sym);
H A Dsymtab.c177 symbol_type_set (symbol *sym, uniqstr type_name, location loc) argument
181 if (sym->type_name)
182 symbol_redeclaration (sym, "%type", sym->type_location, loc);
184 sym->type_name = type_name;
185 sym->type_location = loc;
194 symbol_destructor_set (symbol *sym, code_props const *destructor) argument
196 if (sym->destructor.code)
197 symbol_redeclaration (sym, "%destructor", sym
222 symbol_destructor_get(symbol const *sym) argument
251 symbol_printer_set(symbol *sym, code_props const *printer) argument
277 symbol_printer_get(symbol const *sym) argument
306 symbol_precedence_set(symbol *sym, int prec, assoc a, location loc) argument
328 symbol_class_set(symbol *sym, symbol_class class, location loc, bool declaring) argument
357 symbol_user_token_number_set(symbol *sym, int user_token_number, location loc) argument
389 symbol_check_defined(symbol *sym) argument
405 symbol_check_defined_processor(void *sym, void *null ATTRIBUTE_UNUSED) argument
412 symbol_make_alias(symbol *sym, symbol *str, location loc) argument
441 symbol *sym = this; local
743 symbol *sym; local
753 symbol_is_dummy(const symbol *sym) argument
[all...]
H A Dtables.c54 symbol_number_to_vector_number (symbol_number sym) argument
56 return state_number_as_int (nstates) + sym - ntokens;
281 symbol_number sym = TRANSITION_SYMBOL (trans, i); local
284 if (actrow[sym] != 0)
287 conflrow[sym] = 1;
289 actrow[sym] = state_number_as_int (shift_state->number);
293 if (sym == errtoken->number)
302 symbol *sym = errp->symbols[i]; local
303 actrow[sym->number] = ACTION_NUMBER_MINIMUM;
486 save_column (symbol_number sym, state_numbe argument
529 default_goto(symbol_number sym, size_t state_count[]) argument
[all...]
/external/chromium_org/third_party/icu/source/common/
H A Dicuplug.c47 char sym[UPLUG_NAME_MAX]; /**< plugin symbol, or NULL */ member in struct:UPlugData
342 plug->sym[0]=0;
366 uprv_strncpy(plug->sym, symName, UPLUG_NAME_MAX);
368 plug->sym[0] = 0;
462 return data->sym;
520 static UPlugData* uplug_initPlugFromEntrypointAndLibrary(UPlugEntrypoint *entrypoint, const char *config, void *lib, const char *sym, argument
524 plug = uplug_allocatePlug(entrypoint, config, lib, sym, status);
544 uplug_initErrorPlug(const char *libName, const char *sym, const char *config, const char *nameOrError, UErrorCode loadStatus, UErrorCode *status) argument
553 if(sym!=NULL) {
554 uprv_strncpy(plug->sym, sy
576 uplug_initPlugFromLibrary(const char *libName, const char *sym, const char *config, UErrorCode *status) argument
607 uplug_loadPlugFromLibrary(const char *libName, const char *sym, const char *config, UErrorCode *status) argument
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A Dnfsubs.cpp483 DecimalFormatSymbols* sym = formatter->getDecimalFormatSymbols(); local
484 if (!sym) {
488 this->numberFormat = new DecimalFormat(workingDescription, *sym, status);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_build_util.cpp140 Symbol *sym = mkSymbol(file, 0, ty, offset); local
142 Instruction *insn = mkOp1(OP_VFETCH, ty, dst, sym);
163 Symbol *sym = mkSymbol(FILE_SHADER_INPUT, 0, ty, offset); local
165 Instruction *insn = mkOp1(op, ty, dst, sym);
414 Symbol *sym = new_Symbol(prog, file, fileIndex); local
416 sym->setOffset(baseAddr);
417 sym->reg.type = ty;
418 sym->reg.size = typeSizeof(ty);
420 return sym;
426 Symbol *sym local
[all...]

Completed in 2883 milliseconds

1234567891011>>