Searched refs:symbol (Results 1 - 25 of 285) sorted by relevance

1234567891011>>

/freebsd-13-stable/tools/build/cross-build/
H A Dlocal-link.h31 #define libbsd_link_warning(symbol, msg) \
32 static const char libbsd_emit_link_warning_##symbol[] \
33 __attribute__((__used__,__section__(".gnu.warning." #symbol))) = msg;
35 #define libbsd_link_warning(symbol, msg)
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_asm.h46 # define ASM_HIDDEN(symbol) .hidden symbol
47 # define ASM_TYPE_FUNCTION(symbol) .type symbol, %function
48 # define ASM_SIZE(symbol) .size symbol, .-symbol
49 # define ASM_SYMBOL(symbol) symbol
50 # define ASM_SYMBOL_INTERCEPTOR(symbol) symbo
[all...]
/freebsd-13-stable/contrib/openpam/lib/libpam/
H A Dopenpam_dlfunc.h39 dlfunc(void *handle, const char *symbol) argument
42 return ((dlfunc_t)dlsym(handle, symbol));
/freebsd-13-stable/lib/libc/sys/
H A Dcompat-stub.c42 * for each compat symbol, but the bfd linker in base rejects that.
45 #define __compat_nosys(symbol, version) \
46 int __compat_enosys ## symbol(void); \
48 __compat_enosys ## symbol(void) \
53 __sym_compat(symbol, __compat_enosys ## symbol, version)
/freebsd-13-stable/usr.sbin/crunch/crunchide/
H A Dextern.h45 int in_keep_list(const char *symbol);
H A Dcrunchide.c29 * crunchide.c - tiptoes through a symbol table, hiding all defined
53 * relative reloc from a global symbol, other than PIC? The
54 * solution is to not hide the symbol from the linker in this case,
83 void add_to_keep_list(char *symbol);
133 "usage: %s [-k <symbol-name>] [-f <keep-list-file>] <files> ...\n",
146 add_to_keep_list(char *symbol) argument
154 if((cmp = strcmp(symbol, curp->sym)) <= 0) break;
160 if(newp) newp->sym = strdup(symbol);
172 in_keep_list(const char *symbol) argument
180 if((cmp = strcmp(symbol, cur
189 char symbol[1024]; local
[all...]
/freebsd-13-stable/contrib/xz/src/liblzma/rangecoder/
H A Dprice.h53 const uint32_t bit_levels, uint32_t symbol)
56 symbol += UINT32_C(1) << bit_levels;
59 const uint32_t bit = symbol & 1;
60 symbol >>= 1;
61 price += rc_bit_price(probs[symbol], bit);
62 } while (symbol != 1);
70 uint32_t bit_levels, uint32_t symbol)
76 const uint32_t bit = symbol & 1;
77 symbol >>= 1;
52 rc_bittree_price(const probability *const probs, const uint32_t bit_levels, uint32_t symbol) argument
69 rc_bittree_reverse_price(const probability *const probs, uint32_t bit_levels, uint32_t symbol) argument
/freebsd-13-stable/sys/contrib/libsodium/dist-build/
H A Dgenerate-emscripten-symbols.sh8 while read symbol standard sumo; do
14 eval "defined_${symbol}=yes"
16 eval "defined_${symbol}=no"
23 while read symbol; do
24 eval "found=\$defined_${symbol}"
26 echo "$symbol"
29 echo "*** [$symbol] was not expected ***" >&2
39 while read symbol ; do
43 out="${out}\"${symbol}\""
/freebsd-13-stable/sys/dev/aic7xxx/aicasm/
H A Daicasm_gram.y89 static void initialize_symbol(symbol_t *symbol);
99 static void test_readable_symbol(symbol_t *symbol);
100 static void test_writable_symbol(symbol_t *symbol);
101 static void type_check(symbol_t *symbol, expression_t *expression, int and_op);
103 static void add_conditional(symbol_t *symbol);
425 symbol_t *symbol;
427 symbol = $1;
428 if (symbol->type != CONST) {
433 if (symbol->info.cinfo->value > 4) {
438 $$ = (0x1 << symbol
[all...]
H A Daicasm_symbol.c2 * Aic7xxx SCSI host adapter firmware asssembler symbol table implementation
75 perror("Unable to create new symbol");
81 stop("Unable to strdup symbol name", EX_SOFTWARE);
87 symbol_delete(symbol_t *symbol) argument
92 key.data = symbol->name;
93 key.size = strlen(symbol->name);
96 switch(symbol->type) {
100 if (symbol->info.rinfo != NULL)
101 free(symbol->info.rinfo);
104 if (symbol
224 symlist_add(symlist_t *symlist, symbol_t *symbol, int how) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/
H A DCPPLanguageRuntime.cpp67 line_entry_helper(Target &target, const SymbolContext &sc, Symbol *symbol, argument
94 optional_info.callable_symbol = *symbol;
209 Symbol *symbol = nullptr; local
217 symbol = sc.symbol;
219 if (symbol == nullptr)
222 llvm::StringRef vtable_name(symbol->GetName().GetStringRef());
258 symbol = sc.symbol;
263 (symbol
352 Symbol *symbol; local
[all...]
/freebsd-13-stable/lib/libifconfig/
H A Dlibifconfig_sfp_tables.tpl.c35 const char *symbol; /* symbolic name */ member in struct:sfp_enum_metadata
43 while (table->value != value && table->symbol != NULL)
45 return (table->symbol != NULL ? table : NULL);
66 local symbol = string.upper(name).."_"..sym
69 .value = {*symbol*},
70 .symbol = "{*symbol*}",
94 return (metadata->symbol);
/freebsd-13-stable/crypto/heimdal/lib/asn1/
H A Dsymbol.h103 struct symbol;
123 struct symbol *symbol; member in struct:type
148 struct symbol { struct
156 typedef struct symbol Symbol;
/freebsd-13-stable/contrib/byacc/test/
H A Derr_inherit1.y8 struct symbol { class c; type t; name id; };
9 typedef struct symbol symbol;
11 struct namelist { symbol *s; struct namelist *next; };
14 extern symbol *mksymbol(type t, class c, name id);
H A Dinherit1.y8 struct symbol { class c; type t; name id; };
9 typedef struct symbol symbol;
11 struct namelist { symbol *s; struct namelist *next; };
14 extern symbol *mksymbol(type t, class c, name id);
H A Dbtyacc_destroy1.y10 struct symbol { class c; type t; name id; };
11 typedef struct symbol symbol;
13 struct namelist { symbol *s; struct namelist *next; };
18 symbol ss;
21 extern symbol *mksymbol(type t, class c, name id);
H A Dbtyacc_destroy2.y10 struct symbol { class c; type t; name id; };
11 typedef struct symbol symbol;
13 struct namelist { symbol *s; struct namelist *next; };
18 symbol ss;
21 extern symbol *mksymbol(type t, class c, name id);
H A Dbtyacc_destroy3.y13 struct symbol { class c; type t; name id; };
14 typedef struct symbol symbol;
16 struct namelist { symbol *s; struct namelist *next; };
21 symbol ss;
24 extern symbol *mksymbol(type t, class c, name id);
H A Derr_inherit2.y8 struct symbol { class c; type t; name id; };
9 typedef struct symbol symbol;
11 struct namelist { symbol *s; struct namelist *next; };
14 extern symbol *mksymbol(type t, class c, name id);
/freebsd-13-stable/contrib/byacc/
H A Dmkpar.c16 static action *add_reduce(action *actions, int ruleno, int symbol);
80 Value_t symbol; local
90 symbol = accessing_symbol[k];
91 if (ISTOKEN(symbol))
95 temp->symbol = symbol;
97 temp->prec = symbol_prec[symbol];
99 temp->assoc = symbol_assoc[symbol];
133 int symbol)
138 for (next = actions; next && next->symbol < symbo
131 add_reduce(action *actions, int ruleno, int symbol) argument
229 int symbol; local
[all...]
H A Dlr0.c5 static core *new_state(int symbol);
6 static Value_t get_state(int symbol);
47 int symbol; local
59 symbol = *itemp;
60 if (symbol >= 0)
63 symbol_count[symbol]++;
98 Value_t symbol; local
105 symbol = shift_symbol[i];
107 while (j > 0 && shift_symbol[j - 1] > symbol)
112 shift_symbol[j] = symbol;
160 get_state(int symbol) argument
255 Value_t symbol; local
284 new_state(int symbol) argument
[all...]
/freebsd-13-stable/contrib/xz/src/liblzma/lzma/
H A Dlzma_decoder.c64 symbol = 1; \
67 rc_bit(probs[symbol], , , seq ## _BITTREE); \
68 } while (symbol < limit); \
69 target += symbol - limit; \
119 symbol = 1; \
123 rc_bit_case(ld.low[pos_state][symbol], , , seq ## _LOW0); \
124 rc_bit_case(ld.low[pos_state][symbol], , , seq ## _LOW1); \
125 rc_bit_case(ld.low[pos_state][symbol], , , seq ## _LOW2); \
126 target = symbol - LEN_LOW_SYMBOLS + MATCH_LEN_MIN; \
132 rc_bit_case(ld.mid[pos_state][symbol], , , \
273 uint32_t symbol; member in struct:__anon6654
333 uint32_t symbol = coder->symbol; local
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBLocationToDWARFExpression.h25 /// Converts a location information from a PDB symbol to a DWARF expression
28 /// The module \a symbol belongs to.
30 /// \param[in] symbol
31 /// The symbol with a location information to convert.
41 /// The DWARF expression corresponding to the location data of \a symbol.
44 const llvm::pdb::PDBSymbolData &symbol,
H A DPDBLocationToDWARFExpression.cpp67 ModuleSP module, const PDBSymbolData &symbol,
84 switch (symbol.getLocationType()) {
93 uint32_t section_id = symbol.getAddressSection();
99 uint32_t offset = symbol.getAddressOffset();
109 auto reg_id = symbol.getRegisterId();
111 if (auto fd = GetCorrespondingFrameData(symbol.getSession(), ranges)) {
114 int32_t offset = symbol.getOffset();
141 int32_t offset = symbol.getOffset();
150 uint32_t reg_num = GetLLDBRegisterNumber(arch_type, symbol.getRegisterId());
165 Variant value = symbol
66 ConvertPDBLocationToDWARFExpression( ModuleSP module, const PDBSymbolData &symbol, const Variable::RangeList &ranges, bool &is_constant) argument
[all...]
/freebsd-13-stable/contrib/ntp/lib/isc/include/isc/
H A Dbacktrace.h23 * dependent way when available. It also manages an internal symbol table
54 const char *symbol; member in struct:isc_backtrace_symmap
91 * Returns the content of the internal symbol table of the given index.
92 * On success, *addrsp and *symbolp point to the address and the symbol of
94 * range of the symbol table, ISC_R_RANGE will be returned.
112 * Searches the internal symbol table for the symbol that most matches the

Completed in 211 milliseconds

1234567891011>>