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

12 3 4 5 6 7 8 91011>>

  /external/flatbuffers/python/flatbuffers/
table.py 19 class Table(object):
20 """Table wraps a byte slice and provides read access to its data.
33 """Offset provides access into the Table's vtable.
78 """Union initializes any Table-derived type to point to the union at
80 assert type(t2) is Table
  /external/flatbuffers/tests/MyGame/Example/
Stat.go 10 _tab flatbuffers.Table
25 func (rcv *Stat) Table() flatbuffers.Table {
Vec3.go 18 func (rcv *Vec3) Table() flatbuffers.Table {
19 return rcv._tab.Table
  /external/flatbuffers/tests/namespace_test/NamespaceA/
TableInFirstNS.go 10 _tab flatbuffers.Table
25 func (rcv *TableInFirstNS) Table() flatbuffers.Table {
  /external/flatbuffers/tests/namespace_test/NamespaceC/
TableInC.go 10 _tab flatbuffers.Table
25 func (rcv *TableInC) Table() flatbuffers.Table {
  /external/libtextclassifier/util/math/
fastexp.h 39 struct Table {
58 static const Table cache_;
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/extensions/compactnotation/
Table.java 20 public class Table {
25 public Table(String id, String name) {
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
Entry.java 37 public @interface Table {
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/Misc/
DebugImageInfo.c 2 Support functions for managing debug image info table when loading and unloading
32 Creates and initializes the DebugImageInfo Table. Also creates the configuration
33 table and registers it into the system table.
131 // Configuration Table
139 Update the CRC32 in the Debug Table.
158 Adds a new DebugImageInfo structure to the DebugImageInfo Table. Re-Allocates
159 the table if it's not large enough to accomidate another entry.
174 EFI_DEBUG_IMAGE_INFO *Table;
180 // Set the flag indicating that we're in the process of updating the table.
    [all...]
  /external/flatbuffers/php/
Table.php 20 abstract class Table
113 * @param Table $table
115 * @return Table
117 protected function __union($table, $offset)
120 $table->setByteBufferPos($offset + $this->bb->getInt($offset));
121 $table->setByteBuffer($this->bb);
122 return $table;
  /external/spirv-llvm/lib/SPIRV/libSPIRV/
SPIRVInstruction.cpp 139 static SPIRVWord Table[] =
201 Allow(std::begin(Table), std::end(Table));
  /external/tensorflow/tensorflow/core/distributed_runtime/
base_rendezvous_mgr.h 100 typedef gtl::FlatMap<int64, BaseRemoteRendezvous*> Table;
106 Table table_ GUARDED_BY(mu_);
  /frameworks/compile/mclinker/include/mcld/LD/
NamePool.h 33 typedef HashTable<ResolveInfo, hash::StringHash<hash::DJB> > Table;
34 typedef Table::iterator syminfo_iterator;
35 typedef Table::const_iterator const_syminfo_iterator;
87 /// @return the StringRef points to the hash table
123 Table m_Table;
  /prebuilts/gdb/darwin-x86/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]
  /prebuilts/gdb/linux-x86/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]
  /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]
  /prebuilts/python/linux-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]
  /art/runtime/
intern_table.h 64 // Interns a potentially new string in the 'strong' table. May cause thread suspension.
74 // Interns a potentially new string in the 'strong' table. May cause thread suspension.
78 // Interns a potentially new string in the 'strong' table. May cause thread suspension.
83 // Interns a potentially new string in the 'weak' table. May cause thread suspension.
122 // Adds all of the resolved image strings from the image spaces into the intern table. The
128 // Add a new intern table for inserting to, previous intern tables are still there but no
133 // Read the intern table from memory. The elements aren't copied, the intern hash set data will
138 // Write the post zygote intern table to a pointer. Only writes the strong interns since it is
189 // Table which holds pre zygote and post zygote interned strings. There is one instance for
191 class Table {
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/MetaFileWorkspace/
MetaDataTable.py 2 # This file is used to create/update/query/erase table for files
29 # This class defined a common table
34 # @param TableName: Name of the table
36 class Table(object):
44 self.Table = Name
50 return self.Table
52 ## Create table
54 # Create a table
61 SqlCommand = """create temp table IF NOT EXISTS %s (%s)""" % (self.Table, self._COLUMN_)
    [all...]
  /device/linaro/bootloader/edk2/DuetPkg/SmbiosGenDxe/
SmbiosGen.c 30 EFI_PHYSICAL_ADDRESS *Table;
35 Table = GET_GUID_HOB_DATA (GuidHob.Guid);
36 if (Table != NULL) {
37 return (VOID *)(UINTN)*Table;
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/
Ip4Route.c 57 Free the route table entry. It is reference counted.
82 entries spawned from one route table entry.
136 Initialize an empty route cache table.
138 @param[in, out] RtCache The rotue cache table to initialize.
158 @param[in] RtCache The route cache table to clean up
184 Create an empty route table, includes its internal route cache
186 @return NULL if failed to allocate memory for the route table, otherwise
187 the point to newly created route table.
219 Free the route table and its associated route cache. Route
220 table is reference counted.
    [all...]
  /device/linaro/bootloader/edk2/QuarkPlatformPkg/Acpi/DxeSmm/SmmPowerManagement/
Ppm.c 58 // Patch FADT table to enable C2,C3
63 // Load all the power management acpi tables and patch IST table
77 EFI_ACPI_DESCRIPTION_HEADER *Table;
103 Table = NULL;
104 Status = gBS->AllocatePool (EfiBootServicesData, CurrentTable->Length, (VOID **) &Table);
105 ASSERT (Table != NULL);
106 CopyMem (Table, CurrentTable, CurrentTable->Length);
109 // Update the ACPI table and recalculate checksum
123 ((EFI_ACPI_SDT_HEADER *)Table)->Checksum = 0;
124 ((EFI_ACPI_SDT_HEADER *)Table)->Checksum =
    [all...]
  /device/linaro/bootloader/edk2/SecurityPkg/Tcg/TcgSmm/
TcgSmm.c 2 It updates TPM items in ACPI table and registers SMI callback
293 Find the operation region in TCG ACPI table by given Name and Size,
296 @param[in, out] Table The TPM item in ACPI table.
297 @param[in] Name The name string to find in TPM table.
305 EFI_ACPI_DESCRIPTION_HEADER *Table,
319 for (OpRegion = (AML_OP_REGION_32_8 *) (Table + 1);
320 OpRegion <= (AML_OP_REGION_32_8 *) ((UINT8 *) Table + Table->Length);
340 Initialize and publish TPM items in ACPI table.
    [all...]
  /device/linaro/bootloader/edk2/SecurityPkg/Tcg/TrEESmm/
TrEESmm.c 2 It updates TPM2 items in ACPI table and registers SMI2 callback
289 Find the operation region in TCG ACPI table by given Name and Size,
292 @param[in, out] Table The TPM item in ACPI table.
293 @param[in] Name The name string to find in TPM table.
301 EFI_ACPI_DESCRIPTION_HEADER *Table,
315 for (OpRegion = (AML_OP_REGION_32_8 *) (Table + 1);
316 OpRegion <= (AML_OP_REGION_32_8 *) ((UINT8 *) Table + Table->Length);
336 Initialize and publish TPM items in ACPI table.
    [all...]
  /external/llvm/lib/LibDriver/
LibDriver.cpp 109 LibOptTable Table;
113 Table.ParseArgs(ArgsArr.slice(1), MissingIndex, MissingCount);

Completed in 1169 milliseconds

12 3 4 5 6 7 8 91011>>