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

1 2 3 4 5 6 7 8 91011>>

  /xsrc/external/mit/MesaLib/dist/src/compiler/glsl/
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...]
link_functions.cpp 35 glsl_symbol_table *symbols);
84 find_matching_signature(name, &callee->parameters, linked->symbols);
95 shader_list[i]->symbols);
112 ir_function *f = linked->symbols->get_function(name);
120 linked->symbols->add_function(f);
226 ir_variable *var = linked->symbols->get_variable(ir->var->name);
232 linked->symbols->add_variable(var);
315 glsl_symbol_table *symbols)
317 ir_function *const f = symbols->get_function(name);
lower_cs_derived.cpp 64 main_sig = _mesa_get_main_function_signature(shader->symbols);
116 WorkGroupSize = shader->symbols->get_variable("gl_LocalGroupSizeARB");
118 WorkGroupSize = shader->symbols->get_variable("gl_WorkGroupSize");
121 gl_WorkGroupID = shader->symbols->get_variable("gl_WorkGroupID");
122 gl_LocalInvocationID = shader->symbols->get_variable("gl_LocalInvocationID");
builtin_functions.h 55 _mesa_get_main_function_signature(glsl_symbol_table *symbols);
  /xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/
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...]
link_functions.cpp 35 glsl_symbol_table *symbols);
84 find_matching_signature(name, &callee->parameters, linked->symbols);
95 shader_list[i]->symbols);
112 ir_function *f = linked->symbols->get_function(name);
120 linked->symbols->add_function(f);
226 ir_variable *var = linked->symbols->get_variable(ir->var->name);
232 linked->symbols->add_variable(var);
315 glsl_symbol_table *symbols)
317 ir_function *const f = symbols->get_function(name);
lower_cs_derived.cpp 64 main_sig = _mesa_get_main_function_signature(shader->symbols);
116 WorkGroupSize = shader->symbols->get_variable("gl_LocalGroupSizeARB");
118 WorkGroupSize = shader->symbols->get_variable("gl_WorkGroupSize");
121 gl_WorkGroupID = shader->symbols->get_variable("gl_WorkGroupID");
122 gl_LocalInvocationID = shader->symbols->get_variable("gl_LocalInvocationID");
builtin_functions.h 44 _mesa_get_main_function_signature(glsl_symbol_table *symbols);
  /xsrc/external/mit/xkeyboard-config/dist/tests/ruby/
find_fragments.rb 11 symbolsDir = "#{baseDir}/symbols"
38 allSyms.find_all do | symsName, symbols |
41 # Counting only symbols which used more than once
42 numDupSymbols = symbols.keys.inject(0) do | rv, keycode |
43 c = everything.cardinality(keycode, symbols[keycode])
44 puts "#{keycode} -> #{symbols[keycode]}, #{c}"
49 puts "l: #{symbols.length} d: #{numDupSymbols} c: #{numCombinations}"
xkbparser.rb 4 # Commont parsing classes for symbols/inet
11 class Symbols < Hash
20 # Write-only property, parent list of symbols definitions
25 # Whether this set of symbols is hidden or not
35 # Add "dependency" - the symbols referenced using the "include" statement.
87 # other hash, use symbols + and * for marking the elements which existed in
123 newSyms = Symbols.new
131 self.find_all do | symbols, mapping |
132 s += "partial alphanumeric_keys\nxkb_symbols \"#{symbols}\" #{mapping};\n\n"
139 find_all do | symbols, mapping
    [all...]
  /xsrc/external/mit/xorg-server.old/dist/hw/sun/
sunKbd.c 430 names->symbols = symbolsbuf;
433 (void) strcpy (symbolsbuf, "symbols/");
440 (void) strcat (names->symbols, "us(sun2)");
445 (void) strcat (names->symbols, "us(sun3)");
454 (void) strcat (names->symbols,
461 (void) strcat (names->symbols,
474 (void) strcat (names->symbols, "us(pc101)");
479 (void) strcat (names->symbols, "sun/us(sun4ol)");
481 (void) strcat (names->symbols, "sun/us(sun4)");
501 (void) strcat (names->symbols, "sun/us(sun5ol)")
    [all...]
  /xsrc/external/mit/MesaLib/dist/bin/
symbols-check.py 8 # This list contains symbols that _might_ be exported for some platforms
31 List all the (non platform-specific) symbols exported by the library
34 symbols = []
49 symbols.append(symbol_name)
50 return symbols
55 List all the (non platform-specific) symbols exported by the library
58 symbols = []
63 # The lines with the symbols are made of at least 4 columns; see details below
75 # De-mangle symbols
78 symbols.append(symbol_name
    [all...]
  /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/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/brotli/dist/c/enc/
cluster_inc.h 72 uint32_t* symbols,
112 if (symbols[i] == best_idx2) {
113 symbols[i] = best_idx1;
170 symbols[0..in_size), but this property is not preserved in this function.
174 HistogramType* out, uint32_t* symbols) CODE({
177 uint32_t best_out = i == 0 ? symbols[0] : symbols[i - 1];
189 symbols[i] = best_out;
192 /* Recompute each out based on raw and symbols. */
197 FN(HistogramAddHistogram)(&out[symbols[i]], &in[i])
    [all...]
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...]
  /xsrc/external/mit/xorg-server/dist/hw/sun/
sunKbd.c 476 names->symbols = symbolsbuf;
479 (void) strcpy (symbolsbuf, "symbols/");
486 (void) strcat (names->symbols, "us(sun2)");
491 (void) strcat (names->symbols, "us(sun3)");
500 (void) strcat (names->symbols,
507 (void) strcat (names->symbols,
520 (void) strcat (names->symbols, "us(pc101)");
525 (void) strcat (names->symbols, "sun/us(sun4ol)");
527 (void) strcat (names->symbols, "sun/us(sun4)");
547 (void) strcat (names->symbols, "sun/us(sun5ol)")
    [all...]
  /xsrc/external/mit/libdrm/dist/
symbols-check.py 8 # This list contains symbols that _might_ be exported for some platforms
28 List all the (non platform-specific) symbols exported by the library
30 symbols = []
45 symbols.append(symbol_name)
47 return symbols
52 parser.add_argument('--symbols-file',
55 help='path to file containing symbols')
  /xsrc/external/mit/xkeyboard-config/dist/tests/
genLists4Comparison.sh 28 for sym in $ROOT/symbols/*; do
78 echo "Legend: '-' is for rules/base.*xml.in, '+' is for symbols/*"
  /xsrc/external/mit/libX11/dist/src/xkb/
XKBList.c 133 if (ptrns->symbols)
134 symsLen = (int) strlen(ptrns->symbols);
177 memcpy(str, ptrns->symbols, (size_t) symsLen);
218 list->symbols = _ReadListing(&buf, list->num_symbols, &status);
248 if (list->symbols)
249 _FreeComponentNames(list->num_symbols, list->symbols);
  /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...]
  /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/freetype/dist/builds/unix/
unix-cc.in 113 # export symbols
126 -export-symbols $(EXPORTS_LIST)
  /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/xkbcomp/dist/
Makefile.am 52 symbols.c \

Completed in 19 milliseconds

1 2 3 4 5 6 7 8 91011>>