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

<<21222324252627282930>>

  /external/chromium_org/third_party/leveldatabase/src/include/leveldb/
table.h 21 // A Table is a sorted map from strings to strings. Tables are
22 // immutable and persistent. A Table may be safely accessed from
24 class Table {
26 // Attempt to open the table that is stored in bytes [0..file_size)
28 // retrieving data from the table.
30 // If successful, returns ok and sets "*table" to the newly opened
31 // table. The client should delete "*table" when no longer needed.
32 // If there was an error while initializing the table, sets "*table"
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mapi/mapi/
sources.mak 25 $(TOP)/src/mapi/mapi/table.c \
32 $(TOP)/src/mapi/mapi/table.c \
  /external/chromium_org/third_party/re2/doc/
mksyntaxwiki 26 <table border="0" cellpadding="2" cellspacing="2">
32 </table>
  /external/chromium_org/third_party/skia/include/core/
SkColorFilter.h 48 * If the filter can be represented by per-component table, return true,
49 * and if table is not null, copy the bitmap containing the table into it.
51 * The table bitmap will be in SkBitmap::kA8_Config. Each row corresponding
55 * a' = *table.getAddr8(a, 0);
56 * r' = *table.getAddr8(r, 1);
57 * g' = *table.getAddr8(g, 2);
58 * b' = *table.getAddr8(b, 3);
63 virtual bool asComponentTable(SkBitmap* table) const;
  /external/chromium_org/third_party/skia/src/images/
transform_scanline.h 89 const SkUnPreMultiply::Scale* SK_RESTRICT table = local
100 SkUnPreMultiply::Scale scale = table[a];
119 const SkUnPreMultiply::Scale* SK_RESTRICT table = local
130 SkUnPreMultiply::Scale scale = table[a];
  /external/chromium_org/third_party/tcmalloc/chromium/src/windows/
mini_disassembler.h 121 unsigned int table,
175 // Huge big opcode table based on the IA-32 manual, defined
179 // Somewhat smaller table to help with decoding ModR/M bytes
184 // Somewhat smaller table to help with decoding ModR/M bytes
  /external/chromium_org/third_party/tcmalloc/vendor/src/windows/
mini_disassembler.h 121 unsigned int table,
175 // Huge big opcode table based on the IA-32 manual, defined
179 // Somewhat smaller table to help with decoding ModR/M bytes
184 // Somewhat smaller table to help with decoding ModR/M bytes
  /external/chromium_org/v8/tools/
generate-trig-table.py 30 # This is a utility for populating the lookup table for the
43 #include "src/trig-table.h"
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
PropertyTooltipTextProvider.java 11 package org.eclipse.wb.internal.core.model.property.table;
22 * @coverage core.model.property.table
  /external/icu/icu4c/source/common/
ucol_data.h 56 uint32_t unsafeCP; /* hash table of unsafe code points */
57 uint32_t contrEndCP; /* hash table of final code points */
79 uint32_t table; member in struct:__anon25602
  /external/icu/icu4c/source/layout/
NonContextualGlyphSubstProc.cpp 40 switch (SWAPW(header->table.format)) {
NonContextualGlyphSubstProc2.cpp 41 switch (SWAPW(header->table.format))
SegmentSingleProcessor2.cpp 29 segmentSingleLookupTable = LEReferenceTo<SegmentSingleLookupTable>(morphSubtableHeader, success, &header->table);
SimpleArrayProcessor.cpp 28 simpleArrayLookupTable = LEReferenceTo<SimpleArrayLookupTable>(morphSubtableHeader, success, (const SimpleArrayLookupTable*)&header->table);
SimpleArrayProcessor2.cpp 29 simpleArrayLookupTable = LEReferenceTo<SimpleArrayLookupTable>(morphSubtableHeader, success, &header->table);
SingleTableProcessor.cpp 28 singleTableLookupTable = LEReferenceTo<SingleTableLookupTable>(morphSubtableHeader, success, (const SingleTableLookupTable*)&header->table);
SingleTableProcessor2.cpp 29 singleTableLookupTable = LEReferenceTo<SingleTableLookupTable>(morphSubtableHeader, success, &header->table);
  /external/iproute2/include/linux/
fib_rules.h 24 __u8 table; member in struct:fib_rule_hdr
49 FRA_TABLE, /* Extended table id */
61 FR_ACT_TO_TBL, /* Pass to fixed table */
  /external/kernel-headers/original/uapi/linux/
fib_rules.h 24 __u8 table; member in struct:fib_rule_hdr
49 FRA_TABLE, /* Extended table id */
59 FR_ACT_TO_TBL, /* Pass to fixed table */
  /external/libgsm/
Android.mk 34 src/table.c
  /external/libsepol/src/
avrule_block.c 31 * block than the global policy. Thus the symbol table sizes are
149 /* Look up an identifier in a policy's scoping table. If it is there,
156 (scope_datum_t *) hashtab_search(p->scope[symbol_table].table, id);
185 (class_datum_t *) hashtab_search(p->p_classes.table, class_id);
189 perm = hashtab_search(cladatum->permissions.table, perm_id);
194 hashtab_search(cladatum->comdatum->permissions.table,
  /external/llvm/test/MC/ELF/
compression.s 60 # pad out the line table to make sure it's big enough to warrant compression
  /external/mesa3d/src/mapi/mapi/
sources.mak 25 $(TOP)/src/mapi/mapi/table.c \
32 $(TOP)/src/mapi/mapi/table.c \
  /external/pdfium/fpdfsdk/include/
fpdf_sysfontinfo.h 131 * Can read either full font file, or a particular TrueType/OpenType table
135 * table - TrueType/OpenType table identifier (refer to TrueType specification).
144 unsigned int table, unsigned char* buffer, unsigned long buf_size);
  /external/pdfium/fpdfsdk/src/
fpdf_sysfontinfo.cpp 45 virtual FX_DWORD GetFontData(void* hFont, FX_DWORD table, FX_LPBYTE buffer, FX_DWORD size)
48 return m_pInfo->GetFontData(m_pInfo, hFont, table, buffer, size);
120 unsigned int table, unsigned char* buffer, unsigned long buf_size)
122 return ((FPDF_SYSFONTINFO_DEFAULT*)pThis)->m_pFontInfo->GetFontData(hFont, table, buffer, buf_size);

Completed in 672 milliseconds

<<21222324252627282930>>