HomeSort by relevance Sort by last modified time
    Searched refs:Table (Results 151 - 175 of 823) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/guava/guava/src/com/google/common/collect/
ForwardingTable.java 26 * A table which forwards all its method calls to another table. Subclasses
36 implements Table<R, C, V> {
40 @Override protected abstract Table<R, C, V> delegate();
103 public void putAll(Table<? extends R, ? extends C, ? extends V> table) {
104 delegate().putAll(table);
  /prebuilts/go/darwin-x86/src/hash/crc32/
crc32.go 40 // Table is a 256-word table representing the polynomial for efficient processing.
41 type Table [256]uint32
71 // castagnoliTable points to a lazily initialized Table for the Castagnoli
73 // Castagnoli table so we can compare against it to find when the caller is
75 var castagnoliTable *Table
89 // Initialize the slicing-by-8 table.
97 // IEEETable is the table for the IEEE polynomial.
113 // Initialize the slicing-by-8 table.
121 // MakeTable returns a Table constructed from the specified polynomial
    [all...]
  /prebuilts/go/linux-x86/src/hash/crc32/
crc32.go 40 // Table is a 256-word table representing the polynomial for efficient processing.
41 type Table [256]uint32
71 // castagnoliTable points to a lazily initialized Table for the Castagnoli
73 // Castagnoli table so we can compare against it to find when the caller is
75 var castagnoliTable *Table
89 // Initialize the slicing-by-8 table.
97 // IEEETable is the table for the IEEE polynomial.
113 // Initialize the slicing-by-8 table.
121 // MakeTable returns a Table constructed from the specified polynomial
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/ARM/VExpress/AcpiTables/rtsm_ve-aemv8a/
gtdt.asl 33 * [GTDT] Generic Timer Description Table
39 [0004] Table Length : 00000050
43 [0008] Oem Table ID : "RTSMVEV8"
  /device/linaro/bootloader/edk2/DuetPkg/Library/DuetBdsLib/
BdsPlatform.h 262 IN OUT VOID **Table
267 IN OUT VOID **Table
273 IN OUT VOID **Table
279 IN OUT VOID **Table
  /external/dng_sdk/source/
dng_1d_table.h 15 * Definition of a lookup table based 1D floating-point to floating-point function abstraction using linear interpolation.
32 /// \brief A 1D floating-point lookup table using linear interpolation.
39 /// Constants denoting size of table.
43 kTableBits = 12, //< Table is always a power of 2 in size. This is log2(kTableSize).
44 kTableSize = (1 << kTableBits) //< Number of entries in table.
59 /// Set up table, initialize entries using functiion.
61 /// \param allocator Memory allocator from which table memory is allocated.
62 /// \param function Table is initialized with values of finction.Evalluate(0.0) to function.Evaluate(1.0).
99 /// Direct access function for table data.
101 const real32 * Table () cons
    [all...]
  /external/flatbuffers/tests/MyGame/Example/
Test.php 7 use \Google\FlatBuffers\Table;
Test.py 12 self._tab = flatbuffers.table.Table(buf, pos)
TestSimpleTableWithEnum.py 19 self._tab = flatbuffers.table.Table(buf, pos)
  /external/flatbuffers/tests/MyGame/Example2/
Monster.java 11 public final class Monster extends Table {
  /external/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/
StructInNestedNS.php 7 use \Google\FlatBuffers\Table;
StructInNestedNS.py 12 self._tab = flatbuffers.table.Table(buf, pos)
TableInNestedNS.py 19 self._tab = flatbuffers.table.Table(buf, pos)
  /external/llvm/include/llvm/DebugInfo/CodeView/
ListRecordBuilder.h 41 TypeIndex writeListRecord(TypeTableBuilder &Table);
  /external/swiftshader/third_party/LLVM/include/llvm/MC/
SubtargetFeature.h 100 const SubtargetInfoKV *Table, size_t TableSize);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
armVCM4P10_DecodeCoeffsToPair.c 45 /* 4x4 DeZigZag table */
64 * [in] nTable Table number (0 to 4) according to the five columns
65 * of Table 9-5 in the H.264 spec
217 int Table = ZerosLeft;
218 if (Table > 6)
220 Table = 7;
222 Run = armUnPackVLC32(ppBitStream, pOffset, armVCM4P10_CAVLCRunBeforeTables[Table-1]);
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/
debug1.d 31 The Directory Table \(offset 0x.*\):
34 The File Name Table \(offset 0x.*\):
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/ia64/
pr13167.d 29 The Directory Table is empty\.
31 The File Name Table \(offset 0x.*\):
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
ArrayTableTest.java 24 import com.google.common.collect.Table.Cell;
43 ArrayTable<String, Integer, Character> table = local
45 populate(table, data);
46 return table;
50 assertEquals(9, table.size());
64 table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
65 assertTrue(table.contains("foo", 1));
66 assertTrue(table.contains("bar", 1));
67 assertTrue(table.contains("foo", 3));
68 assertTrue(table.contains("foo", 2))
280 ArrayTable<String, Integer, Character> table local
286 ArrayTable<String, Integer, Character> table local
298 ArrayTable<String, Integer, Character> table local
322 ArrayTable<String, Integer, Character> table local
350 ArrayTable<String, Integer, Character> table local
377 ArrayTable<String, Integer, Character> table local
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
ArrayTableTest.java 25 import com.google.common.collect.Table.Cell;
45 ArrayTable<String, Integer, Character> table = local
47 populate(table, data);
48 return table;
52 assertEquals(9, table.size());
66 table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
67 assertTrue(table.contains("foo", 1));
68 assertTrue(table.contains("bar", 1));
69 assertTrue(table.contains("foo", 3));
70 assertTrue(table.contains("foo", 2))
287 ArrayTable<String, Integer, Character> table local
293 ArrayTable<String, Integer, Character> table local
305 ArrayTable<String, Integer, Character> table local
329 ArrayTable<String, Integer, Character> table local
357 ArrayTable<String, Integer, Character> table local
384 ArrayTable<String, Integer, Character> table local
399 ArrayTable<String, Integer, Character> table local
    [all...]
BenchmarkHelpers.java 258 <R extends Comparable<R>, C extends Comparable<C>, V> Table<R, C, V> create(
259 Table<R, C, V> contents) {
265 <R extends Comparable<R>, C extends Comparable<C>, V> Table<R, C, V> create(
266 Table<R, C, V> contents) {
267 Table<R, C, V> table = TreeBasedTable.create(); local
268 table.putAll(contents);
269 return table;
274 <R extends Comparable<R>, C extends Comparable<C>, V> Table<R, C, V> create(
275 Table<R, C, V> contents)
    [all...]
  /external/pdfium/third_party/lcms2-2.6/src/
cmsintrp.c 106 const void *Table,
126 p ->Table = Table;
154 cmsInterpParams* _cmsComputeInterpParams(cmsContext ContextID, int nSamples, int InputChan, int OutputChan, const void* Table, cmsUInt32Number dwFlags)
164 return _cmsComputeInterpParamsEx(ContextID, Samples, InputChan, OutputChan, Table, dwFlags);
193 const cmsUInt16Number* LutTable = (cmsUInt16Number*) p ->Table;
230 const cmsFloat32Number* LutTable = (cmsFloat32Number*) p ->Table;
266 const cmsUInt16Number* LutTable = (cmsUInt16Number*) p16 -> Table;
297 const cmsFloat32Number* LutTable = (cmsFloat32Number*) p ->Table;
337 const cmsFloat32Number* LutTable = (cmsFloat32Number*) p ->Table;
    [all...]
  /cts/hostsidetests/inputmethodservice/deviceside/lib/src/android/inputmethodservice/cts/db/
Database.java 41 for (final Table table : getTables()) {
42 db.execSQL(table.createTableSql());
59 protected abstract List<Table> getTables();
61 public Cursor query(final String table, final String[] projection, final String selection,
64 .query(table, projection, selection, selectionArgs, null /* groupBy */,
68 public long insert(final String table, final ContentValues values) {
69 return mHelper.getWritableDatabase().insert(table, null /* nullColumnHack */, values);
72 public int delete(final String table, final String selection, final String[] selectionArgs) {
73 return mHelper.getWritableDatabase().delete(table, selection, selectionArgs)
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
Ip6Input.h 93 // Each Ip service instance has an assemble table to reassemble
95 // as hash table.
160 number of input data blocks when building a fragment table.
176 Initialize an already allocated assemble table. This is generally
177 the assemble table embedded in the IP6 service instance.
179 @param[in, out] Table The assemble table to initialize.
184 IN OUT IP6_ASSEMBLE_TABLE *Table
188 Clean up the assemble table: remove all the fragments
191 @param[in, out] Table The assemble table to clean up.
    [all...]
  /device/linaro/bootloader/edk2/OvmfPkg/AcpiS3SaveDxe/
AcpiS3Save.c 84 This function scan ACPI table in RSDT.
87 @param Signature ACPI table signature
89 @return ACPI table
101 EFI_ACPI_DESCRIPTION_HEADER *Table;
111 Table = (EFI_ACPI_DESCRIPTION_HEADER *)((UINTN)(*EntryPtr));
112 if (Table->Signature == Signature) {
113 return Table;
122 This function scan ACPI table in XSDT.
125 @param Signature ACPI table signature
127 @return ACPI table
    [all...]

Completed in 2048 milliseconds

1 2 3 4 5 67 8 91011>>