HomeSort by relevance Sort by last modified time
    Searched refs:table (Results 126 - 150 of 2064) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_linkage.h 57 util_semantic_table_from_layout(unsigned char *table, size_t table_size, unsigned char *layout,
61 memset(table, 0xff, table_size);
64 table[layout[i]] = first_slot_value + i;
  /external/chromium_org/third_party/ots/src/
hhea.cc 16 Buffer table(data, length);
20 if (!table.ReadU32(&hhea->header.version)) {
27 if (!ParseMetricsHeader(file, &table, &hhea->header)) {
vdmx.cc 16 Buffer table(data, length);
20 if (!table.ReadU16(&vdmx->version) ||
21 !table.ReadU16(&vdmx->num_recs) ||
22 !table.ReadU16(&vdmx->num_ratios)) {
36 if (!table.ReadU8(&rec.charset) ||
37 !table.ReadU8(&rec.x_ratio) ||
38 !table.ReadU8(&rec.y_start_ratio) ||
39 !table.ReadU8(&rec.y_end_ratio)) {
56 // if present, this must be the last Ratio group in the table.
71 const size_t current_offset = table.offset()
    [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...]
  /external/icu4c/i18n/
ucol_cnt.h 16 * This module maintains a contraction table structure in expanded form
63 uprv_cnttab_clone(CntTable *table, UErrorCode *status);
65 uprv_cnttab_close(CntTable *table);
67 /* construct the table for output */
69 uprv_cnttab_constructTable(CntTable *table, uint32_t mainOffset, UErrorCode *status);
70 /* adds more contractions in table. If element is non existant, it creates on. Returns element handle */
72 uprv_cnttab_addContraction(CntTable *table, uint32_t element, UChar codePoint, uint32_t value, UErrorCode *status);
73 /* sets a part of contraction sequence in table. If element is non existant, it creates on. Returns element handle */
75 uprv_cnttab_setContraction(CntTable *table, uint32_t element, uint32_t offset, UChar codePoint, uint32_t value, UErrorCode *status);
76 /* inserts a part of contraction sequence in table. Sequences behind the offset are moved back. If element is non existant, it creates on. Returns el (…)
    [all...]
  /external/libsepol/tests/
test-expander-attr-map.c 93 CU_ASSERT(!hashtab_search((&base_expanded2)->p_types.table, "attr_check_base_optional_disabled_5"));
94 CU_ASSERT(!hashtab_search((&base_expanded2)->p_types.table, "attr_check_base_optional_disabled_5_1_t"));
95 CU_ASSERT(!hashtab_search((&base_expanded2)->p_types.table, "attr_check_base_optional_disabled_5_2_t"));
96 CU_ASSERT(!hashtab_search((&base_expanded2)->p_types.table, "attr_check_base_optional_disabled_8"));
97 CU_ASSERT(!hashtab_search((&base_expanded2)->p_types.table, "attr_check_base_optional_disabled_8_1_t"));
98 CU_ASSERT(!hashtab_search((&base_expanded2)->p_types.table, "attr_check_base_optional_disabled_8_2_t"));
99 CU_ASSERT(!hashtab_search((&base_expanded2)->p_types.table, "attr_check_mod_optional_disabled_4"));
100 CU_ASSERT(!hashtab_search((&base_expanded2)->p_types.table, "attr_check_mod_optional_disabled_4_1_t"));
101 CU_ASSERT(!hashtab_search((&base_expanded2)->p_types.table, "attr_check_mod_optional_disabled_4_2_t"));
102 CU_ASSERT(!hashtab_search((&base_expanded2)->p_types.table, "attr_check_mod_optional_disabled_7"))
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_linkage.h 57 util_semantic_table_from_layout(unsigned char *table, size_t table_size, unsigned char *layout,
61 memset(table, 0xff, table_size);
64 table[layout[i]] = first_slot_value + i;
  /frameworks/rs/cpu_ref/linkloader/include/
ELFSectionHeaderTable.h 34 std::vector<ELFSectionHeaderTy *> table; member in class:ELFSectionHeaderTable
48 return table[i];
52 return table[i];
  /external/jmonkeyengine/engine/src/core/com/jme3/util/
IntMap.java 48 private Entry[] table; field in class:IntMap
76 this.table = new Entry[capacity];
84 Entry[] newTable = new Entry[table.length];
85 for (int i = table.length - 1; i >= 0; i--){
86 if (table[i] != null)
87 newTable[i] = table[i].clone();
89 clone.table = newTable;
97 Entry[] table = this.table; local
98 for (int i = table.length; i-- > 0;)
193 Entry[] table = this.table; local
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
string-fasta.js 36 function makeCumulative(table) {
38 for (var c in table) {
39 if (last) table[c] += table[last];
60 function fastaRandom(n, table) {
62 makeCumulative(table);
67 for (var c in table) {
68 if (r < table[c]) {
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
string-fasta.js 36 function makeCumulative(table) {
38 for (var c in table) {
39 if (last) table[c] += table[last];
60 function fastaRandom(n, table) {
62 makeCumulative(table);
67 for (var c in table) {
68 if (r < table[c]) {
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
string-fasta.js 36 function makeCumulative(table) {
38 for (var c in table) {
39 if (last) table[c] += table[last];
60 function fastaRandom(n, table) {
62 makeCumulative(table);
67 for (var c in table) {
68 if (r < table[c]) {
  /external/chromium_org/third_party/freetype/src/sfnt/
ttpost.c 5 /* Postcript name table processing for TrueType and OpenType fonts */
21 /* The post table is not completely loaded by the core engine. This */
62 /* table of Mac names. Thus, it is possible to build a version of */
173 /* UNDOCUMENTED! The number of glyphs in this table can be smaller */
174 /* than the value in the maxp table (cf. cyberbit.ttf). */
177 /* in this table, so the test for this threshold has been dropped. */
200 /* compute number of names stored in table */
239 FT_TRACE6(( "load_format_20: %d byte left in post table\n",
251 " truncating at end of post table (%d byte left)\n",
266 " all entries in post table are already parsed,
279 TT_Post_20 table = &face->postscript_names.names.format_20; local
356 TT_Post_25 table = &face->postscript_names.names.format_25; local
428 TT_Post_20 table = &names->names.format_20; local
443 TT_Post_25 table = &names->names.format_25; local
516 TT_Post_20 table = &names->names.format_20; local
539 TT_Post_25 table = &names->names.format_25; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
colortab.h 41 const GLvoid *table );
46 const GLvoid *table );
56 const GLvoid *table )
64 const GLvoid *table )
  /external/chromium_org/third_party/skia/include/effects/
SkTableColorFilter.h 10 * Create a table colorfilter, copying the table into the filter, and
12 * a' = table[a];
13 * r' = table[r];
14 * g' = table[g];
15 * b' = table[b];
18 * the table is applied, and then the result is remultiplied.
20 static SkColorFilter* Create(const uint8_t table[256]);
23 * Create a table colorfilter, with a different table for eac
    [all...]
  /external/e2fsprogs/e2fsck/
prof_err.c 50 const struct error_table * table; member in struct:et_list
71 if (et->table->msgs == text)
75 if (!link.table)
80 et->table = &et_prof_error_table;
  /external/e2fsprogs/lib/et/test_cases/
continuation.c 20 const struct error_table * table; member in struct:et_list
41 if (et->table->msgs == text)
45 if (!link.table)
50 et->table = &et_ovk_error_table;
heimdal.c 101 const struct error_table * table; member in struct:et_list
122 if (et->table->msgs == text)
126 if (!link.table)
131 et->table = &et_krb_error_table;
heimdal2.c 87 const struct error_table * table; member in struct:et_list
108 if (et->table->msgs == text)
112 if (!link.table)
117 et->table = &et_kadm_error_table;
heimdal3.c 21 const struct error_table * table; member in struct:et_list
42 if (et->table->msgs == text)
46 if (!link.table)
51 et->table = &et_h3test_error_table;
imap_err.c 49 const struct error_table * table; member in struct:et_list
70 if (et->table->msgs == text)
74 if (!link.table)
79 et->table = &et_imap_error_table;
simple.c 41 const struct error_table * table; member in struct:et_list
62 if (et->table->msgs == text)
66 if (!link.table)
71 et->table = &et_krb_error_table;
  /external/e2fsprogs/lib/ext2fs/
ext2_err.c 35 "Corrupt group descriptor: bad block for inode table",
40 "Can't write an inode table",
41 "Can't read an inode table",
68 "A block group is missing an inode table",
75 "The inode is from a bad block in the inode table",
84 "Too many references in table",
156 const struct error_table * table; member in struct:et_list
177 if (et->table->msgs == text)
181 if (!link.table)
186 et->table = &et_ext2_error_table
    [all...]
  /external/elfutils/libebl/
eblcorenote.c 86 #define ITEMS(type, table) \
88 *items = table; \
89 *nitems = sizeof table / sizeof table[0]; \
  /external/freetype/src/sfnt/
ttpost.c 5 /* Postcript name table processing for TrueType and OpenType fonts */
21 /* The post table is not completely loaded by the core engine. This */
62 /* table of Mac names. Thus, it is possible to build a version of */
173 /* UNDOCUMENTED! The number of glyphs in this table can be smaller */
174 /* than the value in the maxp table (cf. cyberbit.ttf). */
177 /* in this table, so the test for this threshold has been dropped. */
200 /* compute number of names stored in table */
239 FT_TRACE6(( "load_format_20: %d byte left in post table\n",
251 " truncating at end of post table (%d byte left)\n",
266 " all entries in post table are already parsed,
279 TT_Post_20 table = &face->postscript_names.names.format_20; local
356 TT_Post_25 table = &face->postscript_names.names.format_25; local
428 TT_Post_20 table = &names->names.format_20; local
443 TT_Post_25 table = &names->names.format_25; local
516 TT_Post_20 table = &names->names.format_20; local
539 TT_Post_25 table = &names->names.format_25; local
    [all...]

Completed in 909 milliseconds

1 2 3 4 56 7 8 91011>>