HomeSort by relevance Sort by last modified time
    Searched refs:table (Results 426 - 450 of 3336) sorted by null

<<11121314151617181920>>

  /external/skia/tests/
ICCTest.cpp 176 // Lookup-table based gamma curves
186 float* table = SkTAddOffset<float>(memory, sizeof(SkGammas)); local
187 table[0] = 0.00f;
188 table[1] = 0.05f;
189 table[2] = 0.10f;
190 table[3] = 0.15f;
191 table[4] = 0.25f;
192 table[5] = 0.35f;
193 table[6] = 0.45f;
194 table[7] = 0.60f
    [all...]
  /external/freetype/src/pshinter/
pshrec.c 48 /* destroy hints table */
50 ps_hint_table_done( PS_Hint_Table table,
53 FT_FREE( table->hints );
54 table->num_hints = 0;
55 table->max_hints = 0;
59 /* ensure that a table can contain "count" elements */
61 ps_hint_table_ensure( PS_Hint_Table table,
65 FT_UInt old_max = table->max_hints;
72 /* try to grow the table */
74 if ( !FT_RENEW_ARRAY( table->hints, old_max, new_max )
    [all...]
  /external/pdfium/third_party/freetype/src/pshinter/
pshrec.c 48 /* destroy hints table */
50 ps_hint_table_done( PS_Hint_Table table,
53 FT_FREE( table->hints );
54 table->num_hints = 0;
55 table->max_hints = 0;
59 /* ensure that a table can contain "count" elements */
61 ps_hint_table_ensure( PS_Hint_Table table,
65 FT_UInt old_max = table->max_hints;
72 /* try to grow the table */
74 if ( !FT_RENEW_ARRAY( table->hints, old_max, new_max )
    [all...]
  /external/curl/lib/
hash.c 77 h->table = malloc(slots * sizeof(struct curl_llist *));
78 if(h->table) {
80 h->table[i] = Curl_llist_alloc((curl_llist_dtor) hash_element_dtor);
81 if(!h->table[i]) {
83 Curl_llist_destroy(h->table[i], NULL);
84 h->table[i] = NULL;
86 free(h->table);
87 h->table = NULL;
124 #define FETCH_LIST(x,y,z) x->table[x->hash_func(y, z, x->slots)]
223 for(le = (h->table[i])->head
    [all...]
  /external/e2fsprogs/lib/et/test_cases/
heimdal.c 103 const struct error_table * table; member in struct:et_list
124 if (et->table->msgs == text)
128 if (!link.table)
133 et->table = &et_krb_error_table;
heimdal2.c 89 const struct error_table * table; member in struct:et_list
110 if (et->table->msgs == text)
114 if (!link.table)
119 et->table = &et_kadm_error_table;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/publishingFiles/staticDropFiles/
consoleLogs.php 30 <table border=0 cellspacing=5 cellpadding=2 width="100%" >
37 </table>
38 <table border="0">
68 </table>
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
PropertyTooltipProvider.java 11 package org.eclipse.wb.internal.core.model.property.table;
27 * @coverage core.model.property.table
97 PropertyTable table = m_site.getTable(); local
98 // convert location from tooltip to table
101 p = table.toControl(p);
102 // send MouseDown to table
106 table.notifyListeners(SWT.MouseDown, newEvent);
  /external/flatbuffers/php/
Table.php 20 abstract class Table
103 * @param Table $table
105 * @return Table
107 protected function __union($table, $offset)
110 $table->bb_pos = $offset + $this->bb->getInt($offset);
111 $table->bb = $this->bb;
112 return $table;
  /external/guava/guava-tests/test/com/google/common/collect/
TransposedTableTest.java 29 @Override protected Table<String, Integer, Character> create(
31 Table<Integer, String, Character> original = HashBasedTable.create();
32 Table<String, Integer, Character> table = Tables.transpose(original); local
33 table.clear();
34 populate(table, data);
35 return table;
39 Table<Integer, String, Character> original = HashBasedTable.create();
44 Table<Integer, String, Character> original = HashBasedTable.create();
45 Table<String, Integer, Character> transpose = Tables.transpose(original)
    [all...]
  /external/icu/icu4c/source/i18n/
collationsettings.cpp 87 const uint8_t *table, UErrorCode &errorCode) {
89 if(table != NULL &&
91 !reorderTableHasSplitBytes(table) :
100 reorderTable = table;
103 // Drop ranges before the first split byte. They are reordered by the table.
112 U_ASSERT(!reorderTableHasSplitBytes(table));
117 U_ASSERT(table[ranges[firstSplitByteRangeIndex] >> 24] == 0);
154 // Write the lead byte permutation table.
156 uint8_t table[256]; local
163 table[b] = (uint8_t)(b + pair)
    [all...]
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/table/
TableItemComparator.java 12 package org.jacoco.report.internal.html.table;
19 * Adapter to sort table items based on their coverage nodes.
  /external/libvncserver/libvncserver/
tabletranstemplate.c 9 * table, and the other uses three separate lookup tables for the red, green
51 * using a single lookup table.
55 rfbTranslateWithSingleTableINtoOUT (char *table, rfbPixelFormat *in,
65 OUT_T *t = (OUT_T *)table;
86 rfbTranslateWithRGBTablesINtoOUT (char *table, rfbPixelFormat *in,
96 OUT_T *redTable = (OUT_T *)table;
  /external/lzma/C/
7zCrc.c 13 UInt32 MY_FAST_CALL CrcUpdateT8(UInt32 v, const void *data, size_t size, const UInt32 *table);
19 UInt32 MY_FAST_CALL CrcUpdateT1_BeT4(UInt32 v, const void *data, size_t size, const UInt32 *table);
23 UInt32 MY_FAST_CALL CrcUpdateT4(UInt32 v, const void *data, size_t size, const UInt32 *table);
26 typedef UInt32 (MY_FAST_CALL *CRC_FUNC)(UInt32 v, const void *data, size_t size, const UInt32 *table);
  /external/skia/tools/lua/
classify_rrect_clips.lua 82 table.sort(array, sort_classes)
92 table["total"] = (table["total"] or 0) + 1
94 table[class] = (table[class] or 0) + 1
99 print_classes(table)
102 for k, v in pairs(table) do
105 io.write(t, " = (", t, " or 0) + ", table[k], "\n" );
  /external/syslinux/com32/modules/stubs/
swapstub.asm 5 mov dl,[cs:bx+(table-$$)]
33 table: label
  /external/webrtc/webrtc/base/
latebindingsymboltable.h 26 // This is the base class for "symbol table" classes to simplify the dynamic
41 LateBindingSymbolTable(const TableInfo *info, void **table);
45 // Loads the DLL and the symbol table. Returns true iff the DLL and symbol
46 // table loaded successfully.
  /external/webrtc/webrtc/system_wrappers/source/
data_log_unittest.cc 22 // A class for storing the values expected from a log table column when
23 // verifying a log table file.
46 // Verifies that the log table stored in the file "log_file" corresponds to
75 // Verifies the table header stored in "line" to correspond with the header
92 // one line read from a log table file. An element can either be a column
119 ASSERT_EQ(DataLog::AddTable(DataLog::Combine("a proper table", 1)), 0);
122 ASSERT_LT(DataLog::AddTable(DataLog::Combine("table failure", 1)), 0);
127 DataLog::Combine("a proper table", 1));
132 DataLog::AddTable(DataLog::Combine("table", 1));
133 DataLog::AddColumn(DataLog::Combine("table", 1), "arrival", 1)
147 FILE* table = fopen("table_1.txt", "r"); local
229 FILE* table = fopen("table_2.txt", "r"); local
252 FILE* table = fopen("table_3.txt", "r"); local
271 FILE* table = fopen("table_4.txt", "r"); local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/data/
FilterStackDBHelper.java 27 private static final String SQL_CREATE_TABLE = "CREATE TABLE ";
32 /** The table name */
33 public static final String TABLE = "filterstack";
60 createTable(db, FilterStack.TABLE, CREATE_FILTER_STACK);
65 dropTable(db, FilterStack.TABLE);
69 protected static void createTable(SQLiteDatabase db, String table, String[][] columns) {
71 create.append(table).append('(');
92 protected static void dropTable(SQLiteDatabase db, String table) {
95 db.execSQL("drop table if exists " + table);
    [all...]
  /test/vts/web/dashboard/src/main/webapp/css/
show_graph.css 59 .percentile-table {
65 .percentile-table td, th{
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mmix/
builtin1.s 3 # not use the symbol table.
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
ClassTable.java 50 public static void sort(ClassEntry[] table, Vector unsorted)
52 for (int e = 0; e < table.length; e += 1) {
57 if (v.compareTo(table[i]) >= 0) {
61 table[i + 1] = table[i];
64 table[i + 1] = v;
68 public static int search(ClassEntry[] table, int glyphID)
70 int log2 = Utility.highBit(table.length);
72 int extra = table.length - power;
76 if (table[extra].glyphID <= glyphID)
    [all...]
  /external/iproute2/ip/
iplink_vrf.c 23 fprintf(f, "Usage: ... vrf table TABLEID \n");
35 if (matches(*argv, "table") == 0) {
36 __u32 table; local
40 if (rtnl_rttable_a2n(&table, *argv))
41 invarg("invalid table ID\n", *argv);
42 addattr32(n, 1024, IFLA_VRF_TABLE, table);
64 fprintf(f, "table %u ", rta_getattr_u32(tb[IFLA_VRF_TABLE]));
  /external/iproute2/netem/
paretonormal.c 2 * Paretoormal distribution table generator
54 double table[TABLESIZE+1]; local
58 table[i] = x;
61 "# This is the distribution table for the paretonormal distribution.\n"
67 normvalue = (int) rint(table[i]*TABLEFACTOR);
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/html/
HTMLFormatter.java 40 import org.jacoco.report.internal.html.table.BarColumn;
41 import org.jacoco.report.internal.html.table.CounterColumn;
42 import org.jacoco.report.internal.html.table.LabelColumn;
43 import org.jacoco.report.internal.html.table.PercentageColumn;
44 import org.jacoco.report.internal.html.table.Table;
65 private Table table; field in class:HTMLFormatter
125 public Table getTable() {
126 if (table == null)
    [all...]

Completed in 1061 milliseconds

<<11121314151617181920>>