Searched refs:symbol (Results 251 - 275 of 500) sorted by relevance

<<11121314151617181920

/freebsd-11-stable/contrib/xz/src/liblzma/lzma/
H A Dlzma_encoder_optimum_normal.c24 uint32_t match_byte, uint32_t symbol)
33 price = rc_bittree_price(subcoder, 8, symbol);
36 symbol += UINT32_C(1) << 8;
43 = offset + match_bit + (symbol >> 8);
44 const uint32_t bit = (symbol >> 7) & 1;
47 symbol <<= 1;
48 offset &= ~(match_byte ^ symbol);
50 } while (symbol < (UINT32_C(1) << 16));
809 // If we have symbols pending, return the next pending symbol.
22 get_literal_price(const lzma_lzma1_encoder *const coder, const uint32_t pos, const uint32_t prev_byte, const bool match_mode, uint32_t match_byte, uint32_t symbol) argument
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
H A DMachONormalizedFile.h84 symbol(0) { }
93 uint32_t symbol; member in struct:lld::mach_o::normalized::Relocation
135 /// Mach-O has a 32-bit and 64-bit symbol table entry (nlist), and the symbol
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBSymbol.cpp154 void SBSymbol::reset(lldb_private::Symbol *symbol) { m_opaque_ptr = symbol; } argument
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/LTO/legacy/
H A DLTOModule.h44 const GlobalValue *symbol = 0; member in struct:llvm::LTOModule::NameAndAttributes
137 /// Get the attributes for a symbol at the specified index.
144 /// Get the name of the symbol at the specified index.
153 return _symbols[index].symbol;
178 /// Add a symbol which isn't defined just yet to a list to be resolved later.
182 /// Add a defined symbol to the list.
186 /// Add a data symbol as defined to the list.
190 /// Add a function symbol as defined to the list.
194 /// Add a global symbol from module-level ASM to the defined list.
197 /// Add a global symbol fro
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Symtab/
H A DSymbolFileSymtab.cpp45 return "Reads debug symbols from an object file's symbol table.";
67 // The snippet of code below will get the indexes the module symbol table
192 nullptr, // no return type for a code symbol...
256 sc.symbol = m_objfile_sp->GetSymtab()->FindSymbolContainingFileAddress(
258 if (sc.symbol)
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpoint.cpp634 } else if (old_sc.symbol && new_sc.symbol &&
635 (old_sc.symbol == new_sc.symbol)) {
649 } else if (old_sc.symbol && new_sc.symbol) {
650 if (Mangled::Compare(old_sc.symbol->GetMangled(),
651 new_sc.symbol->GetMangled()) == 0) {
H A DBreakpointLocation.cpp40 Symbol *symbol = m_address.CalculateSymbolContextSymbol(); local
41 if (symbol && symbol->IsIndirect()) {
543 // If we don't have a comp unit, see if we have a symbol we can print.
544 if (sc.symbol) {
549 s->Indent("symbol = ");
550 s->PutCString(sc.symbol->GetName().AsCString("<unknown>"));
/freebsd-11-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBAddress.i107 GetSymbolContext() and the following can lookup symbol information for a given address.
118 are less efficient if you want more than one symbol related objects.
119 Use one of the following when you want multiple debug symbol related
124 OR'ed together to more efficiently retrieve multiple symbol objects.") GetModule;
175 symbol = property(GetSymbol, None, doc='''A read only property that returns an lldb object that represents the symbol (lldb.SBSymbol) that this address resides within.''')
H A DSBSymbolContextList.i12 "Represents a list of symbol context object. See also SBSymbolContext.
68 '''Iterate over all symbol contexts in a lldb.SBSymbolContextList
116 obj = self.GetContextAtIndex(i).symbol
133 symbols = property(get_symbol_array, None, doc='''Returns a list() of lldb.SBSymbol objects, one for each symbol in each SBSymbolContext object in this list.''')
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DPostfixExpression.h9 // This file implements support for postfix expressions found in several symbol
171 virtual ResultT Visit(SymbolNode &symbol, Node *&ref) = 0;
204 llvm::function_ref<Node *(SymbolNode &symbol)> replacer);
/freebsd-11-stable/contrib/binutils/gas/
H A DMakefile.am230 struc-symbol.h \
1011 subsegs.h $(INCDIR)/obstack.h struc-symbol.h ecoff.h \
1017 $(INCDIR)/obstack.h struc-symbol.h ecoff.h $(INCDIR)/coff/sym.h \
1022 subsegs.h $(INCDIR)/obstack.h struc-symbol.h ecoff.h \
1028 struc-symbol.h $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1054 struc-symbol.h $(srcdir)/config/bfin-defs.h $(INCDIR)/obstack.h \
1126 struc-symbol.h $(INCDIR)/opcode/i370.h $(INCDIR)/elf/i370.h \
1334 struc-symbol.h dwarf2dbg.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h \
1341 struc-symbol.h $(INCDIR)/elf/score.h $(INCDIR)/elf/reloc-macros.h \
1347 struc-symbol
[all...]
H A DMakefile.in473 struc-symbol.h \
773 subsegs.h $(INCDIR)/obstack.h struc-symbol.h ecoff.h \
780 $(INCDIR)/obstack.h struc-symbol.h ecoff.h $(INCDIR)/coff/sym.h \
786 subsegs.h $(INCDIR)/obstack.h struc-symbol.h ecoff.h \
793 struc-symbol.h $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
824 struc-symbol.h $(srcdir)/config/bfin-defs.h $(INCDIR)/obstack.h \
909 struc-symbol.h $(INCDIR)/opcode/i370.h $(INCDIR)/elf/i370.h \
1153 struc-symbol.h dwarf2dbg.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h \
1161 struc-symbol.h $(INCDIR)/elf/score.h $(INCDIR)/elf/reloc-macros.h \
1168 struc-symbol
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DObjectFile.cpp317 Symbol *symbol = symtab->FindSymbolContainingFileAddress(file_addr); local
318 if (symbol) {
319 if (symbol->ValueIsAddress()) {
320 const SectionSP section_sp(symbol->GetAddressRef().GetSection());
391 // the symbol type because the section type isn't specify if it is
398 const SymbolType symbol_type = symbol->GetType();
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntimeV2.cpp390 const Symbol *symbol = local
392 if (symbol && symbol->ValueIsAddress()) {
394 symbol->GetAddressRef().GetLoadAddress(&process->GetTarget());
402 error.SetErrorString("symbol address invalid");
406 error.SetErrorString("no symbol");
910 // Try to get the ivar offset address from the symbol table first using the
923 if (ivar_offset_symbol.symbol)
925 ivar_offset_symbol.symbol->GetLoadAddress(&target);
928 // If we didn't get the ivar offset address from the symbol tabl
[all...]
/freebsd-11-stable/contrib/binutils/bfd/
H A Dsrec.c84 (<space> <symbol> <address>)*)
87 so a short symbol table could look like:
153 structures is built to represent the symbol table (if there is
265 /* Add a new symbol found in an S-record file. */
349 /* Starting a symbol definition. */
1108 /* Return the amount of memory needed to read the symbol table. */
1116 /* Return the symbol table. */
1158 asymbol *symbol,
1161 bfd_symbol_info (symbol, ret);
1167 asymbol *symbol,
1157 srec_get_symbol_info(bfd *ignore_abfd ATTRIBUTE_UNUSED, asymbol *symbol, symbol_info *ret) argument
1165 srec_print_symbol(bfd *abfd, void * afile, asymbol *symbol, bfd_print_symbol_type how) argument
[all...]
H A Delfxx-mips.c60 the symbol and the input bfd that references it. If it turns out
65 entry for a given symbol, so their type (3) entries are keyed only
66 on the symbol. The input bfd given by the "abfd" field is somewhat
70 mips_got_entry for every symbol within it. We can therefore use the
71 mips_got_entry fields (tls_type and gotidx) to track the symbol's
76 mips_got_entries for the same symbol, each with a different input bfd.
77 We want to make sure that each symbol gets a unique GOT entry, so when
78 there's a single GOT, we use the symbol's hash entry, not the
79 mips_got_entry fields, to track a symbol's GOT index. */
82 /* The input bfd in which the symbol i
1314 _bfd_mips_elf_gprel16_with_gp(bfd *abfd, asymbol *symbol, arelent *reloc_entry, asection *input_section, bfd_boolean relocatable, void *data, bfd_vma gp) argument
1420 _bfd_mips_elf_got16_reloc(bfd *abfd, arelent *reloc_entry, asymbol *symbol, void *data, asection *input_section, bfd *output_bfd, char **error_message) argument
1441 _bfd_mips_elf_lo16_reloc(bfd *abfd, arelent *reloc_entry, asymbol *symbol, void *data, asection *input_section, bfd *output_bfd, char **error_message) argument
1496 _bfd_mips_elf_generic_reloc(bfd *abfd ATTRIBUTE_UNUSED, arelent *reloc_entry, asymbol *symbol, void *data ATTRIBUTE_UNUSED, asection *input_section, bfd *output_bfd, char **error_message ATTRIBUTE_UNUSED) argument
2357 mips_tls_got_index(bfd *abfd, bfd_vma got_index, unsigned char *tls_type, int r_type, struct bfd_link_info *info, struct mips_elf_link_hash_entry *h, bfd_vma symbol) argument
3876 bfd_vma symbol = 0; local
4754 mips_elf_create_dynamic_relocation(bfd *output_bfd, struct bfd_link_info *info, const Elf_Internal_Rela *rel, struct mips_elf_link_hash_entry *h, asection *sec, bfd_vma symbol, bfd_vma *addendp, asection *input_section) argument
[all...]
H A Dppcboot.c87 a start symbol, an end symbol, and an absolute length symbol. */
252 /* Return the amount of memory needed to read the symbol table. */
263 /* Create a symbol name based on the bfd's filename. */
294 /* Return the symbol table. */
310 /* Start symbol. */
318 /* End symbol. */
326 /* Size symbol. */
344 /* Get information about a symbol
[all...]
/freebsd-11-stable/usr.bin/localedef/
H A Dcollate.c120 * collating symbol's order has been determined.
126 * this is used for forward references. A collating-symbol can never
181 char *symbol; member in struct:collelem
331 /* report a line with the circular symbol */
397 rv = strcmp(c1->symbol, c2->symbol);
522 lookup_collelem(char *symbol) argument
526 srch.symbol = symbol;
612 /* leave a cookie trail in case next symbol i
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDebugMap.cpp46 // also for "Module::GetSymbolFile()" (so we can fixup the symbol file id.
85 // End index is one past the last valid symbol index
109 // First we find the original symbol in the .o file's symbol table
207 // Set the ID of the symbol file DWARF to the index of the OSO
209 // UserID's that get created in the symbol file.
239 return "DWARF and DWARF3 debug symbol file reader (debug map).";
285 // N_OSO entries (object files) from the symbol table and make sure that
294 // When a mach-o symbol is encoded, the n_type field is encoded in bits
319 const Symbol *symbol local
327 const Symbol *symbol = symtab->SymbolAtIndex(sym_idx); local
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DDebugger.cpp192 // 1. If this is a new function/symbol (no previous symbol/function), print
194 // 2. If this is a symbol context change (different from previous
195 // symbol/function), print
259 (property_path == "target.load-script-from-symbol-file");
1122 if (prev_sc && (prev_sc->function || prev_sc->symbol)) {
1123 if (sc && (sc->function || sc->symbol)) {
1124 if (prev_sc->symbol && sc->symbol) {
1125 if (!sc->symbol
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/
H A DIRExecutionUnit.cpp774 // we shouldn't be doing any symbol lookup at all without a target
795 // references to this symbol.
799 if (!candidate_sc.symbol)
801 else if (candidate_sc.symbol->GetType() != lldb::eSymbolTypeUndefined
802 || !candidate_sc.symbol->IsWeak())
807 (candidate_sc.symbol && candidate_sc.symbol->IsExternal());
808 if (candidate_sc.symbol) {
809 load_address = candidate_sc.symbol->ResolveCallableAddress(*target);
814 candidate_sc.symbol
[all...]
/freebsd-11-stable/contrib/gdb/gdb/
H A Dtracepoint.c120 static struct symbol *traceframe_fun;
458 struct symbol *sym;
924 /* symbol lookup etc. */
965 if (SYMBOL_CLASS (exp->elts[2].symbol) == LOC_CONST)
968 DEPRECATED_SYMBOL_NAME (exp->elts[2].symbol),
969 SYMBOL_VALUE (exp->elts[2].symbol));
972 else if (SYMBOL_CLASS (exp->elts[2].symbol) == LOC_OPTIMIZED_OUT)
975 DEPRECATED_SYMBOL_NAME (exp->elts[2].symbol));
1181 /* Add a symbol to a collection list */
1183 collect_symbol (struct collection_list *collect, struct symbol *sy
[all...]
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_ppmd8.c1168 Byte symbol; local
1171 symbol = s->Symbol;
1173 return symbol;
1181 Byte symbol; local
1184 symbol = s->Symbol;
1186 return symbol;
1203 Byte symbol; local
1206 symbol = (p->FoundState = Ppmd8Context_OneState(p->MinContext))->Symbol;
1208 return symbol;
1250 Byte symbol; local
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DRegisterContextLLDB.cpp45 if (sym_ctx.symbol)
46 return sym_ctx.symbol->GetName();
148 // symbol/function information - just stick in some reasonable defaults and
158 if (m_sym_ctx.symbol) {
159 UnwindLogMsg("with pc value of 0x%" PRIx64 ", symbol name is '%s'",
166 ", no symbol/function name is known.",
177 // If we were able to find a symbol/function, set addr_range to the bounds of
178 // that symbol/function. else treat the current pc value as the start_pc and
185 // This means that whatever symbol we kicked up isn't really correct ---
187 // the function/symbol i
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DSymbolFilePDB.cpp120 return "Microsoft PDB debug symbol file reader.";
148 // See if any symbol file is specified through `--symfile` option.
413 llvm_unreachable("Unexpected PDB symbol!");
463 while (auto symbol = results->getNext()) {
464 switch (symbol->getSymTag()) {
475 if (auto type = ResolveTypeUID(symbol->getSymIndexId())) {
537 // different symbol's Id making it ambiguous.
631 auto symbol = m_session_up->getSymbolById(uid);
632 if (!symbol)
635 auto decl = pdb->GetDeclForSymbol(*symbol);
[all...]

Completed in 242 milliseconds

<<11121314151617181920