HomeSort by relevance Sort by last modified time
    Searched defs:Table (Results 1 - 25 of 96) sorted by null

1 2 3 4

  /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/chrome/browser/ui/cocoa/
table_row_nsimage_cache.h 21 // Interface this cache expects for its table model.
22 class Table {
24 // Returns the number of rows in the table.
31 virtual ~Table() {}
35 explicit TableRowNSImageCache(Table* model);
41 // Call these functions every time the table changes, to update the cache.
48 // The table model we query for row count and icons.
49 Table* model_; // weak
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/asm/ARMV5E/
pred_lt4_1_opt.s 48 ADRL r8, Table
456 Table:
457 .word inter4_2-Table
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
LVM_Mixer_TimeConstant.c 70 LVM_UINT32 Table[] = {ALPHA_0, /* Log spaced look-up table */
132 /* Normalize to get the table index and interpolation factor */
151 Diff = (LVM_INT32)(Table[Shift] - Table[Shift+1]);
153 Product = Table[Shift+1] + (LVM_UINT32)Diff;
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/
table.cc 21 #include "sfntly/table/table.h"
25 #include "sfntly/table/bitmap/ebdt_table.h"
26 #include "sfntly/table/bitmap/eblc_table.h"
27 #include "sfntly/table/bitmap/ebsc_table.h"
28 #include "sfntly/table/core/cmap_table.h"
29 #include "sfntly/table/core/font_header_table.h"
30 #include "sfntly/table/core/horizontal_device_metrics_table.h"
31 #include "sfntly/table/core/horizontal_header_table.h"
32 #include "sfntly/table/core/horizontal_metrics_table.h
    [all...]
table.h 26 #include "sfntly/table/font_data_table.h"
27 #include "sfntly/table/header.h"
32 // A concrete implementation of a root level table in the font. This is the base
33 // class used for all specific table implementations and is used as the generic
34 // table for all tables which have no specific implementations.
35 class Table : public FontDataTable {
37 // Note: original version is Builder<T extends Table>
44 virtual void NotifyPostTableBuild(FontDataTable* table);
46 // Get a builder for the table type specified by the data in the header.
47 // @param header the header for the table
    [all...]
  /external/sfntly/cpp/src/sfntly/table/
table.cc 21 #include "sfntly/table/table.h"
25 #include "sfntly/table/bitmap/ebdt_table.h"
26 #include "sfntly/table/bitmap/eblc_table.h"
27 #include "sfntly/table/bitmap/ebsc_table.h"
28 #include "sfntly/table/core/cmap_table.h"
29 #include "sfntly/table/core/font_header_table.h"
30 #include "sfntly/table/core/horizontal_device_metrics_table.h"
31 #include "sfntly/table/core/horizontal_header_table.h"
32 #include "sfntly/table/core/horizontal_metrics_table.h
    [all...]
table.h 26 #include "sfntly/table/font_data_table.h"
27 #include "sfntly/table/header.h"
32 // A concrete implementation of a root level table in the font. This is the base
33 // class used for all specific table implementations and is used as the generic
34 // table for all tables which have no specific implementations.
35 class Table : public FontDataTable {
37 // Note: original version is Builder<T extends Table>
44 virtual void NotifyPostTableBuild(FontDataTable* table);
46 // Get a builder for the table type specified by the data in the header.
47 // @param header the header for the table
    [all...]
  /art/runtime/
intern_table.h 50 // Interns a potentially new string in the 'strong' table. (See above.)
54 // Interns a potentially new string in the 'strong' table. (See above.)
58 // Interns a potentially new string in the 'strong' table. (See above.)
61 // Interns a potentially new string in the 'weak' table. (See above.)
89 TrackingAllocator<GcRoot<mirror::String>, kAllocatorTagInternTable>> Table;
99 mirror::String* Lookup(Table* table, mirror::String* s)
111 void Remove(Table* table, mirror::String* s)
132 // enable concurrent intern table (strong) root scan. Do no
    [all...]
reference_table.h 35 // Maintain a table of references. Used for JNI monitor references and
56 TrackingAllocator<GcRoot<mirror::Object>, kAllocatorTagReferenceTable>> Table;
57 static void Dump(std::ostream& os, Table& entries)
62 Table entries_;
gc_map.h 34 // The number of entries in the table.
42 return &Table()[entry_offset + NativeOffsetWidth()];
45 // Get the native PC encoded in the table at the given index.
50 result |= Table()[entry_offset + i] << (i * 8);
92 const uint8_t* Table() const {
101 // The width of an entry in the table.
106 const uint8_t* const data_; // The header and table data
  /external/lzma/CS/7zip/Common/
CRC.cs 7 public static readonly uint[] Table;
11 Table = new uint[256];
21 Table[i] = r;
31 _value = Table[(((byte)(_value)) ^ b)] ^ (_value >> 8);
37 _value = Table[(((byte)(_value)) ^ data[offset + i])] ^ (_value >> 8);
  /external/lzma/Java/SevenZip/
CRC.java 7 static public int[] Table = new int[256];
19 Table[i] = r;
33 _value = Table[(_value ^ data[offset + i]) & 0xFF] ^ (_value >>> 8);
40 _value = Table[(_value ^ data[i]) & 0xFF] ^ (_value >>> 8);
45 _value = Table[(_value ^ b) & 0xFF] ^ (_value >>> 8);
  /external/chromium_org/third_party/brotli/src/woff2/
font.h 28 // Represents an sfnt font file. Only the table directory is parsed, for the
29 // table data we only store a raw pointer, therefore a font object is valid only
35 struct Table {
45 std::map<uint32_t, Table> tables;
47 Table* FindTable(uint32_t tag);
48 const Table* FindTable(uint32_t tag) const;
74 // Removes the digital signature (DSIG) table
woff2_common.h 35 struct Table {
  /external/chromium_org/third_party/leveldatabase/src/db/
memtable.h 77 typedef SkipList<const char*, KeyComparator> Table;
82 Table table_;
  /hardware/ti/omap4xxx/camera/inc/OMXCameraAdapter/
OMXSceneModeTables.h 44 const SceneModesEntry* Table;
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
Entry.java 37 public @interface Table {
  /frameworks/compile/mclinker/include/mcld/LD/
NamePool.h 38 typedef HashTable<ResolveInfo, hash::StringHash<hash::DJB> > Table;
39 typedef Table::iterator syminfo_iterator;
40 typedef Table::const_iterator const_syminfo_iterator;
91 /// @return the StringRef points to the hash table
135 Table m_Table;
  /art/runtime/verifier/
dex_gc_map.h 50 // The number of entries in the table
59 return Table()[entry_offset];
61 return Table()[entry_offset] | (Table()[entry_offset + 1] << 8);
68 return &Table()[entry_offset + DexPcWidth()];
80 // Table of num_entries * (dex pc, bitmap)
81 const uint8_t* Table() const {
85 // The format of the table of the PCs for the table
104 // The width of an entry in the table
    [all...]
  /external/chromium_org/third_party/sqlite/src/test/
fuzz_common.tcl 28 # Table
111 # Return a valid table name.
114 proc Table {} {
167 {[SelectKw] [ResultSet $nRes $::ColumnList] FROM [Table]} \
178 {[SelectKw] * FROM [Table]} \
179 {[SelectKw] * FROM [Table] WHERE [Expr $::ColumnList]} \
182 FROM [Table],[Table] AS t2
186 FROM [Table] LEFT OUTER JOIN [Table] AS t2
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
DebugCheckers.cpp 162 typedef AnalyzerOptions::ConfigTable Table;
164 static int compareEntry(const Table::MapEntryTy *const *LHS,
165 const Table::MapEntryTy *const *RHS) {
173 const Table &Config = mgr.options.Config;
175 SmallVector<const Table::MapEntryTy *, 32> Keys;
176 for (Table::const_iterator I = Config.begin(), E = Config.end(); I != E;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
armVCM4P10_DecodeCoeffsToPair.c 30 /* 4x4 DeZigZag table */
49 * [in] nTable Table number (0 to 4) according to the five columns
50 * of Table 9-5 in the H.264 spec
202 int Table = ZerosLeft;
203 if (Table > 6)
205 Table = 7;
207 Run = armUnPackVLC32(ppBitStream, pOffset, armVCM4P10_CAVLCRunBeforeTables[Table-1]);
  /hardware/ti/omap4-aah/camera/inc/OMXCameraAdapter/
OMXSceneModeTables.h 47 const SceneModesEntry* Table;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_pointers.py 76 # The int pointer points to a table containing the numbers 1..10
113 class Table(Structure):
118 pt = pointer(Table(1, 2, 3))
127 del _pointer_type_cache[Table]

Completed in 929 milliseconds

1 2 3 4