/device/linaro/bootloader/edk2/FatPkg/EnhancedFatDxe/ |
FatFileSystem.h | 35 #define FAT_END_OF_FAT_CHAIN(Cluster) ((Cluster) > (FAT_CLUSTER_SPECIAL))
|
DirectoryManage.c | 164 Set the OFile's cluster info in its directory entry.
175 UINTN Cluster;
179 Cluster = OFile->FileCluster;
180 DirEnt->Entry.FileClusterHigh = (UINT16) (Cluster >> 16);
181 DirEnt->Entry.FileCluster = (UINT16) Cluster;
186 Set the OFile's cluster and size info in its directory entry.
458 UINTN Cluster;
477 Cluster = (Entry->FileClusterHigh << 16) | Entry->FileCluster;
478 Info->PhysicalSize = FatPhysicalDirSize (Volume, Cluster);
697 Append a zero cluster to the current OFile. [all...] |
/external/tensorflow/tensorflow/python/grappler/ |
cluster.py | 30 class Cluster(object): 38 """Creates a Cluster. 136 cluster = Cluster(allow_soft_placement, disable_detailed_stats, 138 yield cluster 139 cluster.Shutdown()
|
/external/tensorflow/tensorflow/core/grappler/clusters/ |
single_machine.h | 21 #include "tensorflow/core/grappler/clusters/cluster.h" 29 // Create a simple cluster that makes available to grappler a subset of the 31 class SingleMachine : public Cluster {
|
/external/libvpx/libvpx/ |
webmdec.cc | 38 webm_ctx->cluster = NULL; 50 const mkvparser::Cluster *const cluster = segment->GetFirst(); member in class:__anon26302::mkvparser 51 webm_ctx->cluster = cluster; 130 const mkvparser::Cluster *cluster = local 131 reinterpret_cast<const mkvparser::Cluster *>(webm_ctx->cluster); 141 status = cluster->GetFirst(block_entry) [all...] |
/external/tensorflow/tensorflow/contrib/lite/toco/tensorflow_graph_matching/ |
resolve_svdf_test.cc | 23 #include "tensorflow/contrib/lite/toco/tensorflow_graph_matching/cluster.h" 138 std::vector<std::unique_ptr<Cluster>> clusters_; 169 for (const std::unique_ptr<Cluster>& cluster : clusters_) { 170 cluster_names.push_back(cluster->GetName()); 171 cluster->CreateNodes(); 179 for (const std::unique_ptr<Cluster>& cluster : clusters_) { 180 // After CreateNodes in each cluster we have three nodes: Svdf, 182 CHECK_EQ(cluster->GetNewNodes().size(), 3) [all...] |
/external/tensorflow/tensorflow/core/grappler/optimizers/ |
meta_optimizer.cc | 85 Status MetaOptimizer::Optimize(Cluster* cluster, const GrapplerItem& item, 147 Status status = optimizer->Optimize(cluster, item, optimized_graph); 164 optimizer->Optimize(cluster, optimized_item, optimized_graph); 205 void MetaOptimizer::Feedback(Cluster* cluster, const GrapplerItem& item, 223 DeviceBase* cpu_device, Cluster* cluster, 226 return optimizer.Optimize(cluster, item, optimized_graph);
|
static_schedule.cc | 54 const GrapplerItem& item, const Cluster* cluster, 91 VirtualPlacer placer(cluster); 123 const GrapplerItem& item, const Cluster* cluster, 159 VirtualPlacer placer(cluster);
|
/external/tensorflow/tensorflow/core/grappler/costs/ |
graph_properties.h | 22 #include "tensorflow/core/grappler/clusters/cluster.h" 45 // Infer the shape by running the graph on the specified cluster and recording 47 Status InferDynamically(Cluster* cluster);
|
measuring_cost_estimator.cc | 21 #include "tensorflow/core/grappler/clusters/cluster.h" 32 MeasuringCostEstimator::MeasuringCostEstimator(Cluster* cluster, 43 cluster_ = cluster;
|
virtual_scheduler.h | 255 const bool use_static_shapes, Cluster* cluster, 333 Cluster* cluster_; // Not owned.
|
virtual_placer.cc | 18 #include "tensorflow/core/grappler/clusters/cluster.h" 26 VirtualPlacer::VirtualPlacer(const Cluster* cluster) { 27 CHECK(cluster); 33 devices_ = cluster->GetDevices(); 38 LOG(ERROR) << "VirtualPlacer couldn't parse device name from cluster: " 46 // If there are no devices in the cluster, add a single device, "UNKNOWN" to 47 // the cluster. 52 // If there is only one device in the cluster, use it as default device, 56 // Default device is set from the devices in the cluster in the followin [all...] |
/external/libvpx/libvpx/third_party/libwebm/mkvmuxer/ |
mkvmuxer.cc | 3080 Cluster* const cluster = cluster_list_[i]; local 3382 const Cluster* const cluster = cluster_list_[cluster_list_size_ - 1]; local 3545 Cluster* const cluster = cluster_list_[cluster_list_size_ - 1]; local 3894 Cluster*& cluster = cluster_list_[cluster_list_size_]; local 4026 Cluster* const cluster = cluster_list_[i]; local 4072 Cluster* const cluster = cluster_list_[cluster_list_size_ - 1]; local 4114 Cluster* const cluster = cluster_list_[cluster_list_size_ - 1]; local [all...] |
/device/linaro/bootloader/edk2/DuetPkg/BootSector/ |
bs32.asm | 41 SectorsPerCluster db 0 ; Sector Per Cluster - 8 bits
63 RootCluster dd 0 ; 1st Cluster Number of Root Dir - 4 bytes
146 mov bx, word ptr [di+26] ; bx = Start Cluster for EFILDR <----------------------------------
159 mov dx, di ; dx = Offset of Start Cluster for Efivar.bin <---------------------
175 mov cx,bx ; cx = Start Cluster for EFILDR <----------------------------------
190 mov bl,byte ptr [bp+SectorsPerCluster] ; bx = Number of Sectors in a cluster
|
start32.S | 40 SectorsPerCluster: .byte 0 # Sector Per Cluster - 1 byte
62 RootCluster: .long 0 # 1st Cluster Number of Root Dir - 4 bytes
76 # ds = 1000, es = 2000 + x (size of first cluster >> 4)
77 # cx = Start Cluster of EfiLdr
78 # dx = Start Cluster of Efivar.bin
124 # cx = Start Cluster of Efildr -> BS.com has filled already
125 # ES:DI = 2000:0, first cluster will be read again
146 # CX = Start Cluster of File
162 pushw %cx # Push Start Cluster onto stack
167 cmpw $0xfff8, %ax # See if this is the last cluster
[all...] |
bs16.S | 43 SectorsPerCluster: .byte 0 # Sector Per Cluster - 8 bits
126 movw 26(%di), %bx # bx = Start Cluster for EFILDR <----------------------------------
139 movw %di, %dx # dx = Offset of Start Cluster for Efivar.bin <---------------------
155 movw %bx, %cx # cx = Start Cluster for EFILDR <----------------------------------
170 movb SectorsPerCluster(%bp), %bl # bx = Number of Sectors in a cluster
|
bootsect.S | 55 SectorsPerCluster: .byte 0 # Sector Per Cluster - 8 bits
138 movw 26(%di), %bx # bx = Start Cluster for EFILDR <----------------------------------
151 movw %di, %dx # dx = Offset of Start Cluster for Efivar.bin <---------------------
167 movw %bx, %cx # cx = Start Cluster for EFILDR <----------------------------------
182 movb SectorsPerCluster(%bp), %bl # bx = Number of Sectors in a cluster
|
bs32.S | 43 SectorsPerCluster: .byte 0 # Sector Per Cluster - 8 bits
65 RootCluster: .long 0 # 1st Cluster Number of Root Dir - 4 bytes
147 movw 26(%di), %bx # bx = Start Cluster for EFILDR <----------------------------------
160 movw %di, %dx # dx = Offset of Start Cluster for Efivar.bin <---------------------
176 movw %bx, %cx # cx = Start Cluster for EFILDR <----------------------------------
191 movb SectorsPerCluster(%bp), %bl # bx = Number of Sectors in a cluster
|
bootsect.asm | 54 SectorsPerCluster db 0 ; Sector Per Cluster - 8 bits
137 mov bx, word ptr [di+26] ; bx = Start Cluster for EFILDR <----------------------------------
150 mov dx, di ; dx = Offset of Start Cluster for Efivar.bin <---------------------
166 mov cx,bx ; cx = Start Cluster for EFILDR <----------------------------------
181 mov bl,byte ptr [bp+SectorsPerCluster] ; bx = Number of Sectors in a cluster
|
bs16.asm | 41 SectorsPerCluster db 0 ; Sector Per Cluster - 8 bits
124 mov bx, word ptr [di+26] ; bx = Start Cluster for EFILDR <----------------------------------
137 mov dx, di ; dx = Offset of Start Cluster for Efivar.bin <---------------------
153 mov cx,bx ; cx = Start Cluster for EFILDR <----------------------------------
168 mov bl,byte ptr [bp+SectorsPerCluster] ; bx = Number of Sectors in a cluster
|
/device/linaro/bootloader/edk2/ArmPlatformPkg/ArmVExpressPkg/Library/ArmVExpressLibRTSM/Arm/ |
RTSMHelper.S | 69 # Add '1' to the number of CPU on the Cluster
|
/external/tensorflow/tensorflow/compiler/jit/ |
mark_for_compilation_pass.cc | 241 struct Cluster { 242 // Identifies the node that represents this cluster in the cycle detection 460 // Each compilation candidate belongs to a cluster. The cluster's 462 // names the node in the 'cycles' graph that represents the cluster. 463 std::vector<UnionFind<Cluster>> clusters(graph->num_node_ids()); 464 std::deque<UnionFind<Cluster>*> worklist; 466 Cluster& cluster = clusters[node->id()].Get(); local 467 cluster.representative = node->id() 550 int cluster = clusters[n->id()].Get().representative; local 564 int cluster = clusters[n->id()].Get().representative; local [all...] |
/external/lisa/tools/scripts/power/ |
cpu_frequency_power_average.py | 30 # This script computes the cluster power cost and cpu power costs at each 31 # frequency for each cluster. The output can be used in power models or power 52 # This is the additional cost when any cluster is on. It is seperate from 53 # the cluster cost because it is not duplicated when a second cluster 57 # Read in the cluster and frequency information from the plaform.json 60 self.clusters = {i : Cluster(self.sample_reader, i, platform["clusters"][i], 70 # cluster and active costs. However, since the cluster and active costs are computed 74 # For example: The total cpu cost of core 0 on cluster 0 running a [all...] |
/external/skia/tools/lua/ |
ngrams.lua | 8 -- To run on Cluster Telemetry, copy and paste the contents of this file into
|
/external/skqp/tools/lua/ |
ngrams.lua | 8 -- To run on Cluster Telemetry, copy and paste the contents of this file into
|