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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/media/libstagefright/codecs/amrwbenc/inc/
log2_tab.h 23 * Purpose : Table for routine Log2().
28 static const Word16 table[33] = variable
  /frameworks/base/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[65] = variable
  /external/icu4c/layout/
NonContextualGlyphSubst.h 25 LookupTable table; member in struct:NonContextualGlyphSubstitutionHeader
  /external/iptables/iptables/
ip6tables-standalone.c 14 * firewall table (aimed for the 2.3 kernels)
49 char *table = "filter"; local
66 ret = do_command6(argc, argv, &table, &handle);
iptables-standalone.c 14 * firewall table (aimed for the 2.3 kernels)
50 char *table = "filter"; local
66 ret = do_command4(argc, argv, &table, &handle);
  /frameworks/compile/linkloader/include/
StubLayout.h 24 unsigned char *table; member in class:StubLayout
30 void initStubTable(unsigned char *table, size_t count);
ELFSectionHeaderTable.h 34 std::vector<ELFSectionHeaderTy *> table; member in class:ELFSectionHeaderTable
48 return table[i];
52 return table[i];
ELFSectionRelTable.h 32 std::vector<ELFRelocTy *> table; member in class:ELFSectionRelTable
46 return table.size();
50 return table[index];
54 return table[index];
ELFSectionSymTab.h 33 std::vector<ELFSymbolTy *> table; member in class:ELFSectionSymTab
49 return table.size();
53 return table[index];
57 return table[index];
  /external/srec/shared/include/
HashMapImpl.h 41 * Actual hash table implementation.
43 PHashTable *table; member in struct:HashMapImpl_t
  /frameworks/base/media/libstagefright/codecs/mp3dec/src/asm/
pvmp3_mdct_18_arm.s 48 ldr r2,table
326 table label
pvmp3_mdct_18_wm.asm 46 ldr r2,table
324 table label
  /frameworks/base/core/java/android/webkit/
SslCertLookupTable.java 34 private final Bundle table; field in class:SslCertLookupTable
44 table = new Bundle();
54 table.putInt(host, sslError.getPrimaryError());
66 return table.containsKey(host) && sslError.getPrimaryError() <= table.getInt(host);
70 table.clear();
  /external/e2fsprogs/lib/et/
error_table.h 19 const struct error_table *table; member in struct:et_list
23 #define ERRCODE_RANGE 8 /* # of bits to shift table number */
  /external/freetype/src/psaux/
psobjs.h 50 ps_table_new( PS_Table table,
55 ps_table_add( PS_Table table,
61 ps_table_done( PS_Table table ); variable
65 ps_table_release( PS_Table table ); variable
  /external/skia/include/effects/
SkTableMaskFilter.h 25 Applies a table lookup on each of the alpha values in the mask.
31 SkTableMaskFilter(const uint8_t table[256]);
34 void setTable(const uint8_t table[256]);
36 /** Utility that sets the gamma table
38 static void MakeGammaTable(uint8_t table[256], SkScalar gamma);
40 /** Utility that creates a clipping table: clamps values below min to 0
43 static void MakeClipTable(uint8_t table[256], uint8_t min, uint8_t max);
46 uint8_t table[256]; local
47 MakeGammaTable(table, gamma);
48 return SkNEW_ARGS(SkTableMaskFilter, (table));
52 uint8_t table[256]; local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/layout/table/
CellSpan.java 17 package android.widget.layout.table;
25 * Exercise table layout with cells spanning.
FixedWidth.java 17 package android.widget.layout.table;
25 * Exercise table layout with cells having a fixed width and height.
HorizontalGravity.java 17 package android.widget.layout.table;
25 * Exercise table layout with cells using a horizontal gravity.
VerticalGravity.java 17 package android.widget.layout.table;
25 * Exercise table layout with cells using a vertical gravity.
Weight.java 17 package android.widget.layout.table;
25 * Exercise table layout with cells having a weight.
  /frameworks/base/media/libstagefright/codecs/amrwb/src/
isp_isf.cpp 58 approximated by a look-up table and interpolation.
107 /* Look-up table for transformations */
109 /* table of cos(x) in Q15 */
111 const int16 table[129] = variable
168 /* isp[i] = table[ind]+ ((table[ind+1]-table[ind])*offset) / 128 */
170 L_tmp = mul_16by16_to_int32(table[ind + 1] - table[ind], offset);
171 isp[i] = add_int16(table[ind], (int16)(L_tmp >> 8))
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
MetricsSidebarPane.js 131 "table-cell": true,
132 "table-column": true,
133 "table-column-group": true,
134 "table-footer-group": true,
135 "table-header-group": true,
136 "table-row": true,
137 "table-row-group": true
142 "table-column": true,
143 "table-column-group": true,
144 "table-footer-group": true
    [all...]
  /dalvik/vm/
ReferenceTable.h 18 * Maintain a table of references. Used for internal local references,
21 * None of the table functions are synchronized.
27 * Table definition.
32 * If "allocEntries" is not equal to "maxEntries", the table may expand when
34 * pointers into "table" rather than offsets, use a fixed-size table.
37 * table/nextEntry is allowed.)
41 Object** table; /* bottom of the list */ member in struct:ReferenceTable
50 * If "initialCount" != "maxCount", the table will expand as required.
52 * Returns "false" if table allocation fails
    [all...]
  /external/e2fsprogs/lib/ss/
invocation.c 32 register ss_data **table; local
35 table = _ss_table;
38 if (table == (ss_data **) NULL) {
39 table = (ss_data **) malloc(2 * size);
40 table[0] = table[1] = (ss_data *)NULL;
44 for (sci_idx = 1; table[sci_idx] != (ss_data *)NULL; sci_idx++)
46 table = (ss_data **) realloc((char *)table,
48 table[sci_idx+1] = (ss_data *) NULL
    [all...]

Completed in 1056 milliseconds

1 2 3 4 5 6 7 8 91011>>