HomeSort by relevance Sort by last modified time
    Searched defs:table (Results 251 - 275 of 1580) sorted by null

<<11121314151617181920>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
setobject.h 11 There are three kinds of slots in the table:
41 /* The table contains mask + 1 slots, and that's a power of 2.
47 /* table points to smalltable for small tables, else to
48 * additional malloc'ed memory. table is never NULL! This rule
51 setentry *table; member in struct:_setobject
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
setobject.h 11 There are three kinds of slots in the table:
41 /* The table contains mask + 1 slots, and that's a power of 2.
47 /* table points to smalltable for small tables, else to
48 * additional malloc'ed memory. table is never NULL! This rule
51 setentry *table; member in struct:_setobject
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
hash.c 9 * Entry **newHashTable(); Create and return initialized hash table
67 /* create the hash table and string table for terminals (string table only once) */
75 Entry **table; local
77 table = (Entry **) calloc(size, sizeof(Entry *));
78 require( table != NULL, "cannot allocate hash table");
82 require( strings != NULL, "cannot allocate string table");
85 return table;
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/
zutil.c 206 local ptr_table table[MAX_PTR]; variable
207 /* This table is used to remember the original form of pointers
209 * Since MSDOS is not a preemptive multitasking OS, this table is not
231 table[next_ptr].org_ptr = buf;
236 table[next_ptr++].new_ptr = buf;
252 if (ptr != table[n].new_ptr) continue;
254 farfree(table[n].org_ptr);
256 table[n-1] = table[n];
  /external/autotest/frontend/client/src/autotest/common/table/
ArrayDataSource.java 1 package autotest.common.table;
ListFilter.java 1 package autotest.common.table;
RadioButtonSetFilter.java 1 package autotest.common.table;
TableRenderer.java 1 package autotest.common.table;
26 htmlBuffer.append("<table><tbody>");
67 htmlBuffer.append("</tbody></table>");
82 // render the table within a DIV
86 // inject the new tbody into the existing table
97 protected native void setBodyElement(HTMLTable table, Element newBody) /*-{
98 table.@com.google.gwt.user.client.ui.HTMLTable::bodyElem = newBody;
  /external/blktrace/doc/
blktrace.tex 486 & & action specifiers in section~\ref{sec:act-table} \\ \hline
593 \emph{a} & Action, a (small) string (1 or 2 characters) -- see table below for more details \\ \hline
627 \subsubsection{\label{sec:act-table}Action Table}
628 The following table shows the various actions which may be output.
648 \subsubsection{\label{sec:act-table}RWBS Description}
    [all...]
  /external/boringssl/src/crypto/fipsmodule/ec/
p256-x86_64_test.cc 42 // Fill a table with some garbage input.
43 alignas(64) P256_POINT table[16]; local
45 OPENSSL_memset(table[i].X, 3 * i, sizeof(table[i].X));
46 OPENSSL_memset(table[i].Y, 3 * i + 1, sizeof(table[i].Y));
47 OPENSSL_memset(table[i].Z, 3 * i + 2, sizeof(table[i].Z));
52 ecp_nistz256_select_w5(&val, table, i);
58 expected = table[i-1]
68 alignas(64) P256_POINT_AFFINE table[64]; local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DERUniversalString.java 15 private static final char[] table = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' }; field in class:DERUniversalString
104 buf.append(table[(string[i] >>> 4) & 0xf]);
105 buf.append(table[string[i] & 0xf]);
  /external/clang/test/Analysis/
malloc-sizeof.c 41 int *table = malloc(sizeof sTable); local
45 return table;
50 int *table = malloc(sizeof sTable); // expected-warning {{Result of 'malloc' is converted to a pointer of type 'int', which is incompatible with sizeof operand type 'const double [10]'}} local
51 return table;
  /external/e2fsprogs/lib/ext2fs/
qcow2.c 93 blk64_t *table; local
96 ret = ext2fs_get_memzero(l1_size, &table);
101 ext2fs_free_mem(&table);
105 size = read(fd, table, l1_size);
107 ext2fs_free_mem(&table);
111 img->l1_table = table;
203 /* Walk through l1 table */
223 /* Walk through l2 table and copy data blocks into raw image */
  /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 */
66 /* table of Mac names. Thus, it is possible to build a version of */
177 /* UNDOCUMENTED! The number of glyphs in this table can be smaller */
178 /* than the value in the maxp table (cf. cyberbit.ttf). */
181 /* in this table, so the test for this threshold has been dropped. */
204 /* compute number of names stored in table */
243 FT_TRACE6(( "load_format_20: %d byte left in post table\n",
258 " truncating at end of post table (%d byte left)\n",
273 " all entries in post table are already parsed,
286 TT_Post_20 table = &face->postscript_names.names.format_20; local
364 TT_Post_25 table = &face->postscript_names.names.format_25; local
436 TT_Post_20 table = &names->names.format_20; local
451 TT_Post_25 table = &names->names.format_25; local
524 TT_Post_20 table = &names->names.format_20; local
547 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/harfbuzz_ng/src/
main.cc 29 #include "hb-ot-layout-gdef-table.hh"
99 printf (" %d table(s) found in font\n", num_tables);
101 const OpenTypeTable &table = font.get_table (n_table); local
102 printf (" Table %2d of %2d: %.4s (0x%08x+0x%08x)\n", n_table, num_tables,
103 (const char *)table.tag,
104 (unsigned int) table.offset,
105 (unsigned int) table.length);
107 switch (table.tag) {
113 const GSUBGPOS &g = *CastP<GSUBGPOS> (font_data + table.offset);
116 printf (" %d script(s) found in table\n", num_scripts)
    [all...]
  /external/iproute2/ip/
iplink_vrf.c 24 fprintf(f, "Usage: ... vrf table TABLEID\n");
36 if (matches(*argv, "table") == 0) {
37 __u32 table; local
41 if (rtnl_rttable_a2n(&table, *argv))
42 invarg("invalid table ID\n", *argv);
43 addattr32(n, 1024, IFLA_VRF_TABLE, table);
66 "table",
67 "table %u ",
79 "table",
80 "table %u "
    [all...]
ipmroute.c 39 fprintf(stderr, " [ table TABLE_ID ]\n");
64 __u32 table; local
86 table = rtm_get_table(r, tb);
88 if (filter.tb > 0 && filter.tb != table)
182 if (table && (table != RT_TABLE_MAIN || show_details > 0) && !filter.tb)
183 fprintf(fp, " Table: %s",
184 rtnl_rttable_n2a(table, b1, sizeof(b1)));
216 if (matches(*argv, "table") == 0) {
226 invarg("table id value is invalid\n", *argv)
    [all...]
  /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 76 unsigned char table[128]; member in struct:seg7_conversion_map
81 return c >= 0 && c < sizeof(map->table) ? map->table[c] : -EINVAL;
85 struct seg7_conversion_map _name = { .table = { _map } }
95 * ASCII conversion table

Completed in 621 milliseconds

<<11121314151617181920>>