Searched refs:symbol (Results 151 - 175 of 285) sorted by relevance

1234567891011>>

/freebsd-13-stable/usr.bin/localedef/
H A Dcollate.c122 * collating symbol's order has been determined.
128 * this is used for forward references. A collating-symbol can never
183 char *symbol; member in struct:collelem
336 /* report a line with the circular symbol */
402 rv = strcmp(c1->symbol, c2->symbol);
527 lookup_collelem(char *symbol) argument
531 srch.symbol = symbol;
617 /* leave a cookie trail in case next symbol i
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Core/
H A DDebugger.cpp181 (property_path == "target.load-script-from-symbol-file");
1102 if (prev_sc && (prev_sc->function || prev_sc->symbol)) {
1103 if (sc && (sc->function || sc->symbol)) {
1104 if (prev_sc->symbol && sc->symbol) {
1105 if (!sc->symbol->Compare(prev_sc->symbol->GetName(),
1106 prev_sc->symbol->GetType())) {
1119 if ((sc && (sc->function || sc->symbol)) && prev_sc &&
1120 (prev_sc->function == nullptr && prev_sc->symbol
[all...]
H A DDisassembler.cpp268 if (avoid_regex && sc.symbol != nullptr) {
357 if (sc.symbol != previous_symbol) {
399 if (previous_symbol != sc.symbol) {
407 previous_symbol = sc.symbol;
556 } else if (sc.symbol && sc.symbol->ValueIsAddress()) {
557 range.GetBaseAddress() = sc.symbol->GetAddressRef();
558 range.SetByteSize(sc.symbol->GetByteSize());
/freebsd-13-stable/contrib/llvm-project/lldb/source/Expression/
H A DIRExecutionUnit.cpp769 // we shouldn't be doing any symbol lookup at all without a target
790 // references to this symbol.
794 if (!candidate_sc.symbol)
796 else if (candidate_sc.symbol->GetType() != lldb::eSymbolTypeUndefined
797 || !candidate_sc.symbol->IsWeak())
802 (candidate_sc.symbol && candidate_sc.symbol->IsExternal());
803 if (candidate_sc.symbol) {
804 load_address = candidate_sc.symbol->ResolveCallableAddress(*target);
809 candidate_sc.symbol
[all...]
/freebsd-13-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
205 // Set the ID of the symbol file DWARF to the index of the OSO
207 // UserID's that get created in the symbol file.
237 return "DWARF and DWARF3 debug symbol file reader (debug map).";
283 // N_OSO entries (object files) from the symbol table and make sure that
292 // When a mach-o symbol is encoded, the n_type field is encoded in bits
317 const Symbol *symbol local
325 const Symbol *symbol = symtab->SymbolAtIndex(sym_idx); local
[all...]
/freebsd-13-stable/contrib/llvm-project/lld/MachO/
H A DInputFiles.cpp23 // A section can have multiple symbols. A symbol that does not have the
25 // definition, a symbol is always present at the beginning of each subsection. A
26 // symbol with N_ALT_ENTRY attribute does not start a new subsection and can
230 // Global defined symbol
233 // Local defined symbol
240 // Undefined symbol
253 // symbol boundaries.
260 // we can't create alt-entry symbols at this point because a later symbol
262 // symbol is assigned to. So we need to handle them in a second pass below.
269 // <= that of the current symbol
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DSymbolFilePDB.cpp122 return "Microsoft PDB debug symbol file reader.";
150 // See if any symbol file is specified through `--symfile` option.
415 llvm_unreachable("Unexpected PDB symbol!");
465 while (auto symbol = results->getNext()) {
466 switch (symbol->getSymTag()) {
477 if (auto type = ResolveTypeUID(symbol->getSymIndexId())) {
539 // different symbol's Id making it ambiguous.
633 auto symbol = m_session_up->getSymbolById(uid);
634 if (!symbol)
637 auto decl = pdb->GetDeclForSymbol(*symbol);
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Target/
H A DRegisterContextUnwind.cpp44 if (sym_ctx.symbol)
45 return sym_ctx.symbol->GetName();
147 // symbol/function information - just stick in some reasonable defaults and
157 if (m_sym_ctx.symbol) {
158 UnwindLogMsg("with pc value of 0x%" PRIx64 ", symbol name is '%s'",
165 ", no symbol/function name is known.",
176 // If we were able to find a symbol/function, set addr_range to the bounds of
177 // that symbol/function. else treat the current pc value as the start_pc and
184 // This means that whatever symbol we kicked up isn't really correct ---
186 // the function/symbol i
[all...]
H A DThreadPlanStepInstruction.cpp45 start_frame_sp->GetSymbolContext(eSymbolContextSymbol).symbol != nullptr;
71 s->Printf(" which has no symbol");
/freebsd-13-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...]
H A Darchive_ppmd8_private.h130 void Ppmd8_EncodeSymbol(CPpmd8 *p, int symbol); /* symbol = -1 means EndMarker */
/freebsd-13-stable/sys/contrib/zstd/lib/legacy/
H A Dzstd_v02.c667 /* build a fake FSE_DTable, designed to read an uncompressed bitstream where each symbol uses nbBits */
674 * FSE symbol decompression API
711 unsigned char symbol; member in struct:__anon11017
728 BYTE symbol = DInfo.symbol; local
732 return symbol;
739 BYTE symbol = DInfo.symbol; local
743 return symbol;
815 static size_t HUF_decompress4X2 (void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize); /* single-symbol decode
1154 FSE_FUNCTION_TYPE symbol = (FSE_FUNCTION_TYPE)(tableDecode[i].symbol); local
1539 typedef struct { BYTE symbol; BYTE weight; } sortedSymbol_t; member in struct:__anon11020
1864 const U32 symbol = sortedSymbols[s].symbol; local
1898 const U16 symbol = sortedList[s].symbol; local
2233 const BYTE symbol = sortedSymbols[s].symbol; local
[all...]
H A Dzstd_v05.c957 /* build a fake FSEv05_DTable, designed to read an uncompressed bitstream where each symbol uses nbBits */
965 * FSEv05 symbol decompression API
1002 unsigned char symbol; member in struct:__anon11073
1018 return DInfo.symbol;
1025 BYTE symbol = DInfo.symbol; local
1029 return symbol;
1036 BYTE symbol = DInfo.symbol; local
1040 return symbol;
1259 FSEv05_FUNCTION_TYPE symbol = (FSEv05_FUNCTION_TYPE)(tableDecode[i].symbol); local
1791 typedef struct { BYTE symbol; BYTE weight; } sortedSymbol_t; member in struct:__anon11076
2138 const U32 symbol = sortedSymbols[s].symbol; local
2171 const U16 symbol = sortedList[s].symbol; local
[all...]
H A Dzstd_v06.c1065 /* build a fake FSEv06_DTable, designed to read an uncompressed bitstream where each symbol uses nbBits */
1072 * FSE symbol decompression API
1108 unsigned char symbol; member in struct:__anon11096
1124 return DInfo.symbol;
1139 BYTE const symbol = DInfo.symbol; local
1143 return symbol;
1147 unsafe, only works if no symbol has a probability > 50% */
1152 BYTE const symbol = DInfo.symbol; local
1511 FSEv06_FUNCTION_TYPE const symbol = (FSEv06_FUNCTION_TYPE)(tableDecode[u].symbol); local
2000 typedef struct { BYTE symbol; BYTE weight; } sortedSymbol_t; member in struct:__anon11099
2270 const U32 symbol = sortedSymbols[s].symbol; local
2303 const U16 symbol = sortedList[s].symbol; local
[all...]
/freebsd-13-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
H A DFile.h294 // Pass down _installName so that if this requested symbol
301 /// Adds symbol name that this dylib exports. The corresponding
348 // First, check if requested symbol is directly implemented by this dylib.
365 // Next, check if symbol is implemented in some re-exported dylib.
436 for (const auto symbol : interface.symbols())
437 if (symbol->getArchitectures().has(arch))
438 addExportedSymbol(symbol->getName(), symbol->isWeakDefined(), true);
H A DMachOLinkingContext.cpp614 for (const auto &symbol : _exportedSymbols)
615 addInitialUndefinedSymbol(symbol.getKey());
629 for (const auto &symbol : _exportedSymbols)
630 addDeadStripRoot(symbol.getKey());
929 void MachOLinkingContext::appendOrderedSymbol(StringRef symbol, argument
932 // multiple .o files, _orderFiles maps the symbol name to a vector
938 _orderFiles[symbol].push_back(info);
953 // Have unprefixed symbol name in order file that matches this atom.
958 // Have prefixed symbol name in order file that matches atom's path.
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DStackFrameRecognizer.h112 lldb::RegularExpressionSP symbol,
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DIRForTarget.h331 /// Handle a single externally-defined symbol
333 /// \param[in] symbol
334 /// The symbol.
338 bool HandleSymbol(llvm::Value *symbol);
/freebsd-13-stable/crypto/heimdal/lib/gssapi/gssapi/
H A Dgssapi_krb5.h156 void *symbol; member in struct:gsskrb5_krb5_plugin
/freebsd-13-stable/libexec/rtld-elf/amd64/
H A Drtld_start.S48 .rtld_goto_main: # This symbol exists just to make debugging easier.
/freebsd-13-stable/contrib/bmake/unit-tests/
H A Dcond-func.mk106 # symbol 'defined' evaluates to true.
114 # A plain symbol name may start with one of the function names, in this case
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbUtil.h143 VariableInfo GetVariableNameInfo(llvm::codeview::CVSymbol symbol);
/freebsd-13-stable/sys/dev/aic7xxx/aicasm/
H A Daicasm.c412 cur_node->symbol->info.condinfo->func_num,
414 cur_node->symbol->info.condinfo->func_num,
416 cur_node->symbol->name);
573 fprintf(stdout, "\n(%s)\n", cur_func->symbol->name);
/freebsd-13-stable/usr.bin/ministat/
H A Dministat.c140 static char symbol[MAX_DS] = { ' ', 'x', '+', '*', '%', '#', '@', 'O' }; variable
245 printf("%c %3zu %13.8g %13.8g %13.8g %13.8g %13.8g", symbol[flag],
445 putchar(symbol[k]);
668 printf("%c %s\n", symbol[i+1], ds[i]->name);
/freebsd-13-stable/tools/tools/shlib-compat/
H A Dshlib-compat.py229 def append(self, symbol):
230 if (symbol.name in self.symbols):
232 (symbol.name, self.name))
233 self.symbols[symbol.name] = symbol
646 if not Config.symbol_filter.match(p['symbol']):
648 sym = Symbol(p['symbol'], p['offset'], vername, self)
656 if not p['symbol'].startswith(prefix):
658 alias = SymbolAlias(p['symbol'], prefix, p['offset'])
698 print("Parsing symbol
[all...]

Completed in 205 milliseconds

1234567891011>>