| /external/skia/src/core/ |
| SkGammas.h | 27 // Contains information for a gamma table. 28 struct Table { 32 const float* table(const SkGammas* base) const { function in struct:SkGammas::Table 44 Table fTable; 95 const float* table(int i) const { function in struct:SkGammas 97 return this->data(i).fTable.table(this);
|
| /external/skqp/src/core/ |
| SkGammas.h | 27 // Contains information for a gamma table. 28 struct Table { 32 const float* table(const SkGammas* base) const { function in struct:SkGammas::Table 44 Table fTable; 95 const float* table(int i) const { function in struct:SkGammas 97 return this->data(i).fTable.table(this);
|
| /external/tensorflow/tensorflow/core/common_runtime/ |
| graph_runner.cc | 92 typedef std::unordered_map<string, Tensor> Table; 95 Table table_ GUARDED_BY(mu_);
|
| /external/tensorflow/tensorflow/core/framework/ |
| rendezvous.cc | 225 // A message has already arrived and is queued in the table under 232 // of the table lock. 240 Table table; variable 244 table_.swap(table); 246 for (auto& p : table) { 279 // We key the hash table by KeyHash of the Rendezvous::CreateKey string 291 typedef gtl::FlatMap<uint64, ItemQueue> Table; 295 Table table_ GUARDED_BY(mu_);
|
| /external/tensorflow/tensorflow/core/lib/io/ |
| table.cc | 16 #include "tensorflow/core/lib/io/table.h" 27 namespace table { namespace in namespace:tensorflow 29 struct Table::Rep { 41 Status Table::Open(const Options& options, RandomAccessFile* file, uint64 size, 42 Table** table) { 43 *table = nullptr; 71 Rep* rep = new Table::Rep; 78 *table = new Table(rep) 95 Table* table = reinterpret_cast<Table*>(arg); local [all...] |
| /external/tensorflow/tensorflow/core/util/ |
| tensor_slice_reader.cc | 25 #include "tensorflow/core/lib/io/table.h" 38 TensorSliceReader::Table::~Table() {} 41 class TensorSliceReaderTable : public TensorSliceReader::Table { 44 explicit TensorSliceReaderTable(RandomAccessFile* f, table::Table* t) 53 std::unique_ptr<table::Iterator> iter(table_->NewIterator()); 66 table::Table* table_; 71 TensorSliceReader::Table** result) 81 table::Table* table; local 150 Table* table; local [all...] |
| tensor_slice_reader.h | 57 class Table { 59 virtual ~Table(); 62 typedef std::function<Status(const string&, Table**)> OpenTableFunction; 134 mutable std::vector<std::unique_ptr<Table>> sss_; 142 TensorSliceReader::Table** table);
|
| /external/tpm2/generator/ |
| tpm_table.py | 41 class Table(object): 49 tables' contents in this object, one at a time. This object's table 50 representation includes table title, table header and one or more then table 53 The table title must start with 'Table ### xxx', where ### is monotonously 54 increasing table number and xxx is some description allowing to deduce the 55 type of the object defined by this table. 57 The cells of the table include names and types of the components, variou [all...] |
| /external/v8/src/ic/ |
| stub-cache.h | 46 // Clear the lookup table (@ mark compact collection). 52 enum Table { kPrimary, kSecondary }; 54 SCTableReference key_reference(StubCache::Table table) { 56 reinterpret_cast<Address>(&first_entry(table)->key)); 59 SCTableReference map_reference(StubCache::Table table) { 61 reinterpret_cast<Address>(&first_entry(table)->map)); 64 SCTableReference value_reference(StubCache::Table table) { [all...] |
| /frameworks/native/cmds/lshal/ |
| TableEntry.h | 110 class Table { 127 // Write table content. 141 MergedTable(std::vector<const Table*>&& tables) : mTables(std::move(tables)) {} 144 std::vector<const Table*> mTables;
|
| /prebuilts/clang/host/linux-x86/clang-4579689/prebuilt_include/llvm/lib/Fuzzer/ |
| FuzzerTracePC.h | 25 // We record the arguments of CMP instructions in this table unconditionally 29 // this table to populate a Dictionary. 39 Table[Idx].A = Arg1; 40 Table[Idx].B = Arg2; 43 Pair Get(size_t I) { return Table[I % kSize]; } 45 Pair Table[kSize];
|
| /prebuilts/clang/host/linux-x86/clang-4630689/prebuilt_include/llvm/lib/Fuzzer/ |
| FuzzerTracePC.h | 25 // We record the arguments of CMP instructions in this table unconditionally 29 // this table to populate a Dictionary. 39 Table[Idx].A = Arg1; 40 Table[Idx].B = Arg2; 43 Pair Get(size_t I) { return Table[I % kSize]; } 45 Pair Table[kSize];
|
| /prebuilts/clang/host/linux-x86/clang-4639204/prebuilt_include/llvm/lib/Fuzzer/ |
| FuzzerTracePC.h | 25 // We record the arguments of CMP instructions in this table unconditionally 29 // this table to populate a Dictionary. 39 Table[Idx].A = Arg1; 40 Table[Idx].B = Arg2; 43 Pair Get(size_t I) { return Table[I % kSize]; } 45 Pair Table[kSize];
|
| /prebuilts/clang/host/linux-x86/clang-4691093/prebuilt_include/llvm/lib/Fuzzer/ |
| FuzzerTracePC.h | 25 // We record the arguments of CMP instructions in this table unconditionally 29 // this table to populate a Dictionary. 39 Table[Idx].A = Arg1; 40 Table[Idx].B = Arg2; 43 Pair Get(size_t I) { return Table[I % kSize]; } 45 Pair Table[kSize];
|
| /prebuilts/go/darwin-x86/src/hash/crc32/ |
| crc32.go | 41 // Table is a 256-word table representing the polynomial for efficient processing. 42 type Table [256]uint32 72 // castagnoliTable points to a lazily initialized Table for the Castagnoli 74 // Castagnoli table so we can compare against it to find when the caller is 76 var castagnoliTable *Table 90 // Initialize the slicing-by-8 table. 98 // IEEETable is the table for the IEEE polynomial. 114 // Initialize the slicing-by-8 table. 122 // MakeTable returns a Table constructed from the specified polynomial [all...] |
| /prebuilts/go/linux-x86/src/hash/crc32/ |
| crc32.go | 41 // Table is a 256-word table representing the polynomial for efficient processing. 42 type Table [256]uint32 72 // castagnoliTable points to a lazily initialized Table for the Castagnoli 74 // Castagnoli table so we can compare against it to find when the caller is 76 var castagnoliTable *Table 90 // Initialize the slicing-by-8 table. 98 // IEEETable is the table for the IEEE polynomial. 114 // Initialize the slicing-by-8 table. 122 // MakeTable returns a Table constructed from the specified polynomial [all...] |
| /frameworks/base/cmds/incident_helper/src/ |
| ih_util.cpp | 270 Table::Table(const char* names[], const uint64_t ids[], const int count) 281 Table::~Table() 286 Table::addEnumTypeMap(const char* field, const char* enumNames[], const int enumValues[], const int enumSize) 301 Table::addEnumNameToValue(const char* enumName, const int enumValue) 307 Table::insertField(ProtoOutputStream* proto, const std::string& name, const std::string& value) 382 Message::Message(Table* table) 383 :mTable(table), [all...] |
| /art/runtime/ |
| intern_table.cc | 59 os << "Intern table: " << StrongSize() << " strong; " << WeakSize() << " weak\n"; 88 // Note: we deliberately don't visit the weak_interns_ table and the immutable image roots. 231 // Check the strong table for a match. 253 // There is no match in the strong table, check the weak table. 257 // A match was found in the weak table. Promote to the strong table. 263 // No match in the strong table or the weak table. Insert into the strong / weak table [all...] |
| /device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Drivers/AcpiPlatformDxe/ |
| EthMac.c | 429 // Parse table for device type
449 EFI_ACPI_SDT_HEADER *Table;
461 DBG("Unable to locate ACPI table protocol\n");
466 // Search for DSDT Table
468 Status = AcpiTableProtocol->GetAcpiTable(i, &Table, &TableVersion, &TableKey);
471 if (Table->Signature != DSDT_SIGNATURE)
|
| /device/linaro/bootloader/edk2/DuetPkg/DxeIpl/ |
| HobGeneration.h | 43 EFI_PHYSICAL_ADDRESS Table;
|
| /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/ |
| LegacyBios.c | 33 // The SMBIOS table in EfiRuntimeServicesData memory
38 // The SMBIOS table in EfiReservedMemoryType memory
209 the $EFI table in the shadow area. Thunk into the Legacy16 code after it had
227 EFI_COMPATIBILITY16_TABLE *Table;
337 // Search for Legacy16 table in Shadowed ROM
340 Table = NULL;
343 Table = (EFI_COMPATIBILITY16_TABLE *) Ptr;
344 PtrEnd = Ptr + Table->TableLength;
353 if (Table == NULL) {
354 DEBUG ((EFI_D_ERROR, "No Legacy16 table found\n")); [all...] |
| /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/Acpi/AcpiSupportDxe/ |
| AcpiSupportAcpiSupportProtocol.c | 26 This function adds an ACPI table to the table list. It will detect FACS and
27 allocate the correct type of memory and properly align the table.
30 @param Table Table to add.
31 @param Checksum Does the table require checksumming.
32 @param Version The version of the list to add the table to.
37 @return EFI_ABORTED The table is a duplicate of a table that is required
43 IN VOID *Table,
[all...] |
| /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Acpi/AcpiTableDxe/ |
| AcpiSdt.c | 35 This function returns ACPI Table instance.
48 This function finds the table specified by the buffer.
50 @param[in] Buffer Table buffer to find.
52 @return ACPI table list.
65 // Get the instance of the ACPI Table
80 // Good! Found Table.
92 This function updates AML table checksum.
93 It will search the ACPI table installed by ACPI_TABLE protocol.
97 @retval EFI_SUCCESS The table holds the AML buffer is found, and checksum is updated.
98 @retval EFI_NOT_FOUND The table holds the AML buffer is not found. [all...] |
| /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Acpi/S3SaveStateDxe/ |
| AcpiS3ContextSave.c | 80 This function scan ACPI table in RSDT.
83 @param Signature ACPI table signature
85 @return ACPI table
97 EFI_ACPI_DESCRIPTION_HEADER *Table;
107 Table = (EFI_ACPI_DESCRIPTION_HEADER *)((UINTN)(*EntryPtr));
108 if (Table->Signature == Signature) {
109 return Table;
118 This function scan ACPI table in XSDT.
121 @param Signature ACPI table signature
123 @return ACPI table
[all...] |
| /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Disk/RamDiskDxe/ |
| RamDiskProtocol.c | 65 Initialize and publish NVDIMM root device SSDT in ACPI table.
77 EFI_ACPI_DESCRIPTION_HEADER *Table;
93 (VOID **) &Table,
100 if (Table->OemTableId == SIGNATURE_64 ('R', 'a', 'm', 'D', 'i', 's', 'k', ' ')) {
103 Table,
113 FreePool (Table);
116 FreePool (Table);
126 Publish the RAM disk NVDIMM Firmware Interface Table (NFIT) to the ACPI
127 table.
216 // Determine whether there is a NFIT already in the ACPI table. [all...] |