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

1 2 3 4 5 6 7 8 91011>>

  /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/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
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 10 _tab flatbuffers.Table
25 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/syslinux/gnu-efi/gnu-efi-3.0/lib/
boxdraw.c 127 UNICODE_TO_CHAR *Table;
138 for (Table = UnicodeToPcAnsiOrAscii; Table->Unicode != 0x0000; Table++) {
139 if (Graphic == Table->Unicode) {
141 *PcAnsi = Table->PcAnsi;
144 *Ascii = Table->Ascii;
  /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 26 * Abstraction of SQLite database table.
28 public abstract class Table<E> {
33 protected Table(final String name, final Entity<E> entity) {
47 * Returns SQL statement to create this table, such that
48 * "CREATE TABLE IF NOT EXISTS table_name \
53 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...]
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/AMD/Styx/AcpiTables/
Dsdt.c 162 AML_OFFSET_TABLE_ENTRY *Table;
169 Table = &DSDT_SEATTLE__OffsetTable[0];
170 while (Table->Pathname) {
171 if (AsciiStrCmp(Table->Pathname, "_SB_.ETH0._DSD") == 0) {
172 OverrideMacAddr ((UINT8 *)&AmlCode[Table->Offset], PcdGet64 (PcdEthMacA));
174 else if (AsciiStrCmp(Table->Pathname, "_SB_.ETH1._DSD") == 0) {
175 OverrideMacAddr ((UINT8 *)&AmlCode[Table->Offset], PcdGet64 (PcdEthMacB));
177 else if (AsciiStrCmp(Table->Pathname, "_SB_.AHC1._STA") == 0) {
178 OverrideStatus ((UINT8 *)&AmlCode[Table->Offset],
181 else if (AsciiStrCmp(Table->Pathname, "_SB_.GIO2._STA") == 0) {
    [all...]
  /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/net/FlatBuffers/
Table.cs 25 public struct Table
97 // Initialize any Table-derived type to point to the union at the given offset.

Completed in 320 milliseconds

1 2 3 4 5 6 7 8 91011>>