Searched refs:symbol (Results 201 - 225 of 285) sorted by relevance

1234567891011>>

/freebsd-13-stable/contrib/byacc/test/btyacc/
H A Derr_inherit3.tab.c127 struct symbol { class c; type t; name id; }; struct
128 typedef struct symbol symbol; typedef in typeref:struct:symbol
130 struct namelist { symbol *s; struct namelist *next; };
133 extern symbol *mksymbol(type t, class c, name id);
272 "$$2","$$3","$$4","illegal-symbol",
426 /* Release memory associated with symbol. */
H A Derr_inherit4.tab.c135 struct symbol { class c; type t; name id; }; struct
136 typedef struct symbol symbol; typedef in typeref:struct:symbol
138 struct namelist { symbol *s; struct namelist *next; };
141 extern symbol *mksymbol(type t, class c, name id);
293 "$$2","illegal-symbol",
445 /* Release memory associated with symbol. */
H A Dinherit1.tab.c127 struct symbol { class c; type t; name id; }; struct
128 typedef struct symbol symbol; typedef in typeref:struct:symbol
130 struct namelist { symbol *s; struct namelist *next; };
133 extern symbol *mksymbol(type t, class c, name id);
266 "$$2","illegal-symbol",
H A Dinherit2.tab.c127 struct symbol { class c; type t; name id; }; struct
128 typedef struct symbol symbol; typedef in typeref:struct:symbol
130 struct namelist { symbol *s; struct namelist *next; };
133 extern symbol *mksymbol(type t, class c, name id);
272 "$$2","$$3","illegal-symbol",
425 /* Release memory associated with symbol. */
/freebsd-13-stable/contrib/llvm-project/lldb/source/Symbol/
H A DFunction.cpp164 if (num_matches == 0 || !sc_list[0].symbol) {
170 Address callee_addr = sc_list[0].symbol->GetAddress();
172 LLDB_LOG(log, "DirectCallEdge: Invalid symbol address");
455 // return // TODO: find the symbol for the function???
/freebsd-13-stable/contrib/llvm-project/lld/lib/Driver/
H A DDarwinLdDriver.cpp166 // Export lists are one symbol per line. Blank lines are ignored.
191 /// Order files are one symbol per line. Blank lines are ignored.
226 // If arch name prefix does not match arch being linked, ignore symbol.
666 // Handle -exported_symbol <symbol>
667 for (auto symbol : parsedArgs.filtered(OPT_exported_symbol)) {
674 ctx.addExportSymbol(symbol->getValue());
692 // Handle -unexported_symbol <symbol>
693 for (auto symbol : parsedArgs.filtered(OPT_unexported_symbol)) {
700 ctx.addExportSymbol(symbol->getValue());
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/
H A DHexagonDYLDRendezvous.cpp298 Address address = list[0].symbol->GetAddress();
/freebsd-13-stable/contrib/byacc/test/
H A Dgrammar.y193 /* #include "symbol.h" */
194 typedef struct symbol {
195 struct symbol *next; /* next symbol in list */
196 char *name; /* name of symbol */
197 char *value; /* value of symbol (for defines) */
198 short flags; /* symbol attributes */
218 extern SymbolTable *new_symbol_table /* Create symbol table */
220 extern void free_symbol_table /* Destroy symbol table */
222 extern Symbol *find_symbol /* Lookup symbol nam
[all...]
/freebsd-13-stable/sys/contrib/zstd/lib/compress/
H A Dhuf_compress.c80 /* Scan input and build symbol stats */
82 if (maxCount == wtSize) return 1; /* only a single symbol in src : rle */
83 if (maxCount == 1) return 0; /* each symbol present maximum once => not compressible */
151 /* get symbol weights */
185 /* assign value within rank, symbol order */
215 * @pre The sum of the ranks of each symbol == 2^largestBits,
217 * @post The sum of the ranks of each symbol == 2^largestBits,
221 * @param lastNonNull The symbol with the lowest count in the Huffman tree.
250 /* n end at index of smallest symbol using < maxNbBits */
263 /* Get pos of last (smallest = lowest cum. count) symbol pe
547 HUF_encodeSymbol(BIT_CStream_t* bitCPtr, U32 symbol, const HUF_CElt* CTable) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/libcxx/src/
H A Dlocale.cpp5468 const char symbol = static_cast<char>(money_base::symbol); local
5473 // function'. "Space between sign and symbol or value" means that
5474 // if the sign is adjacent to the symbol, there's a space between
5481 // separate the symbol and value-or-sign with a space, we rearrange the
5483 // the symbol.
5486 // and value when the currency symbol is suppressed (by not
5488 // sep_by_space==1 as "omit the space when the currency symbol is
5497 // Move the separator to before the symbol, to place it
5498 // between the value and symbol
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/API/
H A DSBFrame.cpp226 sb_symbol.reset(frame->GetSymbolContext(eSymbolContextSymbol).symbol);
1239 if (sc.symbol)
1240 name = sc.symbol->GetName().GetCString();
1282 if (sc.symbol)
1283 name = sc.symbol->GetDisplayName().GetCString();
H A DSBModule.cpp352 sc.symbol = symtab->SymbolAtIndex(matching_symbol_indexes[i]);
353 if (sc.symbol)
367 // Give the symbol vendor a chance to add to the unified section list.
383 // Give the symbol vendor a chance to add to the unified section list.
569 // Give the symbol vendor a chance to add to the unified section list.
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DIRForTarget.cpp158 /// Returns true iff the mangled symbol is for a static guard variable.
1274 bool IRForTarget::HandleSymbol(Value *symbol) { argument
1278 lldb_private::ConstString name(symbol->getName().str().c_str());
1291 Type *symbol_type = symbol->getType();
1298 LLDB_LOG(log, "Replacing {0} with {1}", PrintValue(symbol),
1301 symbol->replaceAllUsesWith(symbol_addr_ptr);
1440 "indirect ivar symbol {0}\n",
/freebsd-13-stable/sys/contrib/openzfs/module/zstd/lib/
H A Dzstd.c901 if return == 1, srcData is a single byte symbol * srcSize times. Use RLE compression instead.
939 if return == 1, srcData is a single byte symbol * srcSize times. Use RLE compression.
950 1. count symbol occurrence from source[] into table count[] (see hist.h)
1020 FSE_count() will return the number of occurrence of the most frequent symbol.
1021 This can be used to know if there is a single symbol within 'src', and to quickly evaluate its compressibility.
1035 It is 0 if there is a single symbol within distribution.
1786 /**< build a fake FSE_CTable, designed for a flat distribution, where each symbol uses nbBits */
1798 /**< build a fake FSE_DTable, designed to read a flat distribution where each symbol uses nbBits */
1813 * FSE symbol compression API
1828 static void FSE_encodeSymbol(BIT_CStream_t* bitC, FSE_CState_t* CStatePtr, unsigned symbol);
1971 FSE_initCState2(FSE_CState_t* statePtr, const FSE_CTable* ct, U32 symbol) argument
1982 FSE_encodeSymbol(BIT_CStream_t* bitC, FSE_CState_t* statePtr, unsigned symbol) argument
2041 unsigned char symbol; member in struct:__anon10681
2072 BYTE const symbol = DInfo.symbol; local
2085 BYTE const symbol = DInfo.symbol; local
2870 FSE_FUNCTION_TYPE const symbol = (FSE_FUNCTION_TYPE)(tableDecode[u].symbol); local
7589 U32 symbol; local
7685 unsigned symbol = 0; local
8808 HUF_encodeSymbol(BIT_CStream_t* bitCPtr, U32 symbol, const HUF_CElt* CTable) argument
21810 typedef struct { BYTE symbol; BYTE weight; } sortedSymbol_t; member in struct:__anon10761
21840 const U32 symbol = sortedSymbols[s].symbol; local
21872 const U16 symbol = sortedList[s].symbol; local
26812 U32 const symbol = tableDecode[u].baseValue; local
26838 { U32 const symbol = *(const BYTE*)src; local
[all...]
/freebsd-13-stable/contrib/lutok/
H A Dstate_test.cpp62 /// Checks if a symbol is available.
65 /// \param symbol The symbol to check for.
67 /// \return True if the symbol is defined, false otherwise.
69 is_available(lutok::state& state, const char* symbol) argument
71 luaL_loadstring(raw(state), (std::string("return ") + symbol).c_str());
75 std::cout << "Symbol " << symbol << (ok ? " found\n" : " not found\n");
/freebsd-13-stable/contrib/llvm-project/lld/include/lld/ReaderWriter/
H A DMachOLinkingContext.h59 unexported // -unexported_symbol[s_list], no listed symbol exported.
138 void appendOrderedSymbol(StringRef symbol, StringRef filename);
274 /// MachO usually uses a two-level namespace, where each external symbol
276 /// the symbol's definition at runtime. Using flat namespace overrides this
279 /// an external symbol came from. At runtime dyld again searches all images
360 /// Magic symbol name stubs will need to help lazy bind.
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/JITLoader/GDB/
H A DJITLoaderGDB.cpp339 // load the symbol table right away
475 const Address jit_descriptor_addr = sym_ctx.symbol->GetAddress();
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DCOFF.h134 /// COFF symbol table entries for local symbols have been removed. This is
187 struct symbol { struct
202 /// Storage class tells where and what the symbol represents
207 IMAGE_SYM_CLASS_NULL = 0, ///< No symbol
209 IMAGE_SYM_CLASS_EXTERNAL = 2, ///< External symbol
232 /// Line number, reformatted as symbol
235 /// External symbol in dmert public lib
696 /// The import name is identical to the public symbol name
698 /// The import name is the public symbol name, but skipping the leading ?,
701 /// The import name is the public symbol nam
[all...]
/freebsd-13-stable/sys/contrib/openzfs/cmd/arc_summary/
H A Darc_summary2173 for limit, symbol in numbers:
179 result = "%0.2f%s" % (value, symbol)
H A Darc_summary3365 for limit, symbol in numbers:
371 result = "%0.1f%s" % (value, symbol)
381 not zero, include a 'less-than' symbol to avoid confusion.
/freebsd-13-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCDwarf.cpp114 // Create a symbol at in the current section for use in the line entry.
116 // Set the value of the symbol to use for the MCDwarfLineEntry.
122 // Create a (local) line entry with the symbol and the current .loc info.
472 // Create a symbol at the beginning of the line table.
476 // Set the value of the symbol, as we are at the start of the line table.
479 // Create a symbol for the end of the section (to be set when we get there).
512 // Create a symbol for the end of the prologue (to be set when we get there).
545 // This is the end of the prologue, so set the value of the symbol at the
561 // This is the end of the section, so set the value of the symbol at the end
964 // Create a symbol a
1322 emitFDESymbol(MCObjectStreamer &streamer, const MCSymbol &symbol, unsigned symbolEncoding, bool isEH) argument
1336 EmitPersonality(MCStreamer &streamer, const MCSymbol &symbol, unsigned symbolEncoding) argument
[all...]
/freebsd-13-stable/sys/kern/
H A Dlink_elf.c104 const Elf_Sym *ddbsymtab; /* The symbol table we are using */
327 * The kernel symbol table starts here.
1236 * Try and load the symbol table if it's present. (you can
1444 printf("link_elf: symbol %s undefined\n", \
1473 * Hash function for symbol table lookup. Don't even think about changing
1504 printf("link_elf_lookup_symbol: missing symbol hash table\n");
1514 printf("%s: corrupt symbol table\n", __func__);
1520 printf("%s: corrupt symbol table\n", __func__);
1757 * Symbol lookup function that can be used when the symbol index is known (ie
1758 * in relocations). It uses the symbol inde
1768 const char *symbol; local
[all...]
H A Dlink_elf_obj.c110 Elf_Sym *ddbsymtab; /* The symbol table we are using */
549 /* Update all symbol values with the offset. */
826 /* Only allow one symbol table for now */
828 "file must have exactly one symbol table");
834 link_elf_error(filename, "file has invalid symbol strings");
851 link_elf_error(filename, "lost symbol table index");
855 /* Allocate space for and load the symbol table */
869 /* Allocate space for and load the symbol strings */
1091 /* Update all symbol values with the offset. */
1334 printf("link_elf_obj: symbol
1565 const char *symbol; local
[all...]
/freebsd-13-stable/crypto/heimdal/lib/asn1/
H A Dgen.c537 fprintf (headerfile, "%s", t->symbol->name);
711 fprintf (headerfile, "%s %s;\n", t->symbol->gen_name, name);
/freebsd-13-stable/contrib/byacc/
H A Dreader.c3183 { /* "no per-symbol or per-type" default destructor */
3214 { /* "symbol" destructor */

Completed in 281 milliseconds

1234567891011>>