Symbol: symbol
games/bs/bs.c
1074
addch((chtype)ss->symbol);
games/bs/bs.c
279
board[b][newx][newy] = ss->symbol;
games/bs/bs.c
282
addch((chtype)ss->symbol);
games/bs/bs.c
401
*cp++ = plyship[i].symbol;
games/bs/bs.c
417
if (ss->symbol == c)
games/bs/bs.c
694
if(ss->symbol == sym)
games/bs/bs.c
735
hits[turn][dx][dy] = ss->symbol;
games/bs/bs.c
739
addch(ss->symbol);
games/bs/bs.c
97
char symbol; /* symbol for game purposes */
lib/libefivar/efivar.c
321
efi_guid_to_symbol(efi_guid_t *guid __unused, char **symbol __unused)
lib/libefivar/efivar.h
81
int efi_guid_to_symbol(efi_guid_t *guid, char **symbol);
lib/libexecinfo/symtab.c
113
struct symbol *s;
lib/libexecinfo/symtab.c
170
struct symbol *s = st->symbols;
lib/libexecinfo/symtab.c
63
struct symbol *symbols;
lib/libexecinfo/symtab.c
69
const struct symbol *sa = a;
lib/libexecinfo/symtab.c
70
const struct symbol *sb = b;
libexec/bootpd/readfile.c
1010
fill_defaults(hp, symbol);
libexec/bootpd/readfile.c
1035
if (!strncmp(*symbol, "auto", 4)) {
libexec/bootpd/readfile.c
1039
hp->bootsize = (unsigned int) get_u_long(symbol);
libexec/bootpd/readfile.c
137
char *symbol;
libexec/bootpd/readfile.c
712
if (prs_inetaddr(symbol, &value) < 0) \
libexec/bootpd/readfile.c
731
hp->MEMBER = get_addresses(symbol); \
libexec/bootpd/readfile.c
750
hp->MEMBER = get_shared_string(symbol); \
libexec/bootpd/readfile.c
764
value = get_u_long(symbol); \
libexec/bootpd/readfile.c
779
eval_symbol(char **symbol, struct host *hp)
libexec/bootpd/readfile.c
790
eat_whitespace(symbol);
libexec/bootpd/readfile.c
793
current_tagname[0] = (*symbol)[0];
libexec/bootpd/readfile.c
794
current_tagname[1] = (*symbol)[1];
libexec/bootpd/readfile.c
797
if ((*symbol)[0] == '\0') {
libexec/bootpd/readfile.c
800
if ((*symbol)[0] == ':') {
libexec/bootpd/readfile.c
803
if ((*symbol)[0] == 'T') { /* generic symbol */
libexec/bootpd/readfile.c
804
(*symbol)++;
libexec/bootpd/readfile.c
805
value = get_u_long(symbol);
libexec/bootpd/readfile.c
808
eat_whitespace(symbol);
libexec/bootpd/readfile.c
809
if ((*symbol)[0] != '=') {
libexec/bootpd/readfile.c
812
(*symbol)++;
libexec/bootpd/readfile.c
817
if (process_generic(symbol, &(hp->generic), (byte) (value & 0xFF)))
libexec/bootpd/readfile.c
825
switch ((*symbol)[2]) {
libexec/bootpd/readfile.c
843
if (((symbolptr->symbol)[0] == (*symbol)[0]) &&
libexec/bootpd/readfile.c
844
((symbolptr->symbol)[1] == (*symbol)[1])) {
libexec/bootpd/readfile.c
857
(*symbol) += (optype == OP_BOOLEAN) ? 2 : 3;
libexec/bootpd/readfile.c
859
eat_whitespace(symbol);
libexec/bootpd/readfile.c
890
tmphaddr = prs_haddr(symbol, hp->htype);
libexec/bootpd/readfile.c
908
eat_whitespace(symbol);
libexec/bootpd/readfile.c
909
if (isdigit(**symbol)) {
libexec/bootpd/readfile.c
910
value = get_u_long(symbol);
libexec/bootpd/readfile.c
913
(void) get_string(symbol, tmpstr, &len);
libexec/bootpd/readfile.c
968
(void) get_string(symbol, tmpstr, &len);
libexec/bootpd/readfile.c
989
if (strncmp(*symbol, "auto", 4)) {
libexec/bootpd/readfile.c
991
if (!strncmp(*symbol, "rfc", 3)) {
libexec/bootpd/readfile.c
993
} else if (!strncmp(*symbol, "cmu", 3)) {
libexec/bootpd/readfile.c
996
if (!isdigit(**symbol))
libexec/bootpd/readfile.c
998
if (prs_inetaddr(symbol, &value) < 0)
sys/dev/misc/syscons/fred/fred_saver.c
101
xflip_symbol(u_char symbol)
sys/dev/misc/syscons/fred/fred_saver.c
108
if (lchars[pos] == symbol)
sys/dev/misc/syscons/fred/fred_saver.c
111
return symbol;
sys/kern/link_elf.c
1016
symbol = ef->strtab + sym->st_name;
sys/kern/link_elf.c
1019
if (*symbol == 0)
sys/kern/link_elf.c
1022
return (linker_file_lookup_symbol(lf, symbol, deps, (caddr_t *)result));
sys/kern/link_elf.c
991
const char *symbol;
sys/kern/link_elf_obj.c
1139
const char *symbol;
sys/kern/link_elf_obj.c
1161
symbol = ef->ddbstrtab + sym->st_name;
sys/kern/link_elf_obj.c
1164
if (*symbol == 0)
sys/kern/link_elf_obj.c
1166
return (linker_file_lookup_symbol(lf, symbol, deps, (caddr_t *)result));
sys/sys/cdefs.h
492
#define __copy_attr(symbol) __attribute__((__copy__(symbol)))
sys/sys/cdefs.h
494
#define __copy_attr(symbol)
usr.bin/crunch/crunchide/crunchide.c
138
add_to_keep_list(char *symbol)
usr.bin/crunch/crunchide/crunchide.c
146
if((cmp = strcmp(symbol, curp->sym)) <= 0) break;
usr.bin/crunch/crunchide/crunchide.c
152
if(newp) newp->sym = strdup(symbol);
usr.bin/crunch/crunchide/crunchide.c
164
in_keep_list(const char *symbol)
usr.bin/crunch/crunchide/crunchide.c
172
if((cmp = strcmp(symbol, curp->sym)) <= 0) break;
usr.bin/crunch/crunchide/crunchide.c
181
char symbol[1024];
usr.bin/crunch/crunchide/crunchide.c
189
while(fgets(symbol, sizeof(symbol), keepf)) {
usr.bin/crunch/crunchide/crunchide.c
190
len = strlen(symbol);
usr.bin/crunch/crunchide/crunchide.c
191
if(len && symbol[len-1] == '\n')
usr.bin/crunch/crunchide/crunchide.c
192
symbol[len-1] = '\0';
usr.bin/crunch/crunchide/crunchide.c
194
add_to_keep_list(symbol);
usr.bin/crunch/crunchide/crunchide.c
77
static void add_to_keep_list(char *symbol);
usr.bin/crunch/crunchide/extern.h
39
int in_keep_list(const char *symbol);
usr.bin/gzip/unpack.c
103
free(unpackd->symbol);
usr.bin/gzip/unpack.c
211
unpackd->symbol_eob = unpackd->symbol = calloc(1, unpackd->symbol_size);
usr.bin/gzip/unpack.c
212
if (unpackd->symbol == NULL)
usr.bin/gzip/unpack.c
79
char *symbol; /* The symbol table */
usr.bin/localedef/collate.c
179
char *symbol;
usr.bin/localedef/collate.c
398
rv = strcmp(c1->symbol, c2->symbol);
usr.bin/localedef/collate.c
527
lookup_collelem(char *symbol)
usr.bin/localedef/collate.c
531
srch.symbol = symbol;
usr.bin/localedef/collate.c
805
e->symbol = name;
usr.bin/ministat/ministat.c
135
static char symbol[MAX_DS] = { ' ', 'x', '+', '*', '%', '#', '@', 'O' };
usr.bin/ministat/ministat.c
234
printf("%c %3d %13.8g %13.8g %13.8g %13.8g %13.8g", symbol[flag],
usr.bin/ministat/ministat.c
423
putchar(symbol[k]);
usr.bin/ministat/ministat.c
629
printf("%c %s\n", symbol[i+1], ds[i]->name);