Home
last modified time | relevance | path

Searched refs:sym (Results 1 – 25 of 578) sorted by relevance

12345678910>>...24

/external/chromium_org/third_party/mesa/src/src/mesa/program/
Dsymbol_table.c140 struct symbol *sym; in check_symbol_table() local
142 for (sym = scope->symbols in check_symbol_table()
143 ; sym != NULL in check_symbol_table()
144 ; sym = sym->next_with_same_name) { in check_symbol_table()
145 const struct symbol_header *const hdr = sym->hdr; in check_symbol_table()
162 struct symbol *sym = scope->symbols; in _mesa_symbol_table_pop_scope() local
169 while (sym != NULL) { in _mesa_symbol_table_pop_scope()
170 struct symbol *const next = sym->next_with_same_scope; in _mesa_symbol_table_pop_scope()
171 struct symbol_header *const hdr = sym->hdr; in _mesa_symbol_table_pop_scope()
173 assert(hdr->symbols == sym); in _mesa_symbol_table_pop_scope()
[all …]
/external/mesa3d/src/mesa/program/
Dsymbol_table.c140 struct symbol *sym; in check_symbol_table() local
142 for (sym = scope->symbols in check_symbol_table()
143 ; sym != NULL in check_symbol_table()
144 ; sym = sym->next_with_same_name) { in check_symbol_table()
145 const struct symbol_header *const hdr = sym->hdr; in check_symbol_table()
162 struct symbol *sym = scope->symbols; in _mesa_symbol_table_pop_scope() local
169 while (sym != NULL) { in _mesa_symbol_table_pop_scope()
170 struct symbol *const next = sym->next_with_same_scope; in _mesa_symbol_table_pop_scope()
171 struct symbol_header *const hdr = sym->hdr; in _mesa_symbol_table_pop_scope()
173 assert(hdr->symbols == sym); in _mesa_symbol_table_pop_scope()
[all …]
/external/valgrind/main/coregrind/m_demangle/
Ddemangle.c146 Bool VG_(maybe_Z_demangle) ( const HChar* sym, in VG_()
182 valid = sym[0] == '_' in VG_()
183 && sym[1] == 'v' in VG_()
184 && sym[2] == 'g' in VG_()
185 && (sym[3] == 'r' || sym[3] == 'w') in VG_()
186 && VG_(isdigit)(sym[4]) in VG_()
187 && VG_(isdigit)(sym[5]) in VG_()
188 && VG_(isdigit)(sym[6]) in VG_()
189 && VG_(isdigit)(sym[7]) in VG_()
190 && VG_(isdigit)(sym[8]) in VG_()
[all …]
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
Dsymrec.c152 yasm_symrec *sym = d; in symrec_destroy_one() local
153 yasm_xfree(sym->name); in symrec_destroy_one()
154 if (sym->type == SYM_EQU && (sym->status & YASM_SYM_VALUED)) in symrec_destroy_one()
155 yasm_expr_destroy(sym->value.expn); in symrec_destroy_one()
156 yasm__assoc_data_destroy(sym->assoc_data); in symrec_destroy_one()
157 yasm_xfree(sym); in symrec_destroy_one()
204 non_table_symrec *sym = yasm_xmalloc(sizeof(non_table_symrec)); in symtab_get_or_new_not_in_table() local
205 sym->rec = symrec_new_common(name, symtab->case_sensitive); in symtab_get_or_new_not_in_table()
207 sym->rec->status = YASM_SYM_NOTINTABLE; in symtab_get_or_new_not_in_table()
209 SLIST_INSERT_HEAD(&symtab->non_table_syms, sym, link); in symtab_get_or_new_not_in_table()
[all …]
Dsymrec.h195 (yasm_symrec *sym, /*@null@*/ void *d);
258 /*@observer@*/ const char *yasm_symrec_get_name(const yasm_symrec *sym);
266 /*@only@*/ char *yasm_symrec_get_global_name(const yasm_symrec *sym,
274 yasm_sym_vis yasm_symrec_get_visibility(const yasm_symrec *sym);
281 yasm_sym_status yasm_symrec_get_status(const yasm_symrec *sym);
288 unsigned long yasm_symrec_get_def_line(const yasm_symrec *sym);
295 unsigned long yasm_symrec_get_decl_line(const yasm_symrec *sym);
302 unsigned long yasm_symrec_get_use_line(const yasm_symrec *sym);
310 (const yasm_symrec *sym);
322 int yasm_symrec_get_label(const yasm_symrec *sym,
[all …]
/external/valgrind/main/coregrind/m_initimg/
Dsimple_huffman.c180 static void _Huffman_Hist( UChar *in, huff_sym_t *sym, in _Huffman_Hist() argument
189 sym[k].Symbol = k; in _Huffman_Hist()
190 sym[k].Count = 0; in _Huffman_Hist()
191 sym[k].Code = 0; in _Huffman_Hist()
192 sym[k].Bits = 0; in _Huffman_Hist()
198 sym[ *in ++ ].Count ++; in _Huffman_Hist()
207 if( sym[k].Count < sym[k+1].Count ) in _Huffman_Hist()
209 tmp = sym[k]; in _Huffman_Hist()
210 sym[k] = sym[k+1]; in _Huffman_Hist()
211 sym[k+1] = tmp; in _Huffman_Hist()
[all …]
/external/bison/src/
Dsymtab.c177 symbol_type_set (symbol *sym, uniqstr type_name, location loc) in symbol_type_set() argument
181 if (sym->type_name) in symbol_type_set()
182 symbol_redeclaration (sym, "%type", sym->type_location, loc); in symbol_type_set()
184 sym->type_name = type_name; in symbol_type_set()
185 sym->type_location = loc; in symbol_type_set()
194 symbol_destructor_set (symbol *sym, code_props const *destructor) in symbol_destructor_set() argument
196 if (sym->destructor.code) in symbol_destructor_set()
197 symbol_redeclaration (sym, "%destructor", sym->destructor.location, in symbol_destructor_set()
199 sym->destructor = *destructor; in symbol_destructor_set()
222 symbol_destructor_get (symbol const *sym) in symbol_destructor_get() argument
[all …]
DLR0.c58 state_list_append (symbol_number sym, size_t core_size, item_number *core) in state_list_append() argument
61 state *s = state_new (sym, core_size, core); in state_list_append()
65 nstates, sym, symbols[sym]->tag); in state_list_append()
190 symbol_number sym = item_number_as_symbol_number (ritem[itemset[i]]); in new_itemsets() local
191 if (!kernel_size[sym]) in new_itemsets()
193 shift_symbol[nshifts] = sym; in new_itemsets()
197 kernel_base[sym][kernel_size[sym]] = itemset[i] + 1; in new_itemsets()
198 kernel_size[sym]++; in new_itemsets()
211 get_state (symbol_number sym, size_t core_size, item_number *core) in get_state() argument
217 sym, symbols[sym]->tag); in get_state()
[all …]
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/
Dsymshift.pl196 ($sym,$rest) = ($1,$2);
204 $sym = translate($table,$sym,$id);
205 if ($shifted{$sym}) {
206 $otherplane = int($shifted{$sym} / 256);
207 …print STDERR "symbol \"$sym\" was allready assigned to plane of \"$table{$otherplane}\" ($otherpla…
209 $shifted{$sym} = $shifted;
210 $sym{$shifted} = $sym;
225 foreach $sym (keys %{$notpredicted{$table}}) {
226 $id = $notpredicted{$table}{$sym};
228 $shifted{$sym} = $shifted unless $shifted{$sym};
[all …]
/external/elfutils/libdwfl/
Ddwfl_module_addrsym.c65 inline bool same_section (const GElf_Sym *sym, GElf_Word shndx) in dwfl_module_addrsym()
69 return sym->st_value == addr; in dwfl_module_addrsym()
110 GElf_Sym sym; in dwfl_module_addrsym() local
112 const char *name = INTUSE(dwfl_module_getsym) (mod, i, &sym, &shndx); in dwfl_module_addrsym()
114 && sym.st_shndx != SHN_UNDEF in dwfl_module_addrsym()
115 && sym.st_value <= addr in dwfl_module_addrsym()
116 && GELF_ST_TYPE (sym.st_info) != STT_SECTION in dwfl_module_addrsym()
117 && GELF_ST_TYPE (sym.st_info) != STT_FILE in dwfl_module_addrsym()
118 && GELF_ST_TYPE (sym.st_info) != STT_TLS) in dwfl_module_addrsym()
123 if (sym.st_value + sym.st_size > min_label) in dwfl_module_addrsym()
[all …]
/external/compiler-rt/lib/
Dapple_versioning.c15 #define NOT_HERE_BEFORE_10_6(sym) argument
16 #define NOT_HERE_IN_10_8_AND_EARLIER(sym) argument
18 #define NOT_HERE_BEFORE_10_6(sym) \ argument
19 extern const char sym##_tmp3 __asm("$ld$hide$os10.3$_" #sym ); \
20 __attribute__((visibility("default"))) const char sym##_tmp3 = 0; \
21 extern const char sym##_tmp4 __asm("$ld$hide$os10.4$_" #sym ); \
22 __attribute__((visibility("default"))) const char sym##_tmp4 = 0; \
23 extern const char sym##_tmp5 __asm("$ld$hide$os10.5$_" #sym ); \
24 __attribute__((visibility("default"))) const char sym##_tmp5 = 0;
26 #define NOT_HERE_BEFORE_10_6(sym) \ argument
[all …]
/external/qemu/android/skin/
Dkeyboard.c37 int sym; /* SDL key symbol value (e.g. SDLK_a) */ member
125 int sym ) in skin_keyboard_find_last() argument
131 if (k->sym == sym) in skin_keyboard_find_last()
139 int sym, in skin_keyboard_add_last() argument
146 k->sym = sym; in skin_keyboard_add_last()
156 int sym ) in skin_keyboard_remove_last() argument
162 if (k->sym == sym) { in skin_keyboard_remove_last()
181 int sym ) in skin_keyboard_rotate_sym() argument
185 switch (sym) { in skin_keyboard_rotate_sym()
186 case SDLK_LEFT: sym = SDLK_DOWN; break; in skin_keyboard_rotate_sym()
[all …]
/external/chromium_org/third_party/codesighs/
Dreadelf_wrap.pl104 my @sym;
106 if (@sym = /^\s*(\d+): (\w+)\s*(\d+)\s*(\w+)\s*(\w+)\s*(\w+)\s*(\w+) (.*)/)
113 if (($sym[$SYM_TYPE] !~ /^(OBJECT|FUNC)$/) ||
114 $sym[$SYM_NDX] eq 'UND' || $sym[$SYM_NDX] eq 'UNDEF'
115 || $sym[$SYM_SIZE] eq '0') {
118 push (@symbol_list, \@sym);
133 my $sym;
138 foreach $sym (@symbol_list) {
140 printf "%08x\t", $sym->[$SYM_SIZE];
143 if ($sym->[$SYM_TYPE] eq 'FUNC') {
[all …]
/external/linux-tools-perf/util/
Dannotate.c19 int symbol__annotate_init(struct map *map __used, struct symbol *sym) in symbol__annotate_init() argument
21 struct annotation *notes = symbol__annotation(sym); in symbol__annotate_init()
26 int symbol__alloc_hist(struct symbol *sym, int nevents) in symbol__alloc_hist() argument
28 struct annotation *notes = symbol__annotation(sym); in symbol__alloc_hist()
30 (sym->end - sym->start) * sizeof(u64)); in symbol__alloc_hist()
41 void symbol__annotate_zero_histograms(struct symbol *sym) in symbol__annotate_zero_histograms() argument
43 struct annotation *notes = symbol__annotation(sym); in symbol__annotate_zero_histograms()
52 int symbol__inc_addr_samples(struct symbol *sym, struct map *map, in symbol__inc_addr_samples() argument
59 notes = symbol__annotation(sym); in symbol__inc_addr_samples()
65 if (addr >= sym->end) in symbol__inc_addr_samples()
[all …]
Dannotate.h77 static inline struct annotation *symbol__annotation(struct symbol *sym) in symbol__annotation() argument
79 struct sannotation *a = container_of(sym, struct sannotation, symbol); in symbol__annotation()
83 int symbol__inc_addr_samples(struct symbol *sym, struct map *map,
85 int symbol__alloc_hist(struct symbol *sym, int nevents);
86 void symbol__annotate_zero_histograms(struct symbol *sym);
90 int symbol__annotate(struct symbol *sym, struct map *map, size_t privsize);
92 int symbol__annotate(struct symbol *sym, struct map *map, size_t privsize,
96 int symbol__annotate_init(struct map *map __used, struct symbol *sym);
97 int symbol__annotate_printf(struct symbol *sym, struct map *map, int evidx,
100 void symbol__annotate_zero_histogram(struct symbol *sym, int evidx);
[all …]
/external/chromium_org/third_party/mesa/src/src/glx/apple/
Dapple_cgl.c49 sym(void *h, const char *name) in sym() function
88 apple_cgl.get_version = sym(h, "CGLGetVersion"); in apple_cgl_init()
99 apple_cgl.choose_pixel_format = sym(h, "CGLChoosePixelFormat"); in apple_cgl_init()
100 apple_cgl.destroy_pixel_format = sym(h, "CGLDestroyPixelFormat"); in apple_cgl_init()
102 apple_cgl.clear_drawable = sym(h, "CGLClearDrawable"); in apple_cgl_init()
103 apple_cgl.flush_drawable = sym(h, "CGLFlushDrawable"); in apple_cgl_init()
105 apple_cgl.create_context = sym(h, "CGLCreateContext"); in apple_cgl_init()
106 apple_cgl.destroy_context = sym(h, "CGLDestroyContext"); in apple_cgl_init()
108 apple_cgl.set_current_context = sym(h, "CGLSetCurrentContext"); in apple_cgl_init()
109 apple_cgl.get_current_context = sym(h, "CGLGetCurrentContext"); in apple_cgl_init()
[all …]
/external/mesa3d/src/glx/apple/
Dapple_cgl.c49 sym(void *h, const char *name) in sym() function
88 apple_cgl.get_version = sym(h, "CGLGetVersion"); in apple_cgl_init()
99 apple_cgl.choose_pixel_format = sym(h, "CGLChoosePixelFormat"); in apple_cgl_init()
100 apple_cgl.destroy_pixel_format = sym(h, "CGLDestroyPixelFormat"); in apple_cgl_init()
102 apple_cgl.clear_drawable = sym(h, "CGLClearDrawable"); in apple_cgl_init()
103 apple_cgl.flush_drawable = sym(h, "CGLFlushDrawable"); in apple_cgl_init()
105 apple_cgl.create_context = sym(h, "CGLCreateContext"); in apple_cgl_init()
106 apple_cgl.destroy_context = sym(h, "CGLDestroyContext"); in apple_cgl_init()
108 apple_cgl.set_current_context = sym(h, "CGLSetCurrentContext"); in apple_cgl_init()
109 apple_cgl.get_current_context = sym(h, "CGLGetCurrentContext"); in apple_cgl_init()
[all …]
/external/qemu/distrib/sdl-1.2.15/test/
Dcheckkeys.c53 static void PrintKey(SDL_keysym *sym, int pressed) in PrintKey() argument
56 if ( sym->sym ) { in PrintKey()
58 sym->sym, SDL_GetKeyName(sym->sym)); in PrintKey()
60 printf("Unknown Key (scancode = %d) %s ", sym->scancode, in PrintKey()
65 if ( sym->unicode ) { in PrintKey()
67 if ( sym->unicode < ' ' ) { in PrintKey()
68 printf(" (^%c)", sym->unicode+'@'); in PrintKey()
71 printf(" (%c)", sym->unicode); in PrintKey()
74 if ( !(sym->unicode & 0xFF00) ) in PrintKey()
75 printf(" (%c)", sym->unicode); in PrintKey()
[all …]
/external/kernel-headers/original/linux/
Dmodule.h175 #define __CRC_SYMBOL(sym, sec) \ argument
176 extern void *__crc_##sym __attribute__((weak)); \
177 static const unsigned long __kcrctab_##sym \
180 = (unsigned long) &__crc_##sym;
182 #define __CRC_SYMBOL(sym, sec) argument
186 #define __EXPORT_SYMBOL(sym, sec) \ argument
187 extern typeof(sym) sym; \
188 __CRC_SYMBOL(sym, sec) \
189 static const char __kstrtab_##sym[] \
191 = MODULE_SYMBOL_PREFIX #sym; \
[all …]
/external/zlib/src/
Dinftrees.c41 unsigned sym; /* index of code symbols */ local
109 for (sym = 0; sym < codes; sym++)
110 count[lens[sym]]++;
146 for (sym = 0; sym < codes; sym++)
147 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym;
201 sym = 0; /* starting code symbol */
219 if ((int)(work[sym]) < end) {
221 here.val = work[sym];
223 else if ((int)(work[sym]) > end) {
224 here.op = (unsigned char)(extra[work[sym]]);
[all …]
/external/qemu/distrib/zlib-1.2.3/
Dinftrees.c41 unsigned sym; /* index of code symbols */ local
109 for (sym = 0; sym < codes; sym++)
110 count[lens[sym]]++;
146 for (sym = 0; sym < codes; sym++)
147 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym;
202 sym = 0; /* starting code symbol */
219 if ((int)(work[sym]) < end) {
221 this.val = work[sym];
223 else if ((int)(work[sym]) > end) {
224 this.op = (unsigned char)(extra[work[sym]]);
[all …]
/external/zlib/src/contrib/infback9/
Dinftree9.c41 unsigned sym; /* index of code symbols */ local
111 for (sym = 0; sym < codes; sym++)
112 count[lens[sym]]++;
140 for (sym = 0; sym < codes; sym++)
141 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym;
195 sym = 0; /* starting code symbol */
213 if ((int)(work[sym]) < end) {
215 this.val = work[sym];
217 else if ((int)(work[sym]) > end) {
218 this.op = (unsigned char)(extra[work[sym]]);
[all …]
/external/chromium_org/third_party/zlib/
Dinftrees.c41 unsigned sym; /* index of code symbols */ local
109 for (sym = 0; sym < codes; sym++)
110 count[lens[sym]]++;
146 for (sym = 0; sym < codes; sym++)
147 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym;
201 sym = 0; /* starting code symbol */
219 if ((int)(work[sym]) < end) {
221 here.val = work[sym];
223 else if ((int)(work[sym]) > end) {
224 here.op = (unsigned char)(extra[work[sym]]);
[all …]
/external/svox/pico/lib/
Dpicotrns.c61 picoos_int16 sym; in PICOTRNS_PRINTSYM1() local
64 sym = picotrns_unplane(insym, &plane); in PICOTRNS_PRINTSYM1()
68 PICODBG_INFO_MSG((" %c", sym)); in PICOTRNS_PRINTSYM1()
70 PICODBG_INFO_MSG((" %s", picokdbg_getPhoneSym(dbg, (picoos_uint8) sym))); in PICOTRNS_PRINTSYM1()
74 PICODBG_INFO_MSG((" {A%c}", sym)); in PICOTRNS_PRINTSYM1()
77 PICODBG_INFO_MSG((" {XS:(%i)}", sym)); in PICOTRNS_PRINTSYM1()
80 PICODBG_INFO_MSG((" {P:%d}", sym)); in PICOTRNS_PRINTSYM1()
83 if (sym == 48) { in PICOTRNS_PRINTSYM1()
84 PICODBG_INFO_MSG((" {WB}", sym)); in PICOTRNS_PRINTSYM1()
85 } else if (sym == 115) { in PICOTRNS_PRINTSYM1()
[all …]
/external/oprofile/libpp/
Dcallgraph_container.cpp136 sym = symbol_entry(); in caller_sym()
165 sym.size = end - start; in caller_sym()
166 sym.name = symbol_names.create(b.syms[i].name()); in caller_sym()
167 sym.sample.vma = b.syms[i].vma(); in caller_sym()
180 sym = symbol_entry(); in callee_sym()
191 sym.size = bfdsym->size(); in callee_sym()
192 sym.name = symbol_names.create(bfdsym->name()); in callee_sym()
193 sym.sample.vma = bfdsym->vma(); in callee_sym()
218 symbol_entry sym; member in __anon9faa11510111::call_data
224 sym.image_name = image; in finish_sym()
[all …]

12345678910>>...24