HomeSort by relevance Sort by last modified time
    Searched defs:table (Results 276 - 300 of 1493) sorted by null

<<11121314151617181920>>

  /external/elfutils/libelf/
nlist.c 69 struct nlist_fshash *table; local
92 /* Find a symbol table. We prefer the real symbol table but if it
93 does not exist use the dynamic symbol table. */
117 table. */
135 /* Create the hash table. */
136 table = nlist_fshash_init (nsyms);
137 if (table == NULL)
163 /* And add it to the hash table. Note that we are using the
170 (void) nlist_fshash_overwrite (table, mem.str, 0, &mem)
    [all...]
  /external/freetype/include/freetype/internal/
fthash.h 88 FT_Hashnode* table; member in struct:FT_HashRec_
  /external/freetype/src/sfnt/
ttpost.c 5 /* PostScript 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",
254 " truncating at end of post table (%d byte left)\n",
269 " all entries in post table are already parsed,
282 TT_Post_20 table = &face->postscript_names.names.format_20; local
361 TT_Post_25 table = &face->postscript_names.names.format_25; local
433 TT_Post_20 table = &names->names.format_20; local
448 TT_Post_25 table = &names->names.format_25; local
521 TT_Post_20 table = &names->names.format_20; local
544 TT_Post_25 table = &names->names.format_25; local
    [all...]
  /external/guava/guava/src/com/google/common/base/
SmallCharMatcher.java 26 * An immutable version of CharMatcher for smallish sets of characters that uses a hash table
34 private final char[] table; field in class:SmallCharMatcher
38 private SmallCharMatcher(char[] table, long filter, boolean containsZero,
41 this.table = table;
72 * Returns an array size suitable for the backing array of a hash table that
95 // Compute the hash table.
96 char[] table = new char[chooseTableSize(size)]; local
97 int mask = table.length - 1;
104 if (table[index] == 0)
    [all...]
  /external/guava/guava/src/com/google/common/collect/
ImmutableSet.java 190 Object[] table = new Object[tableSize]; local
199 Object value = table[index];
203 table[index] = element;
218 // Resize the table when the array includes too many duplicates.
225 return new RegularImmutableSet<E>(uniqueElements, hashCode, table, mask);
235 // If the set has this many elements, it will "max out" the table size
240 * Returns an array size suitable for the backing array of a hash table that
258 // The table can't be completely full or we'll get infinite reprobes
  /external/iproute2/ip/
ipmroute.c 39 fprintf(stderr, " [ table TABLE_ID ]\n");
65 __u32 table; local
87 table = rtm_get_table(r, tb);
89 if (filter.tb > 0 && filter.tb != table)
213 if (matches(*argv, "table") == 0) {
222 invarg("table id value is invalid\n", *argv);
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/table/
BarColumn.java 12 package org.jacoco.report.internal.html.table;
SortIndex.java 12 package org.jacoco.report.internal.html.table;
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/table/
SortIndexTest.java 12 package org.jacoco.report.internal.html.table;
  /external/kernel-headers/original/uapi/linux/
map_to_7segment.h 75 unsigned char table[128]; member in struct:seg7_conversion_map
80 return c >= 0 && c < sizeof(map->table) ? map->table[c] : -EINVAL;
84 struct seg7_conversion_map _name = { .table = { _map } }
94 * ASCII conversion table
  /external/libjpeg-turbo/
rdswitch.c 16 * -qslots N[,N,...] Set component quantization table selectors
89 * table 0 for luminance (or primary) components, 1 for chrominance components.
90 * You must use -qslots if you want a different component->table mapping.
96 unsigned int table[DCTSIZE2]; local
99 fprintf(stderr, "Can't open table file %s\n", filename);
104 while (read_text_integer(fp, &val, &termchar)) { /* read 1st element of table */
110 table[0] = (unsigned int) val;
113 fprintf(stderr, "Invalid table data in file %s\n", filename);
117 table[i] = (unsigned int) val;
120 jpeg_add_quant_table(cinfo, tblno, table, cinfo->q_scale_factor[tblno]
    [all...]
  /external/libunwind_llvm/src/
EHHeaderParser.hpp 36 pint_t table; member in struct:libunwind::EHHeaderParser::EHHeaderInfo
72 ehHdrInfo.table = p;
112 tableEntry = hdrInfo.table + mid * tableEntrySize;
127 tableEntry = hdrInfo.table + low * tableEntrySize;
155 _LIBUNWIND_ABORT("Unknown DWARF encoding for search table.");
  /external/libvterm/src/
encoding.c 183 struct StaticTableEncoding *table = (struct StaticTableEncoding *)enc; local
192 if(table->chars[c])
193 cp[(*cpi)++] = table->chars[c];
  /external/mesa3d/src/mesa/swrast/
s_texfetch.c 54 * Implemented with a 256-entry lookup table.
59 static GLfloat table[256]; local
62 /* compute lookup table now */
67 table[i] = cs / 12.92f;
70 table[i] = (GLfloat) pow((cs + 0.055) / 1.055, 2.4);
75 return table[cs8];
109 * Table to map MESA_FORMAT_ to texel fetch/store funcs.
1122 /* check that the table entries are sorted by format name */
  /external/pdfium/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",
254 " truncating at end of post table (%d byte left)\n",
269 " all entries in post table are already parsed,
282 TT_Post_20 table = &face->postscript_names.names.format_20; local
359 TT_Post_25 table = &face->postscript_names.names.format_25; local
431 TT_Post_20 table = &names->names.format_20; local
446 TT_Post_25 table = &names->names.format_25; local
519 TT_Post_20 table = &names->names.format_20; local
542 TT_Post_25 table = &names->names.format_25; local
    [all...]
  /external/pdfium/third_party/libjpeg/
fpdfapi_jdmaster.c 210 * a (subscript-check-less) C table lookup
215 * These processes all use a common table prepared by the routine below.
218 * of x is within MAXJSAMPLE+1 of the legal range, so a table running from
231 * So the post-IDCT limiting table ends up looking like this:
236 * Negative inputs select values from the upper half of the table after
239 * We can save some space by overlapping the start of the post-IDCT table
240 * with the simpler range limiting table. The post-IDCT table begins at
243 * Note that the table is allocated in near data space on PCs; it's small
249 /* Allocate and fill in the sample_range_limit table */
251 JSAMPLE * table; local
    [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;
  /external/sfntly/cpp/src/sfntly/table/
font_data_table.cc 17 #include "sfntly/table/font_data_table.h"
57 throw IOException("Table not ready to build.");
81 FontDataTablePtr table; // NULL default table local
87 throw IOException("Table not ready to build.");
99 table = SubBuildTable(data);
100 NotifyPostTableBuild(table);
105 return table;
168 void FontDataTable::Builder::NotifyPostTableBuild(FontDataTable* table) {
170 UNREFERENCED_PARAMETER(table);
    [all...]
  /external/skia/bench/
FontCacheBench.cpp 80 char table[kMaxHashCount]; local
81 sk_bzero(table, sizeof(table));
86 collisions += table[index];
87 table[index] = 1;
  /external/syslinux/com32/lib/libpng/
pngmem.c 177 png_bytep table; local
198 table = farmalloc(total_size);
200 if (table == NULL)
211 if ((png_size_t)table & 0xfff0)
224 png_ptr->offset_table = table;
239 hptr = (png_byte huge *)table;
  /external/syslinux/gpxe/src/arch/i386/include/gpxe/
sbft.h 38 * SRP boot firmware table
40 * The working draft specification for the SRP boot firmware table can
53 /** SRP Boot Firmware Table signature */
60 * SRP Boot Firmware Table
111 /** The table header */
112 struct sbft_table table; member in struct:gpxe_sbft
  /external/v8/src/
source-position-table.cc 5 #include "src/source-position-table.h"
145 Handle<ByteArray> table = isolate->factory()->NewByteArray( local
148 MemCopy(table->GetDataStartAddress(), &*bytes_.begin(), bytes_.size());
150 LOG_CODE_EVENT(isolate, CodeLinePosInfoRecordEvent(*code, *table));
154 // the entire table to verify they are identical.
156 for (SourcePositionTableIterator encoded(*table); !encoded.done();
164 // No additional source positions after creating the table.
167 return table;
  /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/core/tests/coretests/src/android/widget/layout/table/
HorizontalGravityTest.java 17 package android.widget.layout.table;
19 import android.widget.layout.table.HorizontalGravity;
28 * {@link android.widget.layout.table.HorizontalGravity} is
VerticalGravityTest.java 17 package android.widget.layout.table;
19 import android.widget.layout.table.VerticalGravity;
29 * {@link android.widget.layout.table.VerticalGravity} is

Completed in 1050 milliseconds

<<11121314151617181920>>