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

1234567891011>>

/freebsd-current/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-current/lib/libc/sys/
H A Dcompat-stub.c39 * for each compat symbol, but the bfd linker in base rejects that.
42 #define __compat_nosys(symbol, version) \
43 int __compat_enosys ## symbol(void); \
45 __compat_enosys ## symbol(void) \
50 __sym_compat(symbol, __compat_enosys ## symbol, version)
/freebsd-current/contrib/openpam/lib/libpam/
H A Dopenpam_dlfunc.h37 dlfunc(void *handle, const char *symbol) argument
40 return ((dlfunc_t)dlsym(handle, symbol));
/freebsd-current/usr.sbin/crunch/crunchide/
H A Dextern.h44 int in_keep_list(const char *symbol);
H A Dcrunchide.c29 * crunchide.c - tiptoes through a symbol table, hiding all defined
51 * relative reloc from a global symbol, other than PIC? The
52 * solution is to not hide the symbol from the linker in this case,
79 static void add_to_keep_list(char *symbol);
129 "usage: %s [-k <symbol-name>] [-f <keep-list-file>] <files> ...\n",
142 add_to_keep_list(char *symbol) argument
150 if((cmp = strcmp(symbol, curp->sym)) <= 0) break;
156 if(newp) newp->sym = strdup(symbol);
168 in_keep_list(const char *symbol) argument
176 if((cmp = strcmp(symbol, cur
185 char symbol[1024]; local
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_asm.h87 # define ASM_HIDDEN(symbol) .hidden symbol
89 # define ASM_TYPE_FUNCTION(symbol) .type symbol, %function
91 # define ASM_TYPE_FUNCTION(symbol) .type symbol, @function
93 # define ASM_SIZE(symbol) .size symbol, .-symbol
94 # define ASM_SYMBOL(symbol) symbo
[all...]
/freebsd-current/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-current/contrib/xz/src/liblzma/rangecoder/
H A Dprice.h54 const uint32_t bit_levels, uint32_t symbol)
57 symbol += UINT32_C(1) << bit_levels;
60 const uint32_t bit = symbol & 1;
61 symbol >>= 1;
62 price += rc_bit_price(probs[symbol], bit);
63 } while (symbol != 1);
71 uint32_t bit_levels, uint32_t symbol)
77 const uint32_t bit = symbol & 1;
78 symbol >>= 1;
53 rc_bittree_price(const probability *const probs, const uint32_t bit_levels, uint32_t symbol) argument
70 rc_bittree_reverse_price(const probability *const probs, uint32_t bit_levels, uint32_t symbol) argument
/freebsd-current/crypto/openssl/test/
H A Dmoduleloadtest.c13 * and verify the presence of one symbol, if that's given.
21 static int test_load(const char *path, const char *symbol) argument
30 ret = symbol == NULL || sd_sym(sd, symbol, &sym);
/freebsd-current/sys/dev/aic7xxx/aicasm/
H A Daicasm_gram.y87 static void initialize_symbol(symbol_t *symbol);
97 static void test_readable_symbol(symbol_t *symbol);
98 static void test_writable_symbol(symbol_t *symbol);
99 static void type_check(symbol_t *symbol, expression_t *expression, int and_op);
101 static void add_conditional(symbol_t *symbol);
423 symbol_t *symbol;
425 symbol = $1;
426 if (symbol->type != CONST) {
431 if (symbol->info.cinfo->value > 4) {
436 $$ = (0x1 << symbol
[all...]
H A Daicasm_symbol.c2 * Aic7xxx SCSI host adapter firmware asssembler symbol table implementation
73 perror("Unable to create new symbol");
79 stop("Unable to strdup symbol name", EX_SOFTWARE);
85 symbol_delete(symbol_t *symbol) argument
90 key.data = symbol->name;
91 key.size = strlen(symbol->name);
94 switch(symbol->type) {
98 if (symbol->info.rinfo != NULL)
99 free(symbol->info.rinfo);
102 if (symbol
222 symlist_add(symlist_t *symlist, symbol_t *symbol, int how) argument
[all...]
/freebsd-current/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;
208 Symbol *symbol = nullptr; local
216 symbol = sc.symbol;
218 if (symbol == nullptr)
221 llvm::StringRef vtable_name(symbol->GetName().GetStringRef());
257 symbol = sc.symbol;
262 (symbol
354 Symbol *symbol; local
[all...]
/freebsd-current/lib/libifconfig/
H A Dlibifconfig_sfp_tables.tpl.c33 const char *symbol; /* symbolic name */ member in struct:sfp_enum_metadata
41 while (table->value != value && table->symbol != NULL)
43 return (table->symbol != NULL ? table : NULL);
64 local symbol = string.upper(name).."_"..sym
67 .value = {*symbol*},
68 .symbol = "{*symbol*}",
92 return (metadata->symbol);
/freebsd-current/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_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 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);
/freebsd-current/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl_s390x.S14 .macro intercept symbol, real
16 .globl ASM_SYMBOL_INTERCEPTOR(\symbol)
17 ASM_TYPE_FUNCTION(ASM_SYMBOL_INTERCEPTOR(\symbol))
18 ASM_SYMBOL_INTERCEPTOR(\symbol):
41 ASM_SIZE(ASM_SYMBOL_INTERCEPTOR(\symbol))
/freebsd-current/crypto/heimdal/lib/asn1/
H A Dsymbol.h103 struct symbol;
127 struct symbol *symbol; member in struct:type
152 struct symbol { struct
160 typedef struct symbol Symbol;
/freebsd-current/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], , , \
278 uint32_t symbol; member in struct:__anon98
338 uint32_t symbol = coder->symbol; local
[all...]
/freebsd-current/contrib/byacc/
H A Dmkpar.c16 static action *add_reduce(action *actions, int ruleno, int symbol);
90 Value_t symbol = accessing_symbol[k]; local
92 if (ISTOKEN(symbol))
96 temp->symbol = symbol;
98 temp->prec = symbol_prec[symbol];
100 temp->assoc = symbol_assoc[symbol];
134 int symbol)
139 for (next = actions; next && next->symbol < symbol; nex
132 add_reduce(action *actions, int ruleno, int symbol) argument
239 int symbol = -1; local
[all...]
H A Dlr0.c5 static core *new_state(int symbol);
6 static Value_t get_state(int symbol);
58 int symbol = *itemp; local
60 if (symbol >= 0)
63 symbol_count[symbol]++;
97 Value_t symbol; local
106 symbol = shift_symbol[i];
107 while (j > 0 && shift_symbol[j - 1] > symbol)
112 shift_symbol[j] = symbol;
117 symbol
160 get_state(int symbol) argument
265 Value_t symbol = ritem[j]; local
285 new_state(int symbol) argument
[all...]
/freebsd-current/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,
/freebsd-current/contrib/llvm-project/compiler-rt/lib/orc/
H A Dcoff_platform.h24 const char *symbol);

Completed in 182 milliseconds

1234567891011>>