HomeSort by relevance Sort by last modified time
    Searched refs:table (Results 326 - 350 of 2297) sorted by null

<<11121314151617181920>>

  /external/freetype/src/sfnt/
ttbdf.c 51 if ( bdf->table != NULL )
52 FT_FRAME_RELEASE( bdf->table );
75 FT_FRAME_EXTRACT( length, bdf->table ) )
81 bdf->table_end = bdf->table + length;
84 FT_Byte* p = bdf->table;
101 bdf->strings = bdf->table + strings;
105 p = bdf->table + 8;
132 FT_FRAME_RELEASE( bdf->table );
163 p = bdf->table + 8;
  /external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
fx_zlib_inftrees.c 22 The code lengths are lens[0..codes-1]. The result starts at *table,
26 -1 is an invalid code, and +1 means that ENOUGH isn't enough. table
28 requested root table index bits, and on return it is the actual root
29 table index bits. It will differ if the request is greater than the
36 code FAR * FAR *table,
43 unsigned root; /* number of index bits for root table */
44 unsigned curr; /* number of index bits for current table */
45 unsigned drop; /* code bits to drop for sub-table */
47 unsigned used; /* code entries in table used */
53 code here; /* table entry for duplication *
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/sfnt/
ttbdf.c 51 if ( bdf->table != NULL )
52 FT_FRAME_RELEASE( bdf->table );
75 FT_FRAME_EXTRACT( length, bdf->table ) )
81 bdf->table_end = bdf->table + length;
84 FT_Byte* p = bdf->table;
101 bdf->strings = bdf->table + strings;
105 p = bdf->table + 8;
132 FT_FRAME_RELEASE( bdf->table );
163 p = bdf->table + 8;
  /external/skia/src/opts/
SkBitmapProcState_opts_arm.cpp 32 const uint16_t* SK_RESTRICT table = s.fBitmap->getColorTable()->lock16BitCache(); local
45 uint16_t dstValue = table[src];
78 "ldrh r4, [%[table], r4] \n\t" // load pixel 0 RGB565 from colmap
80 "ldrh r5, [%[table], r5] \n\t" // load pixel 1 RGB565 from colmap
82 "ldrh r6, [%[table], r6] \n\t" // load pixel 2 RGB565 from colmap
84 "ldrh r7, [%[table], r7] \n\t" // load pixel 3 RGB565 from colmap
86 "ldrh r8, [%[table], r8] \n\t" // load pixel 4 RGB565 from colmap
87 "ldrh r9, [%[table], r9] \n\t" // load pixel 5 RGB565 from colmap
88 "ldrh r10, [%[table], r10] \n\t" // load pixel 6 RGB565 from colmap
89 "ldrh r11, [%[table], r11] \n\t" // load pixel 7 RGB565 from colma
123 const SkPMColor* SK_RESTRICT table = s.fBitmap->getColorTable()->lockColors(); local
    [all...]
  /external/zlib/src/contrib/infback9/
inftree9.c 22 The code lengths are lens[0..codes-1]. The result starts at *table,
26 -1 is an invalid code, and +1 means that ENOUGH isn't enough. table
28 requested root table index bits, and on return it is the actual root
29 table index bits. It will differ if the request is greater than the
32 int inflate_table9(type, lens, codes, table, bits, work)
36 code FAR * FAR *table;
43 unsigned root; /* number of index bits for root table */
44 unsigned curr; /* number of index bits for current table */
45 unsigned drop; /* code bits to drop for sub-table */
47 unsigned used; /* code entries in table used *
    [all...]
  /external/chromium_org/third_party/icu/source/common/
ucnvmbcs.h 56 * (This only works with a utf8Friendly table.)
64 * slightly and optionally adds a table for conversion to MBCS (non-SBCS)
80 * UTF-8 lead byte and middle trail byte. Unlike the older MBCS stage 2 table,
118 * will be able to use the base table and ignore the extension.
120 * The unicodeMask in the static data is part of the base table data structure.
123 * The static data unicodeMask refers only to the base table's properties if
124 * a base table is included.
170 * -- base table name for extension-only table
175 * -- normal base table with optional extensio
    [all...]
  /external/chromium_org/third_party/ots/src/
name.cc 12 // name - Naming Table
60 Buffer table(data, length);
66 if (!table.ReadU16(&format) || format > 1) {
71 if (!table.ReadU16(&count)) {
76 if (!table.ReadU16(&string_offset) || string_offset > length) {
86 // and any where the offset/length would be outside the table.
92 if (!table.ReadU16(&rec.platform_id) ||
93 !table.ReadU16(&rec.encoding_id) ||
94 !table.ReadU16(&rec.language_id) ||
95 !table.ReadU16(&rec.name_id) |
    [all...]
  /external/icu/icu4c/source/common/
ucnvmbcs.h 56 * (This only works with a utf8Friendly table.)
67 * slightly and optionally adds a table for conversion to MBCS (non-SBCS)
83 * UTF-8 lead byte and middle trail byte. Unlike the older MBCS stage 2 table,
121 * will be able to use the base table and ignore the extension.
123 * The unicodeMask in the static data is part of the base table data structure.
126 * The static data unicodeMask refers only to the base table's properties if
127 * a base table is included.
173 * -- base table name for extension-only table
178 * -- normal base table with optional extensio
    [all...]
  /external/chromium_org/third_party/freetype/src/psnames/
psmodule.c 298 /* Build a table that maps Unicode values to glyph indices. */
301 PS_Unicodes table,
313 /* we first allocate the table */
314 table->num_maps = 0;
315 table->maps = 0;
317 if ( !FT_NEW_ARRAY( table->maps, num_glyphs + EXTRA_GLYPH_LIST_SIZE ) )
325 map = table->maps;
365 /* now compress the table a bit */
366 count = (FT_UInt)( map - table->maps );
371 FT_FREE( table->maps )
    [all...]
  /external/freetype/src/psnames/
psmodule.c 298 /* Build a table that maps Unicode values to glyph indices. */
301 PS_Unicodes table,
313 /* we first allocate the table */
314 table->num_maps = 0;
315 table->maps = 0;
317 if ( !FT_NEW_ARRAY( table->maps, num_glyphs + EXTRA_GLYPH_LIST_SIZE ) )
325 map = table->maps;
365 /* now compress the table a bit */
366 count = (FT_UInt)( map - table->maps );
371 FT_FREE( table->maps )
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/psnames/
fxft_psmodule.c 357 /* Build a table that maps Unicode values to glyph indices. */
360 PS_Unicodes table,
372 /* we first allocate the table */
373 table->num_maps = 0;
374 table->maps = 0;
376 if ( !FT_NEW_ARRAY( table->maps, num_glyphs + EXTRA_GLYPH_LIST_SIZE ) )
384 map = table->maps;
424 /* now compress the table a bit */
425 count = (FT_UInt)( map - table->maps );
430 FT_FREE( table->maps )
    [all...]
  /external/chromium_org/third_party/icu/source/tools/makeconv/
gencnvex.c 41 CnvExtAddTable(NewConverter *cnvData, UCMTable *table, UConverterStaticData *staticData);
52 /* toUnicode (state table in ucm->states) */
126 /* write the header and base table name for an extension-only table */
140 /* write the header and the base table name */
291 * the toUnicode table.
293 * for the base toUnicode table but not for the base fromUnicode table.
294 * The table must be sorted.
298 reduceToUMappings(UCMTable *table) {
    [all...]
  /external/fonttools/Lib/fontTools/
merge.py 25 assert allowDefault or clazz != DefaultTable, 'Oops, table class not found.'
100 allKeys = set.union(set(), *(vars(table).keys() for table in lst))
112 value = mergeLogic(getattr(table, key, NotImplemented) for table in lst)
334 for i,table in enumerate(tables):
335 for g in table.glyphs.values():
343 g.expand(table)
353 cmapTables = [(t,fontIdx) for fontIdx,table in enumerate(tables) for t in table.table
    [all...]
  /external/icu/icu4c/source/tools/makeconv/
gencnvex.c 41 CnvExtAddTable(NewConverter *cnvData, UCMTable *table, UConverterStaticData *staticData);
52 /* toUnicode (state table in ucm->states) */
127 /* write the header and base table name for an extension-only table */
141 /* write the header and the base table name */
292 * the toUnicode table.
294 * for the base toUnicode table but not for the base fromUnicode table.
295 * The table must be sorted.
299 reduceToUMappings(UCMTable *table) {
    [all...]
  /cts/tests/tests/database/src/android/database/sqlite/cts/
SQLiteFtsTest.java 104 private void prepareFtsTable(String table, String ftsType, String options)
107 "CREATE VIRTUAL TABLE " + table + " USING " + ftsType
115 mDatabase.insert(table, null, values);
119 private Cursor queryFtsTable(String table, String match) {
120 return mDatabase.query(table, new String[] { "snippet(" + table + ")" },
  /external/chromium_org/chrome/browser/resources/options/
reset_profile_settings_overlay.css 29 #feedback-template table {
30 table-layout: fixed;
34 #feedback-template table td {
  /external/chromium_org/content/browser/resources/gpu/
info_view.css 34 #info-view table {
37 table-layout: fixed;
41 #info-view table,
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXTableCell.cpp 78 // by javascript, and creating a table element may try to access the render tree while in a bad state.
80 // always be the case when AT clients access a table.
82 return axObjectCache()->get(toRenderTableCell(m_renderer)->table());
111 // since our table might have multiple sections, we have to offset our row appropriately
113 RenderTable* table = renderCell->table(); local
114 if (!table || !section)
117 RenderTableSection* tableSection = table->topSection();
123 tableSection = table->sectionBelow(tableSection, SkipEmptySections);
143 // case when the table is not appearing as an AXTable.
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/engine/
eng_int.h 117 /* This represents an implementation table. Dependent code should instantiate it
120 int engine_table_register(ENGINE_TABLE **table, ENGINE_CLEANUP_CB *cleanup,
122 void engine_table_unregister(ENGINE_TABLE **table, ENGINE *e);
123 void engine_table_cleanup(ENGINE_TABLE **table);
125 ENGINE *engine_table_select(ENGINE_TABLE **table, int nid);
127 ENGINE *engine_table_select_tmp(ENGINE_TABLE **table, int nid, const char *f, int l);
131 void engine_table_doall(ENGINE_TABLE *table, engine_table_doall_cb *cb, void *arg);
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/core/
horizontal_metrics_table.cc 17 #include "sfntly/table/core/horizontal_metrics_table.h"
88 : Table(header, data),
108 FontDataTablePtr table = local
110 return table.Detach();
125 HorizontalMetricsTable* table = local
127 table->num_hmetrics_ = num_hmetrics;
133 HorizontalMetricsTable* table = local
135 table->num_glyphs_ = num_glyphs;
  /external/openssl/crypto/engine/
eng_int.h 117 /* This represents an implementation table. Dependent code should instantiate it
120 int engine_table_register(ENGINE_TABLE **table, ENGINE_CLEANUP_CB *cleanup,
122 void engine_table_unregister(ENGINE_TABLE **table, ENGINE *e);
123 void engine_table_cleanup(ENGINE_TABLE **table);
125 ENGINE *engine_table_select(ENGINE_TABLE **table, int nid);
127 ENGINE *engine_table_select_tmp(ENGINE_TABLE **table, int nid, const char *f, int l);
131 void engine_table_doall(ENGINE_TABLE *table, engine_table_doall_cb *cb, void *arg);
  /external/sfntly/cpp/
CMakeLists.txt 47 file(GLOB SFNTLY_TABLE_COMMON_FILES src/sfntly/table/*.h src/sfntly/table/*.cc)
48 file(GLOB SFNTLY_TABLE_BITMAP_FILES src/sfntly/table/bitmap/*.h src/sfntly/table/bitmap/*.cc)
49 file(GLOB SFNTLY_TABLE_CORE_FILES src/sfntly/table/core/*.h src/sfntly/table/core/*.cc)
50 file(GLOB SFNTLY_TABLE_TTF_FILES src/sfntly/table/truetype/*.h src/sfntly/table/truetype/*.cc)
55 source_group(table FILES ${SFNTLY_TABLE_COMMON_FILES})
56 source_group(table\\bitmap FILES ${SFNTLY_TABLE_BITMAP_FILES}
    [all...]
  /external/sfntly/cpp/src/sfntly/table/core/
horizontal_metrics_table.cc 17 #include "sfntly/table/core/horizontal_metrics_table.h"
88 : Table(header, data),
108 FontDataTablePtr table = local
110 return table.Detach();
125 HorizontalMetricsTable* table = local
127 table->num_hmetrics_ = num_hmetrics;
133 HorizontalMetricsTable* table = local
135 table->num_glyphs_ = num_glyphs;
  /hardware/qcom/gps/msm8960/utils/
loc_log.cpp 59 const char* loc_get_name_from_mask(loc_name_val_s_type table[], int table_size, long mask)
64 if (table[i].val & (long) mask)
66 return table[i].name;
73 const char* loc_get_name_from_val(loc_name_val_s_type table[], int table_size, long value)
78 if (table[i].val == (long) value)
80 return table[i].name;
  /hardware/qcom/gps/utils/
loc_log.cpp 59 const char* loc_get_name_from_mask(loc_name_val_s_type table[], int table_size, long mask)
64 if (table[i].val & (long) mask)
66 return table[i].name;
73 const char* loc_get_name_from_val(loc_name_val_s_type table[], int table_size, long value)
78 if (table[i].val == (long) value)
80 return table[i].name;

Completed in 779 milliseconds

<<11121314151617181920>>