Searched refs:table (Results 1 - 25 of 72) sorted by relevance

123

/frameworks/av/media/libstagefright/codecs/amrwbenc/inc/
H A Dlog2_tab.h28 static const Word16 table[33] = variable
H A Disp_isf.tab22 /* table of cos(x) in Q15 */
24 static const Word16 table[129] = {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DMccTable.java45 static ArrayList<MccEntry> table; field in class:MccTable
81 index = Collections.binarySearch(table, m);
86 return table.get(index);
288 // Avoid system locale is set from MCC table if CDMALTEPhone is used.
316 table = new ArrayList<MccEntry>(240);
320 * The table below is built from two resources:
330 * This table has not been verified.
334 table.add(new MccEntry(202,"gr",2)); //Greece
335 table.add(new MccEntry(204,"nl",2,"nl")); //Netherlands (Kingdom of the)
336 table
[all...]
/frameworks/av/media/libstagefright/codecs/amrnb/common/src/
H A Dlsp_lsf_tbl.cpp37 Description: Added #ifdef __cplusplus and removed "extern" from table
80 extern const Word16 table[];
81 const Word16 table[65] = variable
H A Dlsp_lsf.cpp50 Description: Placed table declarations in a .c file, rather than an included
63 Description: Added #ifdef __cplusplus around extern'ed table.
111 extern const Word16 table[];
140 table = cosine table
152 The transformation from lsp[i] to lsf[i] is approximated by a look-up table
182 // lsp[i] = table[ind]+ ((table[ind+1]-table[ind])*offset) / 256
184 L_tmp = L_mult (sub (table[in
[all...]
/frameworks/base/graphics/java/android/graphics/
H A DTableMaskFilter.java24 public TableMaskFilter(byte[] table) { argument
25 if (table.length < 256) {
26 throw new RuntimeException("table.length must be >= 256");
28 native_instance = nativeNewTable(table);
43 private static native int nativeNewTable(byte[] table); argument
/frameworks/compile/linkloader/include/impl/
H A DELFSectionSymTab.hxx26 for (size_t i = 0; i < table.size(); ++i) {
27 delete table[i];
34 for (size_t i = 0; i < table.size(); ++i) {
35 if (table[i] && table[i]->isConcreteFunc()) {
45 for (size_t i = 0; i < table.size(); ++i) {
46 if (table[i] && table[i]->isExternFunc()) {
55 for (size_t i = 0; i < table.size(); ++i) {
56 ELFSymbolTy *symbol = table[
[all...]
H A DELFSectionHeaderTable.hxx28 for (size_t i = 0; i < table.size(); ++i) {
29 delete table[i];
43 // Allocate a new section header table and assign the owner.
64 tab->table.push_back(sh.take());
79 for (size_t i = 0; i < table.size(); ++i) {
88 for (size_t i = 0; i < table.size(); ++i) {
89 ELFSectionHeaderTy *sh = table[i];
103 return table[0];
H A DELFSectionRelTable.hxx31 for (size_t i = 0; i < table.size(); ++i) {
32 delete table[i];
62 // Seek to the start of the table
72 rt->table.push_back(ELFRelocTy::readRel(AR, i));
78 rt->table.push_back(ELFRelocTy::readRela(AR, i));
83 // Unable to read the table.
99 ELFRelocTy *rel = table[i];
115 ELFRelocTy *rel = table[i];
/frameworks/base/core/java/android/webkit/
H A DSslCertLookupTable.java34 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();
/frameworks/av/media/libstagefright/codecs/amrwb/src/
H A Disp_isf.cpp58 approximated by a look-up table and interpolation.
107 /* Look-up table for transformations */
109 /* table of cos(x) in Q15 */
111 static 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[in
[all...]
/frameworks/compile/linkloader/include/
H A DELFSectionRelTable.h32 std::vector<ELFRelocTy *> table; member in class:ELFSectionRelTable
46 return table.size();
50 return table[index];
54 return table[index];
H A DELFSectionHeaderTable.h34 std::vector<ELFSectionHeaderTy *> table; member in class:ELFSectionHeaderTable
48 return table[i];
52 return table[i];
H A DELFSectionSymTab.h33 std::vector<ELFSymbolTy *> table; member in class:ELFSectionSymTab
49 return table.size();
53 return table[index];
57 return table[index];
/frameworks/base/core/java/com/android/internal/content/
H A DSelectionBuilder.java99 public Cursor query(SQLiteDatabase db, String table, String[] columns, String orderBy) { argument
100 return query(db, table, columns, null, null, orderBy, null);
106 public Cursor query(SQLiteDatabase db, String table, String[] columns, String groupBy, argument
108 return db.query(table, columns, getSelection(), getSelectionArgs(), groupBy, having,
115 public int update(SQLiteDatabase db, String table, ContentValues values) { argument
116 return db.update(table, values, getSelection(), getSelectionArgs());
122 public int delete(SQLiteDatabase db, String table) { argument
123 return db.delete(table, getSelection(), getSelectionArgs());
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/
H A Disp_isf.c25 * are approximated by a look-up table and interpolation *
31 #include "isp_isf.tab" /* Look-up table for transformations */
41 ind = 127; /* beging at end of table -1 */
46 ind = 127; /* beging at end of table -1 */
48 /* find value in table that is just greater than isp[i] */
49 while (table[ind] < isp[i])
51 /* acos(isp[i])= ind*128 + ( ( isp[i]-table[ind] ) * slope[ind] )/2048 */
52 L_tmp = vo_L_mult(vo_sub(isp[i], table[ind]), slope[ind]);
53 isf[i] = vo_round((L_tmp << 4)); /* (isp[i]-table[ind])*slope[ind])>>11 */
81 /* isp[i] = table[in
[all...]
H A Dlog2.c45 * The function Log2(L_x) is approximated by a table and linear
52 * 5- fraction = table[i]<<16 - (table[i] - table[i+1]) * a * 2
78 L_y = L_deposit_h (table[i]); /* table[i] << 16 */
79 tmp = vo_sub(table[i], table[i + 1]); /* table[i] - table[
[all...]
/frameworks/base/core/tests/coretests/src/android/widget/layout/table/
H A DAddColumn.java17 package android.widget.layout.table;
30 * This test adds an extra row with an extra column in the table.
41 final TableLayout table = (TableLayout) findViewById(R.id.table);
49 table.addView(newRow, new TableLayout.LayoutParams());
H A DCellSpan.java17 package android.widget.layout.table;
25 * Exercise table layout with cells spanning.
H A DFixedWidth.java17 package android.widget.layout.table;
25 * Exercise table layout with cells having a fixed width and height.
H A DHorizontalGravity.java17 package android.widget.layout.table;
25 * Exercise table layout with cells using a horizontal gravity.
H A DVerticalGravity.java17 package android.widget.layout.table;
25 * Exercise table layout with cells using a vertical gravity.
H A DWeight.java17 package android.widget.layout.table;
25 * Exercise table layout with cells having a weight.
/frameworks/compile/linkloader/lib/
H A DStubLayout.cpp27 StubLayout::StubLayout() : table(NULL), count(0) {
31 table = table_;
50 unsigned char *stub = table;
55 table += getUnitStubSize();
/frameworks/wilhelm/tests/examples/
H A DxaVideoDecoderCapabilities.cpp57 // Use a table of [integer, string] entries to map an integer to a string
64 const char *id_to_string(XAuint32 id, const id_to_string_t *table, size_t numEntries) argument
68 if (id == table[i].id) {
69 return table[i].string;
75 // Use a table of [integer, table] entries to map a pair of integers to a string
83 const char *id_pair_to_string(XAuint32 id1, XAuint32 id2, const id_pair_to_string_t *table, argument
88 if (id1 == table[i].id1) {
89 return id_to_string(id2, table[i].id2_table, table[
148 static const id_pair_to_string_t table[] = { local
212 static const id_pair_to_string_t table[] = { local
[all...]

Completed in 247 milliseconds

123