/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/brotli/c/enc/ |
compress_fragment.h | 41 REQUIRES: All elements in "table[0..table_size-1]" are initialized to zero. 49 int* table, size_t table_size,
|
/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/flatbuffers/php/ |
Table.php | 20 abstract class Table 113 * @param Table $table 115 * @return Table 117 protected function __union($table, $offset) 120 $table->setByteBufferPos($offset + $this->bb->getInt($offset)); 121 $table->setByteBuffer($this->bb); 122 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/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/skqp/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/tensorflow/tensorflow/core/lib/io/ |
block_builder.h | 25 namespace table { namespace in namespace:tensorflow 65 } // namespace table
|
/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...] |
/frameworks/base/tools/aapt2/format/binary/ |
TableFlattener.h | 54 bool Consume(IAaptContext* context, ResourceTable* table) override;
|
/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/vti/dashboard/src/main/webapp/css/ |
show_graph.css | 59 .percentile-table { 65 .percentile-table td, th{
|
/toolchain/binutils/binutils-2.27/gas/testsuite/gas/mmix/ |
builtin1.s | 3 # not use the symbol table.
|
/art/runtime/ |
quicken_info.h | 27 // QuickenInfoTable is a table of 16 bit dex indices. There is one slot for every instruction that 58 // Returns true if the dex instruction has an index in the table. (maybe dequickenable). 68 QuickenInfoTable table(data); 69 return table.data_ + table.NumIndices() * 2 - data.data();
|
/external/freetype/src/gxvalid/ |
gxvmorx2.c | 5 /* TrueTypeGX/AAT morx table validation */ 60 gxv_morx_subtable_type2_opttable_load( FT_Bytes table, 64 FT_Bytes p = table; 144 FT_Bytes table, 152 FT_Bytes lat_base = table + optdata->ligActionTable; 197 GXV_TRACE(( "ligature action table includes" 208 GXV_TRACE(( "ligature action table includes" 215 GXV_TRACE(( "ligature action table includes" 228 FT_Bytes table, 258 table, ligActionIndex, gxvalid ) [all...] |
/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/netem/ |
paretonormal.c | 2 * Paretoormal distribution table generator 53 double table[TABLESIZE+1]; local 57 table[i] = x; 60 "# This is the distribution table for the paretonormal distribution.\n" 66 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...] |
/external/libdrm/tests/util/ |
kms.c | 61 const struct type_name *table, 67 if (table[i].type == type) 68 return table[i].name;
|