/src/lib/libcurses/ |
keymap.h | 69 wchar_t symbol; /* key symbol if key is a leaf entry */ member in union:key_entry::__anon3529636b010a 74 #define KEYMAP_LEAF 2 /* key has a symbol associated with it, either 76 * single char key that generates a symbol */ 113 wchar_t symbol; /* the symbol associated with it */ member in struct:tcdata
|
keymap.h | 69 wchar_t symbol; /* key symbol if key is a leaf entry */ member in union:key_entry::__anon3529636b010a 74 #define KEYMAP_LEAF 2 /* key has a symbol associated with it, either 76 * single char key that generates a symbol */ 113 wchar_t symbol; /* the symbol associated with it */ member in struct:tcdata
|
/src/sys/arch/atari/stand/binpatch/ |
binpatch.c | 86 char *symbol; variable in typeref:typename:char * 151 if (addr != 0 || symbol != NULL) 153 "only one address/symbol allowed"); 157 if (addr != 0 || symbol != NULL) 159 "only one address/symbol allowed"); 160 symbol = optarg; 188 if (addr == 0 && symbol == NULL) { 189 warnx("no address or symbol specified"); 201 if (symbol != NULL) { 202 nl[0].n_name = symbol; [all...] |
binpatch.c | 86 char *symbol; variable in typeref:typename:char * 151 if (addr != 0 || symbol != NULL) 153 "only one address/symbol allowed"); 157 if (addr != 0 || symbol != NULL) 159 "only one address/symbol allowed"); 160 symbol = optarg; 188 if (addr == 0 && symbol == NULL) { 189 warnx("no address or symbol specified"); 201 if (symbol != NULL) { 202 nl[0].n_name = symbol; [all...] |
/src/usr.bin/crunch/crunchide/ |
crunchide.c | 31 * crunchide.c - tiptoes through a symbol table, hiding all defined 55 * relative reloc from a global symbol, other than PIC? The 56 * solution is to not hide the symbol from the linker in this case, 82 static void add_to_keep_list(char *symbol); 131 "Usage: %s [-k keep-symbol] [-f keep-list-file] object-file\n" 145 add_to_keep_list(char *symbol) 153 if ((cmp = strcmp(symbol, curp->sym)) <= 0) 161 newp->sym = strdup(symbol); 175 in_keep_list(const char *symbol) 183 if((cmp = strcmp(symbol, curp->sym)) <= 0 193 char symbol[1024]; local in function:add_file_to_keep_list [all...] |
crunchide.c | 31 * crunchide.c - tiptoes through a symbol table, hiding all defined 55 * relative reloc from a global symbol, other than PIC? The 56 * solution is to not hide the symbol from the linker in this case, 82 static void add_to_keep_list(char *symbol); 131 "Usage: %s [-k keep-symbol] [-f keep-list-file] object-file\n" 145 add_to_keep_list(char *symbol) 153 if ((cmp = strcmp(symbol, curp->sym)) <= 0) 161 newp->sym = strdup(symbol); 175 in_keep_list(const char *symbol) 183 if((cmp = strcmp(symbol, curp->sym)) <= 0 193 char symbol[1024]; local in function:add_file_to_keep_list [all...] |
/src/usr.bin/gzip/ |
unpack.c | 43 * After the symbol count table, there is the symbol table, storing 45 * explicitly transmitted (not necessary anyway) in the symbol table. 47 * Compressed data goes after the symbol table. 55 * last level symbol count by 2 which makes it a number in 56 * range [0..254], so all levels' symbol count would fit into 1 byte. 67 * and store pointers to each level's first symbol. In addition to 72 int symbol_size; /* Size of the symbol table */ 80 char *symbol; /* The symbol table * member in struct:__anon119e99d90108 [all...] |
unpack.c | 43 * After the symbol count table, there is the symbol table, storing 45 * explicitly transmitted (not necessary anyway) in the symbol table. 47 * Compressed data goes after the symbol table. 55 * last level symbol count by 2 which makes it a number in 56 * range [0..254], so all levels' symbol count would fit into 1 byte. 67 * and store pointers to each level's first symbol. In addition to 72 int symbol_size; /* Size of the symbol table */ 80 char *symbol; /* The symbol table * member in struct:__anon119e99d90108 [all...] |
/src/lib/libexecinfo/ |
symtab.c | 51 #include "symbol.h" 60 struct symbol { struct 68 struct symbol *symbols; 75 const struct symbol *sa = a; 76 const struct symbol *sb = b; 111 warnx("Error allocating symbol table"); 127 struct symbol *s; 164 warn("Cannot allocate symbol"); 189 struct symbol *s = st->symbols;
|
symtab.c | 51 #include "symbol.h" 60 struct symbol { struct 68 struct symbol *symbols; 75 const struct symbol *sa = a; 76 const struct symbol *sb = b; 111 warnx("Error allocating symbol table"); 127 struct symbol *s; 164 warn("Cannot allocate symbol"); 189 struct symbol *s = st->symbols;
|
/src/common/dist/zlib/contrib/blast/ |
blast.c | 99 * symbol[] are the symbol values in canonical order, where the number of 105 short *symbol; /* canonically ordered symbols */ member in struct:huffman 109 * Decode a code from the stream s using huffman table h. Return the symbol or 135 int index; /* index of first code of length len in symbol table */ 150 if (code < first + count) { /* if length len, return symbol */ 153 return h->symbol[index + (code - first)]; 187 * enough bits will resolve to a symbol. If the return value is positive, then 193 int symbol; /* current symbol when stepping through length[] * local in function:construct 286 int symbol; \/* decoded symbol, extra bits for distance *\/ local in function:decomp [all...] |
blast.c | 99 * symbol[] are the symbol values in canonical order, where the number of 105 short *symbol; /* canonically ordered symbols */ member in struct:huffman 109 * Decode a code from the stream s using huffman table h. Return the symbol or 135 int index; /* index of first code of length len in symbol table */ 150 if (code < first + count) { /* if length len, return symbol */ 153 return h->symbol[index + (code - first)]; 187 * enough bits will resolve to a symbol. If the return value is positive, then 193 int symbol; /* current symbol when stepping through length[] * local in function:construct 286 int symbol; \/* decoded symbol, extra bits for distance *\/ local in function:decomp [all...] |
/src/sys/ddb/ |
db_sym.c | 59 * Initialize the kernel debugger by initializing the master symbol 60 * table. Note that if initializing the master symbol table fails, 61 * no other symbol tables can be loaded. 89 char symbol[128]; local in function:db_value_of_name 112 (void)strlcpy(symbol, name, sizeof(symbol)); 113 db_symsplit(symbol, &mod, &sym); 138 * symbol via db_forall(), prints out symbols matching 174 * "Sift" for a partial symbol. 176 * If the symbol has a qualifier (e.g., ux:vm_map) [all...] |
db_sym.c | 59 * Initialize the kernel debugger by initializing the master symbol 60 * table. Note that if initializing the master symbol table fails, 61 * no other symbol tables can be loaded. 89 char symbol[128]; local in function:db_value_of_name 112 (void)strlcpy(symbol, name, sizeof(symbol)); 113 db_symsplit(symbol, &mod, &sym); 138 * symbol via db_forall(), prints out symbols matching 174 * "Sift" for a partial symbol. 176 * If the symbol has a qualifier (e.g., ux:vm_map) [all...] |
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_symbolizer_win.cc | 106 // to the symbol search path. All the failures below are not fatal. 139 PSYMBOL_INFO symbol = (PSYMBOL_INFO)buffer; local in function:__sanitizer::WinSymbolizerTool::SymbolizePC 140 symbol->SizeOfStruct = sizeof(SYMBOL_INFO); 141 symbol->MaxNameLen = MAX_SYM_NAME; 144 (DWORD64)addr, &offset, symbol); 153 frame->info.function = internal_strdup(symbol->Name);
|
sanitizer_symbolizer_win.cc | 106 // to the symbol search path. All the failures below are not fatal. 139 PSYMBOL_INFO symbol = (PSYMBOL_INFO)buffer; local in function:__sanitizer::WinSymbolizerTool::SymbolizePC 140 symbol->SizeOfStruct = sizeof(SYMBOL_INFO); 141 symbol->MaxNameLen = MAX_SYM_NAME; 144 (DWORD64)addr, &offset, symbol); 153 frame->info.function = internal_strdup(symbol->Name);
|
/src/usr.sbin/gspa/gspa/ |
gsp_ass.h | 46 /* Structure for symbol in symbol table */ 47 typedef struct symbol { struct 52 struct symbol *next; 55 } *symbol; typedef in typeref:struct:symbol * 79 symbol sym; 145 symbol lookup(char *id, bool makeit);
|
gsp_ass.h | 46 /* Structure for symbol in symbol table */ 47 typedef struct symbol { struct 52 struct symbol *next; 55 } *symbol; typedef in typeref:struct:symbol * 79 symbol sym; 145 symbol lookup(char *id, bool makeit);
|
/src/sys/kern/ |
subr_kobj.c | 279 /* Only allow one symbol table for now */ 280 kobj_error(ko, "file has no valid symbol table"); 289 kobj_error(ko, "file has invalid symbol strings"); 326 * Allocate space for and load the symbol table. 330 kobj_error(ko, "no symbol table"); 343 * Allocate space for and load the symbol strings. 347 kobj_error(ko, "no symbol strings"); 359 * Adjust module symbol namespace, if necessary (e.g. with rump) 516 /* Update all symbol values with the offset. */ 745 * Now that we know the name, register the symbol table 899 const char *symbol; local in function:kobj_sym_lookup [all...] |
subr_kobj.c | 279 /* Only allow one symbol table for now */ 280 kobj_error(ko, "file has no valid symbol table"); 289 kobj_error(ko, "file has invalid symbol strings"); 326 * Allocate space for and load the symbol table. 330 kobj_error(ko, "no symbol table"); 343 * Allocate space for and load the symbol strings. 347 kobj_error(ko, "no symbol strings"); 359 * Adjust module symbol namespace, if necessary (e.g. with rump) 516 /* Update all symbol values with the offset. */ 745 * Now that we know the name, register the symbol table 899 const char *symbol; local in function:kobj_sym_lookup [all...] |
/src/common/dist/zlib/contrib/puff/ |
puff.c | 65 * - Catch missing end-of-block symbol error 202 * symbol[] are the symbol values in canonical order, where the number of 208 short *symbol; /* canonically ordered symbols */ member in struct:huffman 212 * Decode a code from the stream s using huffman table h. Return the symbol or 241 int index; /* index of first code of length len in symbol table */ 247 if (code - count < first) /* if length len, return symbol */ 248 return h->symbol[index + (code - first)]; 269 int index; /* index of first code of length len in symbol table */ 284 if (code - count < first) { /* if length len, return symbol */ 342 int symbol; \/* current symbol when stepping through length[] *\/ local in function:construct 440 int symbol; \/* decoded symbol *\/ local in function:codes 545 int symbol; local in function:fixed 704 int symbol; \/* decoded value *\/ local in function:dynamic [all...] |
puff.c | 65 * - Catch missing end-of-block symbol error 202 * symbol[] are the symbol values in canonical order, where the number of 208 short *symbol; /* canonically ordered symbols */ member in struct:huffman 212 * Decode a code from the stream s using huffman table h. Return the symbol or 241 int index; /* index of first code of length len in symbol table */ 247 if (code - count < first) /* if length len, return symbol */ 248 return h->symbol[index + (code - first)]; 269 int index; /* index of first code of length len in symbol table */ 284 if (code - count < first) { /* if length len, return symbol */ 342 int symbol; \/* current symbol when stepping through length[] *\/ local in function:construct 440 int symbol; \/* decoded symbol *\/ local in function:codes 545 int symbol; local in function:fixed 704 int symbol; \/* decoded value *\/ local in function:dynamic [all...] |
/src/sys/arch/amiga/stand/binpatch/ |
binpatch.c | 30 "\t%s [-b|-w|-l] -s symbol[[[index]][=value]] binary\n" 31 "\t%s [-b|-w|-l] [-o offset] -s symbol [-r value] binary\n" 42 "\t-b symbol or address to be patched is 1 byte\n" 43 "\t-l symbol or address to be patched is 4 bytes (default)\n" 44 "\t-o offset to begin patching value relative to symbol or address\n" 46 "\t-s patch variable by specifying symbol name. Use '[]'\n" 50 "\t-w symbol or address to be patched is 2 bytes\n" 81 static u_long FindAssign(char *symbol, u_long *rvalue); 82 static void FindOffset(char *symbol, u_long *index); 102 char *symbol = 0 local in function:main [all...] |
binpatch.c | 30 "\t%s [-b|-w|-l] -s symbol[[[index]][=value]] binary\n" 31 "\t%s [-b|-w|-l] [-o offset] -s symbol [-r value] binary\n" 42 "\t-b symbol or address to be patched is 1 byte\n" 43 "\t-l symbol or address to be patched is 4 bytes (default)\n" 44 "\t-o offset to begin patching value relative to symbol or address\n" 46 "\t-s patch variable by specifying symbol name. Use '[]'\n" 50 "\t-w symbol or address to be patched is 2 bytes\n" 81 static u_long FindAssign(char *symbol, u_long *rvalue); 82 static void FindOffset(char *symbol, u_long *index); 102 char *symbol = 0 local in function:main [all...] |
/src/bin/ksh/ |
syn.c | 59 static int reject; /* token(cf) gets symbol again */ 60 static int symbol; /* yylex value */ variable in typeref:typename:int 65 ((reject) ? (ACCEPT, symbol) : (symbol = yylex(cf))) 67 ((reject) ? (symbol) : (REJECT, symbol = yylex(cf))) 952 symbol = LWORD;
|