HomeSort by relevance Sort by last modified time
    Searched refs:symbols (Results 1 - 25 of 607) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/icu/source/tools/memcheck/
ICUMemCheck.pl 48 $symbols = `nm -u -C $f`;
49 if ($symbols =~ /U +operator delete\(void\*\)/) {
52 if ($symbols =~ /U +operator delete\[\]\(void\*\)/) {
55 if ($symbols =~ /U +operator new\(unsigned int\)/) {
58 if ($symbols =~ /U +operator new\[\]\(unsigned int\)/) {
61 if ($symbols =~ /U +malloc.*/) {
64 if ($symbols =~ /U +free.*/) {
  /external/icu/icu4c/source/tools/memcheck/
ICUMemCheck.pl 48 $symbols = `nm -u -C $f`;
49 if ($symbols =~ /U +operator delete\(void\*\)/) {
52 if ($symbols =~ /U +operator delete\[\]\(void\*\)/) {
55 if ($symbols =~ /U +operator new\(unsigned int\)/) {
58 if ($symbols =~ /U +operator new\[\]\(unsigned int\)/) {
61 if ($symbols =~ /U +malloc.*/) {
64 if ($symbols =~ /U +free.*/) {
  /external/chromium_org/v8/test/mjsunit/harmony/
private.js 30 var symbols = []
34 // serialization of Symbols added to the 'symbols'
35 // array. Adjust if you extend 'symbols' with other
46 symbols.push(%CreatePrivateSymbol("66"))
47 symbols.push(Object(%CreatePrivateSymbol("66")).valueOf())
49 gc() // Promote existing symbols and then allocate some more.
56 for (var i in symbols) {
57 assertEquals("symbol", typeof symbols[i])
58 assertTrue(typeof symbols[i] === "symbol"
    [all...]
  /external/chromium_org/v8/test/cctest/
test-symbols.cc 23 Handle<Symbol> symbols[kNumSymbols]; local
27 symbols[i] = isolate->factory()->NewSymbol();
28 CHECK(symbols[i]->IsName());
29 CHECK(symbols[i]->IsSymbol());
30 CHECK(symbols[i]->HasHashCode());
31 CHECK_GT(symbols[i]->Hash(), 0);
32 os << Brief(*symbols[i]) << "\n";
34 symbols[i]->Print(os);
37 symbols[i]->ObjectVerify();
44 // All symbols should be distinct
    [all...]
  /external/chromium_org/v8/test/mjsunit/es6/
symbols.js 30 var symbols = []
34 // serialization of Symbols added to the 'symbols'
35 // array. Adjust if you extend 'symbols' with other
48 symbols.push(Symbol())
49 symbols.push(Symbol(undefined))
50 symbols.push(Symbol("66"))
51 symbols.push(Symbol(66))
52 symbols.push(Symbol().valueOf())
53 symbols.push(indirect()
    [all...]
  /bionic/libc/tools/
check-symbols-glibc.py 22 symbols = set()
31 symbols.add(symbol)
33 return symbols
36 symbols = set()
38 symbols = symbols | GetSymbolsFromSo('%s/system/lib64/%s' % (os.environ['ANDROID_PRODUCT_OUT'], f))
39 return symbols
42 symbols = set()
45 symbols = symbols | GetSymbolsFromSo(f
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
ir_import_prototypes.cpp 45 import_prototype_visitor(exec_list *list, glsl_symbol_table *symbols,
50 this->symbols = symbols;
58 this->function = this->symbols->get_function(ir->name);
66 this->symbols->add_function(this->function);
98 glsl_symbol_table *symbols; member in class:import_prototype_visitor
110 * \param symbols Symbol table where new functions will be stored
115 glsl_symbol_table *symbols, void *mem_ctx)
117 import_prototype_visitor v(dest, symbols, mem_ctx);
  /external/mesa3d/src/glsl/
ir_import_prototypes.cpp 45 import_prototype_visitor(exec_list *list, glsl_symbol_table *symbols,
50 this->symbols = symbols;
58 this->function = this->symbols->get_function(ir->name);
66 this->symbols->add_function(this->function);
98 glsl_symbol_table *symbols; member in class:import_prototype_visitor
110 * \param symbols Symbol table where new functions will be stored
115 glsl_symbol_table *symbols, void *mem_ctx)
117 import_prototype_visitor v(dest, symbols, mem_ctx);
  /external/valgrind/main/drd/tests/
run_openmp_test 32 if [ "${line%: no symbols}" != "${line}" ]; then
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_debug_refcnt.c 114 static void dump_stack(const char* symbols[STACK_LEN])
119 if(symbols[i])
120 fprintf(stream, "%s\n", symbols[i]);
145 const char* symbols[STACK_LEN]; local
157 symbols[i] = debug_symbol_name_cached(frames[i].function);
159 symbols[i] = 0;
167 dump_stack(symbols);
174 dump_stack(symbols);
182 dump_stack(symbols);
189 dump_stack(symbols);
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_debug_refcnt.c 114 static void dump_stack(const char* symbols[STACK_LEN])
119 if(symbols[i])
120 fprintf(stream, "%s\n", symbols[i]);
145 const char* symbols[STACK_LEN]; local
157 symbols[i] = debug_symbol_name_cached(frames[i].function);
159 symbols[i] = 0;
167 dump_stack(symbols);
174 dump_stack(symbols);
182 dump_stack(symbols);
189 dump_stack(symbols);
    [all...]
  /external/oprofile/libpp/
symbol_container.cpp 3 * Internal container for symbols
23 return symbols.size();
29 pair<symbols_t::iterator, bool> p = symbols.insert(symb);
87 symbols_t::const_iterator cit = symbols.begin();
88 symbols_t::const_iterator end = symbols.end();
99 for (it = symbols.begin(); it != symbols.end(); ++it) {
111 return symbols.begin();
117 return symbols.end();
122 symbols_t::const_iterator it = symbols.find(symbol)
    [all...]
  /external/chromium_org/net/spdy/
hpack_huffman_table.cc 60 std::vector<Symbol> symbols(symbol_count);
61 // Validate symbol id sequence, and copy into |symbols|.
67 symbols[i] = input_symbols[i];
70 std::sort(symbols.begin(), symbols.end(), SymbolLengthAndIdCompare);
71 if (symbols[0].code != 0) {
75 for (size_t i = 1; i != symbols.size(); i++) {
76 unsigned code_shift = 32 - symbols[i-1].length;
77 uint32 code = symbols[i-1].code + (1 << code_shift);
79 if (code != symbols[i].code)
    [all...]
  /external/chromium_org/tools/memory_inspector/memory_inspector/core/
symbol.py 6 class Symbols(object):
7 """A dictionary of symbols indexed by the key 'exec_path+0xoffset'."""
10 self.symbols = {} # 'foo.so+0x1234' -> |Symbol|
14 self.symbols[Symbols._GetKey(exec_file_rel_path, offset)] = symbol
17 return self.symbols.get(Symbols._GetKey(exec_file_rel_path, offset))
20 assert(isinstance(other, Symbols))
21 self.symbols.update(other.symbols) # pylint: disable=W021
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
scopes.rb 87 symbols
90 $c::symbols = Set.new;
93 { $res = $c::symbols; }
97 : 'int' ID {$c::symbols.add($ID.text)} ';'
103 $c::symbols.include?($ID.text) or raise RuntimeError, $ID.text
111 symbols
114 $d::symbols = Set.new
117 { $res = $d::symbols; }
121 : 'int' ID {$d::symbols.add($ID.text)} ';'
129 $d[s].symbols.include?($ID.text) and throw(:found
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
cparse.py 13 from parse_core import Symbols, Parser
102 def parse(self,lexer,symbols):
103 symbols = Symbols(symbols)
112 node.parse(lexer,symbols)
133 def parse(self,lexer,symbols):
162 def parse(self,lexer,symbols):
163 symbols = Symbols(symbols
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
symbol_table.c 32 * The linked list of symbols with the same name is ordered by scope
41 * The linked list of symbols with the same scope is unordered. Symbols
48 * Header information for the list of symbols with the same name.
56 * Name space are arbitrary user assigned integers. No two symbols can
80 /** Linked list of symbols with the same name. */
81 struct symbol *symbols; member in struct:symbol_header
92 /** Linked list of symbols with the same scope. */
93 struct symbol *symbols; member in struct:scope_level
101 /** Hash table containing all symbols in the symbol table. *
    [all...]
  /external/mesa3d/src/mesa/program/
symbol_table.c 32 * The linked list of symbols with the same name is ordered by scope
41 * The linked list of symbols with the same scope is unordered. Symbols
48 * Header information for the list of symbols with the same name.
56 * Name space are arbitrary user assigned integers. No two symbols can
80 /** Linked list of symbols with the same name. */
81 struct symbol *symbols; member in struct:symbol_header
92 /** Linked list of symbols with the same scope. */
93 struct symbol *symbols; member in struct:scope_level
101 /** Hash table containing all symbols in the symbol table. *
    [all...]
  /external/zopfli/src/zopfli/
tree.h 37 Converts a series of Huffman tree bitlengths, to the bit values of the symbols.
40 unsigned* symbols);
  /external/chromium_org/third_party/brotli/src/brotli/enc/
cluster.h 111 int* symbols,
119 if (all_symbols.find(symbols[i]) == all_symbols.end()) {
120 all_symbols.insert(symbols[i]);
121 clusters.push_back(symbols[i]);
147 if (symbols[i] == best_idx2) {
148 symbols[i] = best_idx1;
196 Histogram<kSize>* out, int* symbols) {
199 all_symbols.insert(symbols[i]);
202 int best_out = i == 0 ? symbols[0] : symbols[i - 1]
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
miscdtfm.cpp 161 DateFormatSymbols* symbols = new DateFormatSymbols(Locale::getUS(), status); local
166 SimpleDateFormat *df = new SimpleDateFormat(UnicodeString("E hh:mm"), *symbols, status);
173 symbols->setLocalPatternChars(UnicodeString("abcdefghijklmonpqr")); // change value of field
187 delete symbols;
196 DateFormatSymbols* symbols = new DateFormatSymbols(Locale::getUS(), status); local
200 df->setDateFormatSymbols(*symbols);
206 symbols->setLocalPatternChars(UnicodeString("abcdefghijklmonpqr")); // change value of field
220 delete symbols;
227 DateFormatSymbols* symbols = new DateFormatSymbols(Locale::getUS(), status); local
229 SimpleDateFormat *df = new SimpleDateFormat(UnicodeString("E hh:mm"), symbols, status)
256 DateFormatSymbols* symbols = new DateFormatSymbols(Locale::getUS(), status); local
328 DateFormatSymbols *symbols = new DateFormatSymbols(Locale::getJapan(), status); local
    [all...]
  /external/icu/icu4c/source/test/intltest/
miscdtfm.cpp 161 DateFormatSymbols* symbols = new DateFormatSymbols(Locale::getUS(), status); local
166 SimpleDateFormat *df = new SimpleDateFormat(UnicodeString("E hh:mm"), *symbols, status);
173 symbols->setLocalPatternChars(UnicodeString("abcdefghijklmonpqr")); // change value of field
187 delete symbols;
196 DateFormatSymbols* symbols = new DateFormatSymbols(Locale::getUS(), status); local
200 df->setDateFormatSymbols(*symbols);
206 symbols->setLocalPatternChars(UnicodeString("abcdefghijklmonpqr")); // change value of field
220 delete symbols;
227 DateFormatSymbols* symbols = new DateFormatSymbols(Locale::getUS(), status); local
229 SimpleDateFormat *df = new SimpleDateFormat(UnicodeString("E hh:mm"), symbols, status)
256 DateFormatSymbols* symbols = new DateFormatSymbols(Locale::getUS(), status); local
328 DateFormatSymbols *symbols = new DateFormatSymbols(Locale::getJapan(), status); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/text/
LocaleWin.cpp 518 Vector<String, DecimalSymbolsSize> symbols;
527 symbols.append("0");
528 symbols.append("1");
529 symbols.append("2");
530 symbols.append("3");
531 symbols.append("4");
532 symbols.append("5");
533 symbols.append("6");
534 symbols.append("7");
535 symbols.append("8")
    [all...]
  /external/chromium_org/third_party/smhasher/src/
AvalancheTest.cpp 7 const char * symbols = ".123456789X"; local
28 printf("%c",symbols[s]);
  /external/llvm/test/MC/MachO/ARM/
llvm-objdump-macho-stripped.s 4 # We are checking that disassembly happens when there are no symbols.

Completed in 675 milliseconds

1 2 3 4 5 6 7 8 91011>>