HomeSort by relevance Sort by last modified time
    Searched refs:symbols (Results 76 - 100 of 480) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/mesa3d/src/glsl/
builtin_variables.cpp 509 glsl_symbol_table *const symtab = state->symbols;
527 state->symbols->get_type("gl_DepthRangeParameters"));
535 glsl_symbol_table *const symtab = state->symbols;
650 add_builtin_variable(instructions, state->symbols,
667 add_builtin_variable(instructions, state->symbols,
675 add_builtin_variable(instructions, state->symbols,
692 add_variable(instructions, state->symbols,
716 glsl_symbol_table *const symtab = state->symbols;
733 add_builtin_variable(instructions, state->symbols,
752 add_variable(instructions, state->symbols,
    [all...]
glsl_types.cpp 264 glsl_type::generate_100ES_types(state->symbols);
267 glsl_type::generate_110_types(state->symbols, true);
270 glsl_type::generate_120_types(state->symbols, true);
273 glsl_type::generate_130_types(state->symbols, true);
276 glsl_type::generate_140_types(state->symbols);
285 glsl_type::generate_ARB_texture_rectangle_types(state->symbols,
289 glsl_type::generate_OES_texture_3D_types(state->symbols,
295 glsl_type::generate_EXT_texture_array_types(state->symbols,
304 glsl_type::generate_OES_EGL_image_external_types(state->symbols,
  /external/oprofile/pp/
opreport_options.cpp 36 bool symbols; member in namespace:options
69 popt::option(options::symbols, "symbols", 'l',
70 "list all symbols"),
83 popt::option(exclude_symbols, "exclude-symbols", 'e',
84 "exclude these comma separated symbols", "symbols"),
85 popt::option(include_symbols, "include-symbols", 'i',
86 "include these comma separated symbols", "symbols"),
    [all...]
opreport.cpp 373 symbol_collection symbols = pc.select_symbols(choice); local
374 options::sort_by.sort(symbols, options::reverse_sort,
381 xml_out = new format_output::xml_formatter(&pc, symbols,
406 xml_support = new xml_utils(xml_out, symbols, nr_classes,
410 text_out->output(cout, symbols);
423 diff_collection symbols = dc.get_symbols(choice); local
441 options::sort_by.sort(symbols, options::reverse_sort,
444 out.output(cout, symbols);
452 symbol_collection symbols = cg.get_symbols(); local
454 options::sort_by.sort(symbols, options::reverse_sort
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/
pprof 137 # Special routine name that should not have any symbols.
154 <profile> is a remote form. Symbols are obtained from host:port$SYMBOL_PAGE
166 pprof --symbols <program>
182 --add_lib=<file> Read additional symbols and line info from the given library
199 --symbols Print demangled symbol names found at given addresses
389 "symbols!" => \$main::opt_symbols,
435 # Disassembly/listing/symbols mode requires address-level info
524 # --symbols needs a binary-name (to run nm on, etc) but not profiles
571 # Printing symbols is special and requires a lot less info that most.
573 PrintSymbols(*STDIN); # Get /proc/maps and symbols output from stdi
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
ff_fragment_shader.cpp 547 current = p->shader->symbols->get_variable("gl_CurrentAttribFragMESA");
558 ir_variable *var = p->shader->symbols->get_variable("gl_Color");
589 var = p->shader->symbols->get_variable("gl_TextureEnvColor");
597 var = p->shader->symbols->get_variable("gl_Color");
927 ir_variable *tc_array = p->shader->symbols->get_variable("gl_TexCoord");
950 sampler_type = p->shader->symbols->get_type("sampler1DShadow");
952 sampler_type = p->shader->symbols->get_type("sampler1D");
957 sampler_type = p->shader->symbols->get_type("sampler1DArrayShadow");
959 sampler_type = p->shader->symbols->get_type("sampler1DArray");
964 sampler_type = p->shader->symbols->get_type("sampler2DShadow")
    [all...]
  /external/mesa3d/src/mesa/main/
ff_fragment_shader.cpp 547 current = p->shader->symbols->get_variable("gl_CurrentAttribFragMESA");
558 ir_variable *var = p->shader->symbols->get_variable("gl_Color");
589 var = p->shader->symbols->get_variable("gl_TextureEnvColor");
597 var = p->shader->symbols->get_variable("gl_Color");
927 ir_variable *tc_array = p->shader->symbols->get_variable("gl_TexCoord");
950 sampler_type = p->shader->symbols->get_type("sampler1DShadow");
952 sampler_type = p->shader->symbols->get_type("sampler1D");
957 sampler_type = p->shader->symbols->get_type("sampler1DArrayShadow");
959 sampler_type = p->shader->symbols->get_type("sampler1DArray");
964 sampler_type = p->shader->symbols->get_type("sampler2DShadow")
    [all...]
  /external/bison/src/
reduce.c 48 /* Set of all accessible symbols. */
51 /* Set of symbols used to define rule precedence (so they are
83 | Remember that rules are 1-origin, symbols are 0-origin. |
140 /* Find out which productions are reachable and which symbols are
142 symbols which only has the start symbol in it, iterate over all
145 reachable symbols, add the production to the set of reachable
147 production to the set of reachable symbols.
153 and the set V of symbols in the reduced grammar.
303 warn_at (symbols[i]->location, _("nonterminal useless in grammar: %s"),
304 symbols[i]->tag)
    [all...]
parse-gram.y 224 %type <list> symbols.1 symbols.prec generic_symlist generic_symlist_item
430 | "%type" TYPE symbols.1
441 precedence_declarator type.opt symbols.prec
466 /* Just like symbols.1 but accept INT for the sake of POSIX. */
467 symbols.prec:
470 | symbols.prec symbol.prec
479 /* One or more symbols to be %typed. */
480 symbols.1:
483 | symbols.1 symbo
    [all...]
  /external/chromium_org/third_party/libwebp/utils/
huffman.c 109 // Get symbols.
129 if (IsFull(tree)) return 0; // error: too many symbols.
155 // Find out number of symbols and the root symbol.
187 // Add symbols one-by-one.
207 const int* const symbols, int max_symbol,
215 assert(symbols != NULL);
220 // Add symbols one-by-one.
223 if (symbols[i] < 0 || symbols[i] >= max_symbol) {
226 if (!TreeAddSymbol(tree, symbols[i], codes[i], code_lengths[i]))
    [all...]
  /external/chromium_org/tools/cygprofile/
symbolize.py 9 library), the script can produce three different outputs: 1) symbols for the
25 lib_name: library or executable containing symbols
68 """Get output from running nm and greping for text symbols.
74 list of sorted unique addresses and corresponding size of function symbols
75 in lib_file and map of addresses to all symbols at a particular address
97 # Multiple symbols may be at the same address. This is do to aliasing
228 symbols = FindFunctions(call[3], unique_addrs, address_map)
229 for symbol in symbols:
237 symbols = FindFunctions(call[3], unique_addrs, address_map)
239 + symbols[0]
    [all...]
  /external/webp/src/utils/
huffman.c 109 // Get symbols.
129 if (IsFull(tree)) return 0; // error: too many symbols.
155 // Find out number of symbols and the root symbol.
187 // Add symbols one-by-one.
207 const int* const symbols, int max_symbol,
215 assert(symbols != NULL);
220 // Add symbols one-by-one.
223 if (symbols[i] < 0 || symbols[i] >= max_symbol) {
226 if (!TreeAddSymbol(tree, symbols[i], codes[i], code_lengths[i]))
    [all...]
  /external/icu4c/samples/numfmt/
main.cpp 174 DecimalFormatSymbols symbols(*dnf->getDecimalFormatSymbols());
175 symbols.setSymbol(DecimalFormatSymbols::kCurrencySymbol, currencyMap[i].symbol);
176 dnf->setDecimalFormatSymbols(symbols); // do not adopt symbols: Jitterbug 2889
  /external/chromium_org/third_party/tcmalloc/vendor/src/
pprof 137 # Special routine name that should not have any symbols.
154 <profile> is a remote form. Symbols are obtained from host:port$SYMBOL_PAGE
166 pprof --symbols <program>
182 --add_lib=<file> Read additional symbols and line info from the given library
199 --symbols Print demangled symbol names found at given addresses
389 "symbols!" => \$main::opt_symbols,
435 # Disassembly/listing/symbols mode requires address-level info
524 # --symbols needs a binary-name (to run nm on, etc) but not profiles
571 # Printing symbols is special and requires a lot less info that most.
573 PrintSymbols(*STDIN); # Get /proc/maps and symbols output from stdi
    [all...]
  /libcore/luni/src/test/java/libcore/java/text/
OldDecimalFormatSymbolsTest.java 36 DecimalFormatSymbols symbols = new DecimalFormatSymbols(Locale.FRANCE); local
47 assertEquals(symbols, riSymbols);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-netrexx.jar 
  /external/libvpx/libvpx/build/make/
gen_msvs_def.sh 21 This script generates a MSVC module definition file containing a list of symbols
23 use #comment syntax) but in general, take the form of a list of symbols:
  /external/openfst/src/extensions/far/
farcompilestrings.cc 45 DEFINE_string(symbols, "", "Label symbol table");
farprintstrings.cc 39 DEFINE_string(symbols, "", "Label symbol table");
  /external/harfbuzz_ng/test/shaping/
hb_test_tools.py 71 def __init__ (self, formatter, colors=diff_colors, symbols=diff_symbols):
74 self.symbols = symbols
91 if l[0] in self.symbols:
92 i = self.symbols.index (l[0])
103 return [s1+s2+self.formatter.newline () for (s1,s2) in zip (self.symbols, oo) if s2]
108 if l[0] not in self.symbols:
111 i = self.symbols.index (l[0])
132 def diff_files (files, symbols=diff_symbols):
142 sys.stdout.writelines ([symbols[i], l]
    [all...]
  /external/chromium_org/v8/test/mjsunit/tools/
tickprocessor.js 73 this.symbols = [[
103 this.symbols = [[
137 this.symbols = [[
167 this.symbols = [[
197 this.symbols = [
210 ' Static symbols',
266 exe_exe_syms, '.exe with .exe symbols');
277 exe_dll_syms, '.exe with .dll symbols');
289 dll_dll_syms, '.dll with .dll symbols');
300 dll_exe_syms, '.dll with .exe symbols');
    [all...]
  /external/v8/test/mjsunit/tools/
tickprocessor.js 69 this.symbols = [[
99 this.symbols = [[
133 this.symbols = [[
163 this.symbols = [[
193 this.symbols = [
206 ' Static symbols',
262 exe_exe_syms, '.exe with .exe symbols');
273 exe_dll_syms, '.exe with .dll symbols');
285 dll_dll_syms, '.dll with .dll symbols');
296 dll_exe_syms, '.dll with .exe symbols');
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
glsl_types.cpp 264 glsl_type::generate_100ES_types(state->symbols);
267 glsl_type::generate_110_types(state->symbols, true);
270 glsl_type::generate_120_types(state->symbols, true);
273 glsl_type::generate_130_types(state->symbols, true);
276 glsl_type::generate_140_types(state->symbols);
285 glsl_type::generate_ARB_texture_rectangle_types(state->symbols,
289 glsl_type::generate_OES_texture_3D_types(state->symbols,
295 glsl_type::generate_EXT_texture_array_types(state->symbols,
304 glsl_type::generate_OES_EGL_image_external_types(state->symbols,
ir_print_visitor.cpp 76 symbols = _mesa_symbol_table_ctor();
83 _mesa_symbol_table_dtor(symbols);
112 if (_mesa_symbol_table_find_symbol(this->symbols, -1, var->name) == NULL) {
119 _mesa_symbol_table_add_symbol(this->symbols, -1, name, var);
163 _mesa_symbol_table_push_scope(symbols);
202 _mesa_symbol_table_pop_scope(symbols);
  /external/chromium_org/third_party/protobuf/python/google/protobuf/
descriptor_pool.py 173 This method also has the side effect of loading all the symbols found in
204 symbols = list(self._ExtractSymbols(dep_proto.message_type, package))
205 scope.update(symbols)
206 scope.update((_strip_package(k), v) for k, v in symbols)
208 symbols = list(self._ExtractEnums(dep_proto.enum_type, package))
209 scope.update(symbols)
210 scope.update((_strip_package(k), v) for k, v in symbols)
238 scope: Dict mapping short and full symbols to message and enum types.
456 """Pulls out all the symbols from descriptor protos.
459 desc_protos: The protos to extract symbols from
    [all...]

Completed in 369 milliseconds

1 2 34 5 6 7 8 91011>>