HomeSort by relevance Sort by last modified time
    Searched defs:table (Results 1 - 25 of 1580) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/av/media/libstagefright/codecs/amrwbenc/inc/
log2_tab.h 23 * Purpose : Table for routine Log2().
28 static const Word16 table[33] = variable
  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
lsp_lsf_tbl.cpp 37 Description: Added #ifdef __cplusplus and removed "extern" from table
80 extern const Word16 table[];
81 const Word16 table[65] = variable
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-h8300/
relax-7a.s 10 mov.l @(table+4:32,er2),er2
14 table: label
  /external/elfutils/libdw/
dwarf_macro_getsrcfiles.c 40 Dwarf_Macro_Op_Table *const table = macro->table; local
41 if (table->files == NULL)
43 Dwarf_Off line_offset = table->line_offset;
51 /* If TABLE->comp_dir is NULL that could mean any of the
74 if (__libdw_getsrclines (dbg, line_offset, table->comp_dir,
75 table->is_64bit ? 8 : 4,
76 NULL, &table->files) < 0)
77 table->files = (void *) -1;
80 if (table->files == (void *) -1
    [all...]
  /external/iptables/iptables/
ip6tables-standalone.c 14 * firewall table (aimed for the 2.3 kernels)
44 char *table = "filter"; local
61 ret = do_command6(argc, argv, &table, &handle, false);
iptables-standalone.c 14 * firewall table (aimed for the 2.3 kernels)
46 char *table = "filter"; local
64 ret = do_command4(argc, argv, &table, &handle, false);
xtables-arp-standalone.c 14 * firewall table (aimed for the 2.3 kernels)
49 char *table = "filter"; local
67 ret = do_commandarp(&h, argc, argv, &table);
xtables-eb-standalone.c 14 * firewall table (aimed for the 2.3 kernels)
49 char *table = "filter"; local
66 ret = do_commandeb(&h, argc, argv, &table);
  /external/libcxx/test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.dtor/
dtor.pass.cpp 29 std::ctype<char>::mask table[256]; local
30 std::locale l(std::locale::classic(), new std::ctype<char>(table));
  /external/syslinux/com32/modules/stubs/
swapstub.asm 5 mov dl,[cs:bx+(table-$$)]
33 table: label
  /external/tensorflow/tensorflow/core/lib/io/
two_level_iterator.h 22 namespace table { namespace in namespace:tensorflow
38 } // namespace table
table.h 25 namespace table { namespace in namespace:tensorflow
32 // A Table is a sorted map from strings to strings. Tables are
33 // immutable and persistent. A Table may be safely accessed from
35 class Table {
37 // Attempt to open the table that is stored in bytes [0..file_size)
39 // retrieving data from the table.
41 // If successful, returns ok and sets "*table" to the newly opened
42 // table. The client should delete "*table" when no longer needed.
43 // If there was an error while initializing the table, sets "*table
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.dtor/
dtor.pass.cpp 29 std::ctype<char>::mask table[256]; local
30 std::locale l(std::locale::classic(), new std::ctype<char>(table));
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/m68k/
p2663.s 5 jsr table(%pc,%d7.w) | wrong
6 jsr %pc@(table-.-2:b,%d7:w) | correct but cryptic
9 table: label
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-m68hc11/
bug-1403.s 8 ldx #table
14 .globl table
15 table: .long 0 label
bug-3331.s 12 std table ;; This instruction uses a symbol in page0
18 .globl table
19 table: .long 0 label
bug-1417.s 7 tst table
12 ldx #table ; Instruction removed
13 bset 0,x #4 ; Changed to bset *table #4
20 .globl table
21 table: .long 0 label
  /external/libcxx/test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/
table.pass.cpp 14 // const mask* table() const throw();
25 assert(f.table() == f.classic_table());
28 std::ctype<char>::mask table[256]; local
29 std::locale l(std::locale::classic(), new std::ctype<char>(table));
31 assert(f.table() == table);
  /frameworks/base/tools/aapt2/link/
NoDefaultResourceRemover_test.cpp 25 std::unique_ptr<ResourceTable> table = local
41 ASSERT_TRUE(remover.Consume(context.get(), table.get()));
43 EXPECT_TRUE(table->FindResource(test::ParseNameOrDie("android:string/foo")));
44 EXPECT_FALSE(table->FindResource(test::ParseNameOrDie("android:string/bar")));
45 EXPECT_TRUE(table->FindResource(test::ParseNameOrDie("android:string/bat")));
46 EXPECT_TRUE(table->FindResource(test::ParseNameOrDie("android:string/baz")));
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/
table.pass.cpp 14 // const mask* table() const throw();
25 assert(f.table() == f.classic_table());
28 std::ctype<char>::mask table[256]; local
29 std::locale l(std::locale::classic(), new std::ctype<char>(table));
31 assert(f.table() == table);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
IntHashtable.java 17 * Integer hash table.
30 table.remove(new Integer(key));
32 table.put(new Integer(key), new Integer(value));
37 Integer value = table.get(new Integer(key));
43 private Map<Integer, Integer> table = new HashMap<Integer, Integer>(); field in class:IntHashtable
IntStringHashtable.java 17 * Integer-String hash table. Uses Java Hashtable for now.
30 table.remove(new Integer(key));
32 table.put(new Integer(key), value);
37 String value = table.get(new Integer(key));
43 private Map<Integer, String> table = new HashMap<Integer, String>(); field in class:IntStringHashtable
LongHashtable.java 29 table.remove(new Long(key));
31 table.put(new Long(key), new Integer(value));
36 Integer value = table.get(new Long(key));
42 private Map<Long, Integer> table = new HashMap<Long, Integer>(); field in class:LongHashtable
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
IntHashtable.java 15 * Integer hash table.
27 table.remove(new Integer(key));
29 table.put(new Integer(key), new Integer(value));
34 Integer value = table.get(new Integer(key));
40 private Map<Integer, Integer> table = new HashMap<Integer, Integer>(); field in class:IntHashtable
IntStringHashtable.java 15 * Integer-String hash table. Uses Java Hashtable for now.
27 table.remove(new Integer(key));
29 table.put(new Integer(key), value);
34 String value = table.get(new Integer(key));
40 private Map<Integer, String> table = new HashMap<Integer, String>(); field in class:IntStringHashtable

Completed in 843 milliseconds

1 2 3 4 5 6 7 8 91011>>