HomeSort by: relevance | last modified time | path
    Searched defs:symbols (Results 1 - 25 of 39) sorted by relevancy

1 2

  /xsrc/external/mit/MesaLib/dist/src/compiler/glsl/
ir_print_visitor.h 86 _mesa_symbol_table *symbols; member in class:ir_print_visitor
builtin_types.cpp 269 add_type(glsl_symbol_table *symbols, const glsl_type *const type)
271 symbols->add_type(type->name, type);
280 struct glsl_symbol_table *symbols = state->symbols; local
285 add_type(symbols, t->type);
294 add_type(symbols, deprecated_types[i]);
305 add_type(symbols, glsl_type::samplerCubeArray_type);
306 add_type(symbols, glsl_type::samplerCubeArrayShadow_type);
307 add_type(symbols, glsl_type::isamplerCubeArray_type);
308 add_type(symbols, glsl_type::usamplerCubeArray_type)
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/
ir_print_visitor.h 85 _mesa_symbol_table *symbols; member in class:ir_print_visitor
builtin_types.cpp 269 add_type(glsl_symbol_table *symbols, const glsl_type *const type)
271 symbols->add_type(type->name, type);
280 struct glsl_symbol_table *symbols = state->symbols; local
285 add_type(symbols, t->type);
294 add_type(symbols, deprecated_types[i]);
305 add_type(symbols, glsl_type::samplerCubeArray_type);
306 add_type(symbols, glsl_type::samplerCubeArrayShadow_type);
307 add_type(symbols, glsl_type::isamplerCubeArray_type);
308 add_type(symbols, glsl_type::usamplerCubeArray_type)
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/clover/core/
program.cpp 131 program::symbols() const { function in class:program
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/clover/core/core/
program.cpp 127 program::symbols() const { function in class:program
  /xsrc/external/mit/MesaLib/dist/src/amd/compiler/
aco_print_asm.cpp 202 std::vector<llvm::SymbolInfoTy> symbols; local
211 symbols.emplace_back(block.offset * 4,
222 features, &symbols, 0, NULL, NULL);
  /xsrc/external/mit/MesaLib/dist/src/mesa/program/
symbol_table.c 37 * The linked list of symbols with the same name is ordered by scope
45 * The linked list of symbols with the same scope is unordered. Symbols
67 /** Linked list of symbols with the same scope. */
68 struct symbol *symbols; member in struct:scope_level
76 /** Hash table containing all symbols in the symbol table. */
90 struct symbol *sym = scope->symbols;
205 new_sym->next_with_same_scope = table->current_scope->symbols;
209 table->current_scope->symbols = new_sym;
277 sym->next_with_same_scope = top_scope->symbols;
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/amd/common/
ac_binary.c 48 * total number of symbols, and we will only be filling the list
49 * with offsets of global symbols. The memory savings from
52 * of global symbols.
81 static void parse_relocs(Elf *elf, Elf_Data *relocs, Elf_Data *symbols,
87 if (!relocs || !symbols || !binary->reloc_count) {
99 gelf_getsym(symbols, GELF_R_SYM(rel.r_info), &symbol);
114 Elf_Data *symbols = NULL, *relocs = NULL; local
167 symbols = elf_getdata(section, section_data);
169 parse_symbol_table(symbols, &section_header, binary);
177 parse_relocs(elf, relocs, symbols, symbol_sh_link, binary)
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/program/
symbol_table.c 37 * The linked list of symbols with the same name is ordered by scope
45 * The linked list of symbols with the same scope is unordered. Symbols
67 /** Linked list of symbols with the same scope. */
68 struct symbol *symbols; member in struct:scope_level
76 /** Hash table containing all symbols in the symbol table. */
90 struct symbol *sym = scope->symbols;
205 new_sym->next_with_same_scope = table->current_scope->symbols;
209 table->current_scope->symbols = new_sym;
277 sym->next_with_same_scope = top_scope->symbols;
    [all...]
  /xsrc/external/mit/libxkbfile/dist/include/X11/extensions/
XKBrules.h 64 char * symbols; member in struct:_XkbRF_Rule
XKBconfig.h 115 char * symbols; member in struct:_XkbConfigRtrn
  /xsrc/external/mit/xedit/dist/lisp/modules/
syntax.lsp 37 (defvar *syntax-symbols* '(
44 (export *syntax-symbols*)
46 (dolist (symbol xedit::*syntax-symbols*)
50 (makunbound '*syntax-symbols*)
  /xsrc/external/mit/xorg-server/dist/include/
xkbrules.h 57 const char *symbols; member in struct:_XkbRF_Rule
  /xsrc/external/mit/xorg-server.old/dist/hw/dmx/
dmxinput.h 128 char *symbols; /**< XKB symbols from command line */ member in struct:_DMXInputInfo
  /xsrc/external/mit/xorg-server.old/dist/include/
xkbrules.h 57 char * symbols; member in struct:_XkbRF_Rule
  /xsrc/external/mit/libXpm/dist/sxpm/
sxpm.c 157 XpmColorSymbol symbols[10]; local
309 symbols[numsymbols].name = argv[++n];
310 symbols[numsymbols++].value = argv[++n];
318 symbols[numsymbols].name = argv[++n];
319 symbols[numsymbols].value = NULL;
320 symbols[numsymbols++].pixel = atol(argv[++n]);
327 symbols[numsymbols].name = NULL;
328 symbols[numsymbols].value = argv[++n];
329 symbols[numsymbols++].pixel = atol(argv[++n]);
390 view.attributes.colorsymbols = symbols;
    [all...]
  /xsrc/external/mit/xedit/dist/lisp/
package.c 127 /* condition 2: intern and extern symbols or symbol is extern */
326 /* Fix for current behaviour where NIL and T aren't symbols... */
389 do-all-symbols init &rest body
398 do-external-symbols init &rest body
407 do-symbols init &rest body
416 find-all-symbols string-or-symbol
444 /* Traverse all packages, searching for symbols matching specified string */
458 /* Put symbols defined first in the
495 export symbols &optional package
500 LispObj *symbols, *package local
532 LispObj *symbols, *package; local
829 LispObj *symbols, *package; local
    [all...]
compile.c 1181 i = BuildTablePointer(atom, (void***)&com->block->variables.symbols,
1255 i = FindIndex(atom, (void**)block->variables.symbols,
1399 LispObj **symbols, **defaults, **sforms; local
1433 symbols = alist->normals.symbols;
1436 ComPush(com, symbols[i], CAR(values), eval, builtin, compile);
1438 COM_VARIABLE_ARGUMENT(symbols[i]->data.atom);
1461 symbols = alist->optionals.symbols;
1465 ComPush(com, symbols[i], CAR(values), eval, builtin, compile)
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/amd/common/
ac_rtld.c 124 static const struct ac_rtld_symbol *find_symbol(const struct util_dynarray *symbols,
127 util_dynarray_foreach (symbols, struct ac_rtld_symbol, symbol) {
148 static bool layout_symbols(struct ac_rtld_symbol *symbols, unsigned num_symbols,
151 qsort(symbols, num_symbols, sizeof(*symbols), compare_symbol_by_align);
156 struct ac_rtld_symbol *s = &symbols[i];
175 * Read LDS symbols from the given \p section of the ELF of \p part and append
176 * them to the LDS symbols list.
178 * Shared LDS symbols are filtered out.
211 /* old-style LDS symbols from initial prototype -- remove eventually *
639 const Elf64_Sym *symbols = symbols_data->d_buf; local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r600/
evergreen_compute.c 216 * total number of symbols, and we will only be filling the list
217 * with offsets of global symbols. The memory savings from
220 * of global symbols.
250 static void parse_relocs(Elf *elf, Elf_Data *relocs, Elf_Data *symbols,
256 if (!relocs || !symbols || !binary->reloc_count) {
268 gelf_getsym(symbols, GELF_R_SYM(rel.r_info), &symbol);
283 Elf_Data *symbols = NULL, *relocs = NULL; local
329 symbols = elf_getdata(section, section_data);
331 parse_symbol_table(symbols, &section_header, binary);
339 parse_relocs(elf, relocs, symbols, symbol_sh_link, binary)
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r600/
evergreen_compute.c 197 * total number of symbols, and we will only be filling the list
198 * with offsets of global symbols. The memory savings from
201 * of global symbols.
231 static void parse_relocs(Elf *elf, Elf_Data *relocs, Elf_Data *symbols,
237 if (!relocs || !symbols || !binary->reloc_count) {
249 gelf_getsym(symbols, GELF_R_SYM(rel.r_info), &symbol);
264 Elf_Data *symbols = NULL, *relocs = NULL; local
310 symbols = elf_getdata(section, section_data);
312 parse_symbol_table(symbols, &section_header, binary);
320 parse_relocs(elf, relocs, symbols, symbol_sh_link, binary)
    [all...]
  /xsrc/external/mit/setxkbmap/dist/
setxkbmap.c 111 setting_t symbols; member in struct:settings
129 { "symbols", NULL, UNDEFINED },
261 " -symbols <name> Specifies symbols component name\n"
301 if (settings.symbols.value)
302 MSG1("symbols: %s\n", settings.symbols.value);
473 else if (streq(argv[i], "-symbols"))
474 ok = setOptString(&i, argc, argv, &settings.symbols, FROM_CMD_LINE);
516 if (settings.symbols.value
    [all...]
  /xsrc/external/mit/xorg-server.old/dist/hw/dmx/input/
dmxinputinit.h 87 KeySymsRec keySyms; /**< Key symbols */
126 int maxSymbols; /**< Maximum symbols */
127 int maxSymbolsSupported; /**< Maximum symbols supported */
128 KeySym *symbols; /**< Key symbols */ member in struct:_DMXLocalInitInfo
  /xsrc/external/mit/brotli/dist/c/enc/
brotli_bit_stream.c 243 size_t symbols[4],
257 if (depths[symbols[j]] < depths[symbols[i]]) {
258 BROTLI_SWAP(size_t, symbols, j, i);
265 BrotliWriteBits(max_bits, symbols[0], storage_ix, storage);
266 BrotliWriteBits(max_bits, symbols[1], storage_ix, storage);
268 BrotliWriteBits(max_bits, symbols[0], storage_ix, storage);
269 BrotliWriteBits(max_bits, symbols[1], storage_ix, storage);
270 BrotliWriteBits(max_bits, symbols[2], storage_ix, storage);
272 BrotliWriteBits(max_bits, symbols[0], storage_ix, storage)
411 size_t symbols[4] = { 0 }; local
    [all...]

Completed in 24 milliseconds

1 2