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

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/glx/tests/
indirect_api.cpp 28 * Tests various apsects of the dispatch table generated by
31 * * No entry in the table should be \c NULL.
33 * * Entries in the table that correspond to "known" functions with GLX
36 * * Entries beyond the end of the "known" part of the table (i.e., entries
40 * * Entries in the table that correspond to "known" functions that lack
713 _glapi_proc *table; member in class:IndirectAPI
719 this->table = (_glapi_proc *) __glXNewIndirectAPI();
725 free(this->table);
726 this->table = NULL;
733 /* __glXNewIndirectAPI determines the size of the dispatch table by callin
738 _glapi_table *table = __glXNewIndirectAPI(); local
    [all...]
  /external/mesa3d/src/glx/tests/
indirect_api.cpp 28 * Tests various apsects of the dispatch table generated by
31 * * No entry in the table should be \c NULL.
33 * * Entries in the table that correspond to "known" functions with GLX
36 * * Entries beyond the end of the "known" part of the table (i.e., entries
40 * * Entries in the table that correspond to "known" functions that lack
713 _glapi_proc *table; member in class:IndirectAPI
719 this->table = (_glapi_proc *) __glXNewIndirectAPI();
725 free(this->table);
726 this->table = NULL;
733 /* __glXNewIndirectAPI determines the size of the dispatch table by callin
738 _glapi_table *table = __glXNewIndirectAPI(); local
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
stack_trace_table_test.cc 14 static void CheckTracesAndReset(tcmalloc::StackTraceTable* table,
16 void** entries = table->ReadStackTracesAndClear();
23 static void AddTrace(tcmalloc::StackTraceTable* table,
31 table->AddTrace(t);
35 tcmalloc::StackTraceTable table; local
37 // Empty table
38 CHECK_EQ(table.depth_total(), 0);
39 CHECK_EQ(table.bucket_total(), 0);
41 CheckTracesAndReset(&table, k1, ARRAYSIZE(k1));
56 // Table w/ just t
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
stack_trace_table_test.cc 14 static void CheckTracesAndReset(tcmalloc::StackTraceTable* table,
16 void** entries = table->ReadStackTracesAndClear();
23 static void AddTrace(tcmalloc::StackTraceTable* table,
31 table->AddTrace(t);
35 tcmalloc::StackTraceTable table; local
37 // Empty table
38 CHECK_EQ(table.depth_total(), 0);
39 CHECK_EQ(table.bucket_total(), 0);
41 CheckTracesAndReset(&table, k1, ARRAYSIZE(k1));
56 // Table w/ just t
    [all...]
  /external/chromium_org/third_party/freetype/src/base/
ftdbgmem.c 226 ft_mem_table_alloc( FT_MemTable table,
229 FT_Memory memory = table->memory;
233 memory->user = table->memory_user;
234 block = table->alloc( memory, size );
235 memory->user = table;
242 ft_mem_table_free( FT_MemTable table,
245 FT_Memory memory = table->memory;
248 memory->user = table->memory_user;
249 table->free( memory, block );
250 memory->user = table;
307 FT_MemTable table; local
678 FT_MemTable table = (FT_MemTable)memory->user; local
714 FT_MemTable table = (FT_MemTable)memory->user; local
740 FT_MemTable table = (FT_MemTable)memory->user; local
821 FT_MemTable table; local
884 FT_MemTable table = (FT_MemTable)memory->user; local
920 FT_MemTable table = (FT_MemTable)memory->user; local
    [all...]
  /external/freetype/src/base/
ftdbgmem.c 226 ft_mem_table_alloc( FT_MemTable table,
229 FT_Memory memory = table->memory;
233 memory->user = table->memory_user;
234 block = table->alloc( memory, size );
235 memory->user = table;
242 ft_mem_table_free( FT_MemTable table,
245 FT_Memory memory = table->memory;
248 memory->user = table->memory_user;
249 table->free( memory, block );
250 memory->user = table;
307 FT_MemTable table; local
678 FT_MemTable table = (FT_MemTable)memory->user; local
714 FT_MemTable table = (FT_MemTable)memory->user; local
740 FT_MemTable table = (FT_MemTable)memory->user; local
821 FT_MemTable table; local
884 FT_MemTable table = (FT_MemTable)memory->user; local
920 FT_MemTable table = (FT_MemTable)memory->user; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
hash.c 3 * Generic hash table.
44 #define TABLE_SIZE 1023 /**< Size of lookup table/array */
50 * An entry in the hash table.
60 * The hash table data structure.
63 struct HashEntry *Table[TABLE_SIZE]; /**< the lookup table */
73 * Create a new hash table.
75 * \return pointer to a new, empty hash table.
80 struct _mesa_HashTable *table = CALLOC_STRUCT(_mesa_HashTable); local
81 if (table) {
    [all...]
  /external/mesa3d/src/mesa/main/
hash.c 3 * Generic hash table.
44 #define TABLE_SIZE 1023 /**< Size of lookup table/array */
50 * An entry in the hash table.
60 * The hash table data structure.
63 struct HashEntry *Table[TABLE_SIZE]; /**< the lookup table */
73 * Create a new hash table.
75 * \return pointer to a new, empty hash table.
80 struct _mesa_HashTable *table = CALLOC_STRUCT(_mesa_HashTable); local
81 if (table) {
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
latebindingsymboltable_unittest.cc 55 LibmTestSymbolTable table; local
56 EXPECT_FALSE(table.IsLoaded());
57 ASSERT_TRUE(table.Load());
58 EXPECT_TRUE(table.IsLoaded());
59 EXPECT_EQ(table.acos()(0.5), acos(0.5));
60 EXPECT_EQ(table.sin()(0.5), sin(0.5));
61 EXPECT_EQ(table.tan()(0.5), tan(0.5));
64 table.Unload();
65 EXPECT_FALSE(table.IsLoaded());
  /external/chromium_org/third_party/skia/include/effects/
SkTableMaskFilter.h 16 Applies a table lookup on each of the alpha values in the mask.
22 SkTableMaskFilter(const uint8_t table[256]);
25 /** Utility that sets the gamma table
27 static void MakeGammaTable(uint8_t table[256], SkScalar gamma);
29 /** Utility that creates a clipping table: clamps values below min to 0
32 static void MakeClipTable(uint8_t table[256], uint8_t min, uint8_t max);
35 uint8_t table[256]; local
36 MakeGammaTable(table, gamma);
37 return SkNEW_ARGS(SkTableMaskFilter, (table));
41 uint8_t table[256] local
    [all...]
  /external/skia/include/effects/
SkTableMaskFilter.h 16 Applies a table lookup on each of the alpha values in the mask.
22 SkTableMaskFilter(const uint8_t table[256]);
25 /** Utility that sets the gamma table
27 static void MakeGammaTable(uint8_t table[256], SkScalar gamma);
29 /** Utility that creates a clipping table: clamps values below min to 0
32 static void MakeClipTable(uint8_t table[256], uint8_t min, uint8_t max);
35 uint8_t table[256]; local
36 MakeGammaTable(table, gamma);
37 return SkNEW_ARGS(SkTableMaskFilter, (table));
41 uint8_t table[256] local
    [all...]
  /external/chromium_org/third_party/icu/source/test/letest/
FontTableCache.cpp 19 const void *table; member in struct:FontTableCacheEntry
34 fTableCache[i].table = NULL;
41 DELETE_ARRAY(fTableCache[i].table);
44 fTableCache[i].table = NULL;
52 void FontTableCache::freeFontTable(const void *table) const
54 DELETE_ARRAY(table);
61 return fTableCache[i].table;
65 const void *table = readFontTable(tableTag); local
67 ((FontTableCache *) this)->add(tableTag, table);
69 return table;
    [all...]
  /external/icu4c/samples/layout/
FontTableCache.cpp 18 const void *table; member in struct:FontTableCacheEntry
33 fTableCache[i].table = NULL;
40 freeFontTable(fTableCache[i].table);
43 fTableCache[i].table = NULL;
52 void FontTableCache::freeFontTable(const void *table) const
54 LE_DELETE_ARRAY(table);
61 return fTableCache[i].table;
65 const void *table = readFontTable(tableTag); local
67 ((FontTableCache *) this)->add(tableTag, table);
69 return table;
    [all...]
  /external/icu4c/test/letest/
FontTableCache.cpp 19 const void *table; member in struct:FontTableCacheEntry
34 fTableCache[i].table = NULL;
41 DELETE_ARRAY(fTableCache[i].table);
44 fTableCache[i].table = NULL;
52 void FontTableCache::freeFontTable(const void *table) const
54 DELETE_ARRAY(table);
61 return fTableCache[i].table;
65 const void *table = readFontTable(tableTag); local
67 ((FontTableCache *) this)->add(tableTag, table);
69 return table;
    [all...]
  /external/smack/src/org/xbill/DNS/
Options.java 27 private static Map table; field in class:Options
62 table = null;
68 if (table == null)
69 table = new HashMap();
70 table.put(option.toLowerCase(), "true");
76 if (table == null)
77 table = new HashMap();
78 table.put(option.toLowerCase(), value.toLowerCase());
84 if (table == null)
86 table.remove(option.toLowerCase())
    [all...]
  /external/chromium_org/chrome/browser/extensions/activity_log/
database_string_table_unittest.cc 34 DatabaseStringTable table("test");
35 table.Initialize(&db_);
40 // Insert a new mapping into the table, then verify the table contents.
42 DatabaseStringTable table("test");
43 table.Initialize(&db_);
45 ASSERT_TRUE(table.StringToInt(&db_, "abc", &id));
57 DatabaseStringTable table("test");
58 table.Initialize(&db_);
62 ASSERT_TRUE(table.StringToInt(&db_, "string1", &id1))
    [all...]
  /external/libxml2/
hash.c 55 * A single entry in the hash table
69 * The entire hash table
72 struct _xmlHashEntry *table; member in struct:_xmlHashTable
86 xmlHashComputeKey(xmlHashTablePtr table, const xmlChar *name,
92 value = table->random_seed;
110 return (value % table->size);
114 xmlHashComputeQKey(xmlHashTablePtr table,
122 value = table->random_seed;
162 return (value % table->size);
167 * @size: the size of the hash table
175 xmlHashTablePtr table; local
213 xmlHashTablePtr table; local
    [all...]
  /external/v8/test/cctest/
test-dictionary.cc 45 Handle<ObjectHashTable> table = FACTORY->NewObjectHashTable(23); local
48 table = PutIntoObjectHashTable(table, a, b);
49 CHECK_EQ(table->NumberOfElements(), 1);
50 CHECK_EQ(table->Lookup(*a), *b);
51 CHECK_EQ(table->Lookup(*b), HEAP->undefined_value());
55 CHECK_EQ(table->NumberOfElements(), 1);
56 CHECK_EQ(table->Lookup(*a), *b);
57 CHECK_EQ(table->Lookup(*b), HEAP->undefined_value());
60 table = PutIntoObjectHashTable(table, a, FACTORY->NewJSArray(13))
106 Handle<ObjectHashSet> table = FACTORY->NewObjectHashSet(1); local
129 Handle<ObjectHashTable> table = FACTORY->NewObjectHashTable(1); local
    [all...]
  /external/chromium_org/third_party/libxml/src/
hash.c 35 * A single entry in the hash table
49 * The entire hash table
52 struct _xmlHashEntry *table; member in struct:_xmlHashTable
63 xmlHashComputeKey(xmlHashTablePtr table, const xmlChar *name,
84 return (value % table->size);
88 xmlHashComputeQKey(xmlHashTablePtr table,
133 return (value % table->size);
138 * @size: the size of the hash table
146 xmlHashTablePtr table; local
151 table = xmlMalloc(sizeof(xmlHashTable))
177 xmlHashTablePtr table; local
    [all...]
  /external/chromium/chrome/browser/resources/options/
certificate_manager.css 7 .certificate-tree-table {
  /external/chromium_org/third_party/lzma_sdk/
7zCrcOpt.c 8 #define CRC_UPDATE_BYTE_2(crc, b) (table[((crc) ^ (b)) & 0xFF] ^ ((crc) >> 8))
10 UInt32 MY_FAST_CALL CrcUpdateT4(UInt32 v, const void *data, size_t size, const UInt32 *table)
19 table[0x300 + (v & 0xFF)] ^
20 table[0x200 + ((v >> 8) & 0xFF)] ^
21 table[0x100 + ((v >> 16) & 0xFF)] ^
22 table[0x000 + ((v >> 24))];
29 UInt32 MY_FAST_CALL CrcUpdateT8(UInt32 v, const void *data, size_t size, const UInt32 *table)
31 return CrcUpdateT4(v, data, size, table);
  /external/lzma/C/
7zCrcOpt.c 8 #define CRC_UPDATE_BYTE_2(crc, b) (table[((crc) ^ (b)) & 0xFF] ^ ((crc) >> 8))
10 UInt32 MY_FAST_CALL CrcUpdateT4(UInt32 v, const void *data, size_t size, const UInt32 *table)
19 table[0x300 + (v & 0xFF)] ^
20 table[0x200 + ((v >> 8) & 0xFF)] ^
21 table[0x100 + ((v >> 16) & 0xFF)] ^
22 table[0x000 + ((v >> 24))];
29 UInt32 MY_FAST_CALL CrcUpdateT8(UInt32 v, const void *data, size_t size, const UInt32 *table)
31 return CrcUpdateT4(v, data, size, table);
  /frameworks/base/graphics/java/android/graphics/
TableMaskFilter.java 24 public TableMaskFilter(byte[] table) {
25 if (table.length < 256) {
26 throw new RuntimeException("table.length must be >= 256");
28 native_instance = nativeNewTable(table);
43 private static native int nativeNewTable(byte[] table);
  /external/chromium_org/chrome/browser/resources/memory_internals/
list.css 5 table.list {
10 table.list tr:nth-child(odd) td {
14 table.list td {
19 table.list .header th {
24 table.list .bottom th,
25 table.list th.bottom {
  /external/chromium_org/native_client_sdk/src/libraries/xray/
hashtable.c 29 XRAY_NO_INSTRUMENT void XRayHashTableGrow(struct XRayHashTable* table);
31 XRAY_NO_INSTRUMENT void XRayHashTableInit(struct XRayHashTable* table,
54 int XRayHashTableGetCapacity(struct XRayHashTable* table) {
55 return table->capacity;
59 int XRayHashTableGetCount(struct XRayHashTable* table) {
60 return table->count;
65 void* XRayHashTableLookup(struct XRayHashTable* table, uint32_t key) {
67 uint32_t m = table->capacity - 1;
72 /* An empty entry means the {key, data} isn't in the table. */
73 if (NULL == table->array[j].data)
176 struct XRayHashTable* table; local
    [all...]

Completed in 757 milliseconds

12 3 4 5 6 7 8 91011>>