/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
|
/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...] |
/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...] |
/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...] |
unlz.c | 175 unsigned symbol = 0; local in function:lz_rd_decode 179 symbol <<= 1; 182 symbol |= 1; 190 return symbol; 196 unsigned symbol; local in function:lz_rd_decode_bit 202 symbol = 0; 208 symbol = 1; 215 return symbol; 221 unsigned symbol = 1; local in function:lz_rd_decode_tree 224 symbol = (symbol << 1) | lz_rd_decode_bit(rd, &bm[symbol]) 232 unsigned symbol = lz_rd_decode_tree(rd, bm, num_bits); local in function:lz_rd_decode_tree_reversed 246 unsigned symbol = 1; local in function:lz_rd_decode_matched [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;
|
/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...] |
/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...] |
/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);
|
/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);
|
/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...] |
/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...] |
/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...] |
/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;
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/disp/ |
nouveau_nvkm_engine_disp_nv50.c | 335 const u32 symbol = 100000; local in function:nv50_disp_super_2_2_dp 339 u32 best_diff = 64 * symbol; 359 /* calculate ratio of packed data rate to link symbol rate */ 360 link_ratio = link_data_rate * symbol; 369 VTUi = tu_valid / symbol; 370 calc = VTUi * symbol; 373 if (diff >= (symbol / 2)) { 374 VTUf = symbol / (symbol - diff); 375 if (symbol - (VTUf * diff) [all...] |
/src/sys/dev/microcode/aic7xxx/ |
aicasm_symbol.h | 4 * Aic7xxx SCSI host adapter firmware assembler symbol table definitions 98 struct symbol *parent; 128 typedef struct symbol { struct 143 symbol_t *symbol; member in struct:symbol_ref 149 symbol_t *symbol; member in struct:symbol_node 186 void symbol_delete(symbol_t *symbol); 199 symlist_add(symlist_t *symlist, symbol_t *symbol, int how);
|
/src/sys/arch/sparc/sparc/ |
openfirm.c | 722 args.name = ADR2CELL("set-symbol-lookup"); 825 cell_t symbol; member in struct:OF_sym2val::args 829 char *symbol; local in function:OF_sym2val 846 symbol = (char *)(u_long)args->symbol; 848 prom_printf("looking up symbol %s\n", symbol); 849 args->result = (db_value_of_name(symbol, &value) == true) ? 0 : -1; 851 prom_printf("%s is %lx\n", symbol, value); 864 cell_t symbol; member in struct:OF_val2sym::args 866 db_sym_t symbol; local in function:OF_val2sym [all...] |
/src/usr.sbin/bootp/common/ |
readfile.c | 130 * Structure used to map a configuration-file symbol (such as "ds") to a 135 const char *symbol; 154 * values of the symbol codes (SYM_. . .) are unimportant, but they must 674 msg = "unknown symbol"; 698 report(LOG_ERR, "in entry named \"%s\", symbol \"%s\": %s", 717 if (prs_inetaddr(symbol, &value) < 0) \ 736 hp->MEMBER = get_addresses(symbol); \ 755 hp->MEMBER = get_shared_string(symbol); \ 769 value = get_u_long(symbol); \ 776 * Evaluate the two-character tag symbol pointed to by "symbol" and plac 134 const char *symbol; member in struct:symbolmap [all...] |