HomeSort by relevance Sort by last modified time
    Searched defs:table (Results 1 - 25 of 1493) 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
  /prebuilts/ndk/r11/sources/android/support/src/musl-ctype/
iswalpha.c 3 static const unsigned char table[] = { variable
10 return (table[table[wc>>8]*32+((wc&255)>>3)]>>(wc&7))&1;
iswpunct.c 3 static const unsigned char table[] = { variable
10 return (table[table[wc>>8]*32+((wc&255)>>3)]>>(wc&7))&1;
wcwidth.c 3 static const unsigned char table[] = { variable
16 if ((table[table[wc>>8]*32+((wc&255)>>3)]>>(wc&7))&1)
  /prebuilts/ndk/r13/sources/android/support/src/musl-ctype/
iswalpha.c 3 static const unsigned char table[] = { variable
10 return (table[table[wc>>8]*32+((wc&255)>>3)]>>(wc&7))&1;
iswpunct.c 3 static const unsigned char table[] = { variable
10 return (table[table[wc>>8]*32+((wc&255)>>3)]>>(wc&7))&1;
wcwidth.c 3 static const unsigned char table[] = { variable
16 if ((table[table[wc>>8]*32+((wc&255)>>3)]>>(wc&7))&1)
  /toolchain/binutils/binutils-2.25/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/regex-re2/benchlog/
mktable 4 sub table() { subroutine
7 <table border=0>
17 </table>
118 "table" => \&table,
  /external/syslinux/com32/modules/stubs/
swapstub.asm 5 mov dl,[cs:bx+(table-$$)]
33 table: label
  /frameworks/base/tools/aapt2/process/
SymbolTable_test.cpp 24 std::unique_ptr<ResourceTable> table = local
32 ResourceTableSymbolSource symbol_source(table.get());
43 std::unique_ptr<ResourceTable> table = local
49 ResourceTableSymbolSource symbol_source(table.get());
57 std::unique_ptr<ResourceTable> table = local
65 symbol_table.AppendSource(util::make_unique<ResourceTableSymbolSource>(table.get()));
  /prebuilts/ndk/r13/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.25/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.25/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
  /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);
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/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);
  /prebuilts/ndk/r13/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);

Completed in 888 milliseconds

1 2 3 4 5 6 7 8 91011>>