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

1 2 3 4 5 6 7 8

  /external/tensorflow/tensorflow/core/lib/io/
table.h 25 namespace table { namespace in namespace:tensorflow
32 // A Table is a sorted map from strings to strings. Tables are
33 // immutable and persistent. A Table may be safely accessed from
35 class Table {
37 // Attempt to open the table that is stored in bytes [0..file_size)
39 // retrieving data from the table.
41 // If successful, returns ok and sets "*table" to the newly opened
42 // table. The client should delete "*table" when no longer needed.
43 // If there was an error while initializing the table, sets "*table
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/asm/ARMV5E/
pred_lt4_1_opt.s 48 ADR r8, Table
457 Table:
458 .word inter4_2-Table
  /external/flatbuffers/tests/MyGame/Example2/
Monster.go 10 _tab flatbuffers.Table
25 func (rcv *Monster) Table() flatbuffers.Table {
  /external/flatbuffers/tests/MyGame/
InParentNamespace.go 10 _tab flatbuffers.Table
25 func (rcv *InParentNamespace) Table() flatbuffers.Table {
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/PDB/DIA/
DIATable.h 27 CComPtr<IDiaTable> Table;
  /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...]
  /art/runtime/
reference_table.h 35 // Maintain a table of references. Used for JNI monitor references and
59 TrackingAllocator<GcRoot<mirror::Object>, kAllocatorTagReferenceTable>> Table;
60 static void Dump(std::ostream& os, Table& entries)
66 Table entries_;
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Table/
Table.py 2 # This file is used to create/update/query/erase a common table
21 # This class defined a common table
26 # @param TableName: Name of the table
28 class Table(object):
31 self.Table = ''
34 ## Create table
36 # Create a table
43 ## Insert table
45 # Insert a record into a table
50 ## Query table
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/Print/
BoxDraw.c 132 UNICODE_TO_CHAR *Table;
143 for (Table = UnicodeToPcAnsiOrAscii; Table->Unicode != 0x0000; Table++) {
144 if (Graphic == Table->Unicode) {
146 *PcAnsi = Table->PcAnsi;
149 *Ascii = Table->Ascii;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/PrintLite/
BoxDraw.c 132 UNICODE_TO_CHAR *Table;
143 for (Table = UnicodeToPcAnsiOrAscii; Table->Unicode != 0x0000; Table++) {
144 if (Graphic == Table->Unicode) {
146 *PcAnsi = Table->PcAnsi;
149 *Ascii = Table->Ascii;
  /external/flatbuffers/tests/MyGame/Example/
Ability.go 18 func (rcv *Ability) Table() flatbuffers.Table {
19 return rcv._tab.Table
Referrable.go 10 _tab flatbuffers.Table
25 func (rcv *Referrable) Table() flatbuffers.Table {
Test.go 18 func (rcv *Test) Table() flatbuffers.Table {
19 return rcv._tab.Table
TestSimpleTableWithEnum.go 10 _tab flatbuffers.Table
25 func (rcv *TestSimpleTableWithEnum) Table() flatbuffers.Table {
  /external/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/
StructInNestedNS.go 18 func (rcv *StructInNestedNS) Table() flatbuffers.Table {
19 return rcv._tab.Table
TableInNestedNS.go 10 _tab flatbuffers.Table
25 func (rcv *TableInNestedNS) Table() flatbuffers.Table {
  /external/flatbuffers/tests/namespace_test/NamespaceA/
SecondTableInA.go 12 _tab flatbuffers.Table
27 func (rcv *SecondTableInA) Table() flatbuffers.Table {
  /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/mesa3d/src/hgl/
GLDispatcher.h 36 struct _glapi_table* Table();
64 BGLDispatcher::Table()
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/PDB/Native/
PDBStringTableBuilder.h 1 //===- PDBStringTableBuilder.h - PDB String Table Builder -------*- C++ -*-===//
37 PDBStringTableBuilder *Table;
39 explicit StringTableHashTraits(PDBStringTableBuilder &Table);
47 // If string S does not exist in the string table, insert it.
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/DebugInfo/PDB/
StringTableBuilderTest.cpp 28 // Create /names table contents.
62 PDBStringTable Table;
63 EXPECT_THAT_ERROR(Table.reload(Reader), Succeeded());
65 EXPECT_EQ(6U, Table.getNameCount());
66 EXPECT_EQ(1U, Table.getHashVersion());
68 EXPECT_THAT_EXPECTED(Table.getStringForID(FooID), HasValue("foo"));
69 EXPECT_THAT_EXPECTED(Table.getStringForID(BarID), HasValue("bar"));
70 EXPECT_THAT_EXPECTED(Table.getStringForID(BazID), HasValue("baz"));
71 EXPECT_THAT_EXPECTED(Table.getStringForID(BuzzID), HasValue("buzz"));
72 EXPECT_THAT_EXPECTED(Table.getStringForID(BazzID), HasValue("bazz"))
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
LVM_Mixer_TimeConstant.c 76 LVM_FLOAT Table[] = {ALPHA_Float_0, /* Log spaced look-up table */
137 /* Normalize to get the table index and interpolation factor */
157 Diff = (Table[Shift] - Table[Shift + 1]);
159 ProductFloat = Table[Shift + 1] + Diff;
173 LVM_UINT32 Table[] = {ALPHA_0, /* Log spaced look-up table */
235 /* Normalize to get the table index and interpolation factor */
254 Diff = (LVM_INT32)(Table[Shift] - Table[Shift+1])
    [all...]
  /cts/hostsidetests/inputmethodservice/deviceside/lib/src/android/inputmethodservice/cts/db/
Table.java 27 * Abstraction of SQLite database table.
28 * @param <E> type of table entities.
30 public abstract class Table<E> {
35 protected Table(String name, Entity<E> entity) {
41 * @return name of this table.
64 * Returns SQL statement to create this table, such that
65 * "CREATE TABLE IF NOT EXISTS table_name \
70 return "CREATE TABLE IF NOT EXISTS " + mName + " " + mEntity.createEntitySql();
  /device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Pv660/Drivers/UnInstallAcpiTableDxe/
UnInstallAcpiTable.c 41 EFI_ACPI_SDT_HEADER *Table;
75 DEBUG((EFI_D_ERROR, "Current SataEnable Flag is Sata, try to uninstall Sas SSDT table\n"));
79 DEBUG((EFI_D_ERROR, "Current SataEnable Flag is Sas, try to uninstall Sata SSDT table\n"));
86 DEBUG((EFI_D_ERROR,"Unable to locate ACPI table protocol\n"));
98 // Search for SSDT Table and delete the matched SSDT table
100 Status = AcpiTableProtocol->GetAcpiTable(i, &Table, &TableVersion, &TableKey);
103 if (Table->Signature == EFI_ACPI_3_0_SECONDARY_SYSTEM_DESCRIPTION_TABLE_SIGNATURE) {
105 if(*(UINT64*)Table->OemTableId == SsdtName) {
108 DEBUG((EFI_D_ERROR,"Successfully remove the SSDT table\n"));
    [all...]

Completed in 725 milliseconds

1 2 3 4 5 6 7 8