/external/chromium_org/media/webm/ |
cluster_builder.h | 14 class Cluster { 16 Cluster(scoped_ptr<uint8[]> data, int size); 17 ~Cluster(); 26 DISALLOW_IMPLICIT_CONSTRUCTORS(Cluster); 40 scoped_ptr<Cluster> Finish();
|
cluster_builder.cc | 13 0x1F, 0x43, 0xB6, 0x75, // CLUSTER ID 14 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // cluster(size = 0) 48 Cluster::Cluster(scoped_ptr<uint8[]> data, int size) 50 Cluster::~Cluster() {} 133 scoped_ptr<Cluster> ClusterBuilder::Finish() { 138 scoped_ptr<Cluster> ret(new Cluster(buffer_.Pass(), bytes_used_));
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
FastTextAutosizer.h | 66 struct Cluster { 67 explicit Cluster(AtomicString fingerprint) 81 float computeMultiplier(const Cluster*); 85 WTF::HashMap<const RenderBlock*, Cluster*> m_clusterForBlock; 86 WTF::HashMap<AtomicString, OwnPtr<Cluster> > m_clusterForFingerprint;
|
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
addressmap-inl.h | 44 // * Cluster -- aligned 1-MB region of the address space 45 // * Block-ID -- block-number within a cluster 46 // * Cluster-ID -- Starting address of cluster divided by cluster size 49 // 1. A hash-table maps from a cluster-ID to the data for that cluster. 50 // 2. For each non-empty cluster we keep an array indexed by 58 // | id->cluster |---> ... 60 // | id->cluster |---> Cluste [all...] |
/external/chromium_org/third_party/tcmalloc/vendor/src/ |
addressmap-inl.h | 44 // * Cluster -- aligned 1-MB region of the address space 45 // * Block-ID -- block-number within a cluster 46 // * Cluster-ID -- Starting address of cluster divided by cluster size 49 // 1. A hash-table maps from a cluster-ID to the data for that cluster. 50 // 2. For each non-empty cluster we keep an array indexed by 58 // | id->cluster |---> ... 60 // | id->cluster |---> Cluste [all...] |
/external/llvm/lib/CodeGen/SelectionDAG/ |
ScheduleDAGSDNodes.cpp | 220 bool Cluster = false; 239 Cluster = true; 242 if (!Cluster) 266 // Cluster loads by adding MVT::Glue outputs and inputs. This also 289 /// ClusterNodes - Cluster certain nodes which should be scheduled together. 301 // Cluster loads from "near" addresses into combined SUnits. 517 // Cluster certain nodes which should be scheduled together. [all...] |
/external/eigen/unsupported/Eigen/src/MatrixFunctions/ |
MatrixFunction.h | 137 typedef std::list<Scalar> Cluster; 138 typedef std::list<Cluster> ListOfClusters; 167 DynamicIntVectorType m_eivalToCluster; /**< \brief m_eivalToCluster[i] = j means i-th ei'val is in j-th cluster */ 169 DynamicIntVectorType m_blockStart; /**< \brief Row index at which block corresponding to i-th cluster starts */ 170 IntVectorType m_permutation; /**< \brief Permutation which groups ei'vals in the same cluster together */ 228 * # Any eigenvalue in a certain cluster is at most separation() away 229 * from another eigenvalue in the same cluster. 245 Cluster l; 267 /** \brief Find cluster in #m_clusters containing some value 269 * \returns Iterator to cluster containing \c key, o 324 Index cluster = m_eivalToCluster[i]; local [all...] |
/external/libvpx/libvpx/third_party/libmkv/ |
EbmlIDs.h | 60 /* Cluster */ 61 Cluster = 0x1F43B675,
|
/external/llvm/include/llvm/Support/ |
IntegersSubsetMapping.h | 35 // - Rename RangeIterator to the cluster iterator. 53 typedef std::pair<RangeEx, SuccessorClass*> Cluster; 62 typedef std::list<Cluster> CaseItems; 71 bool operator()(const Cluster &C1, const Cluster &C2) { 97 std::vector<Cluster> clustersVector; 436 const Cluster &LCluster = *L; 438 const Cluster &RCluster = *R;
|
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
TimeClustering.java | 41 // Disregard a cluster split time of anything over 2 hours. 47 // Try and merge 2 clusters if they are both smaller than min cluster size. 48 // The min cluster size can range from 8 to 15. 52 // Try and split a cluster if it is bigger than max cluster size. 53 // The max cluster size can range from 20 to 50. 57 // Initially put 2 items in the same cluster as long as they are within 58 // 3 cluster frequencies of each other. 66 // Make the cluster split time of a large cluster half that of a regula [all...] |
/external/libvpx/libwebm/ |
mkvparser.hpp | 75 class Cluster;
92 long long GetTimeCode(const Cluster*) const; //absolute, but not scaled
93 long long GetTime(const Cluster*) const; //absolute, and scaled (ns)
115 short m_timecode; //relative to cluster
130 BlockEntry(Cluster*, long index);
136 const Cluster* GetCluster() const;
144 Cluster* const m_pCluster;
156 SimpleBlock(Cluster*, long index, long long start, long long size);
175 Cluster*,
611 long long m_pos; //of cluster
[all...] |
/external/llvm/include/llvm/CodeGen/ |
ScheduleDAG.h | 70 Cluster ///< Weak DAG edge linking a chain of clustered instrs. 209 /// as "cluster", meaning it is artificial and wants to be adjacent. 211 return getKind() == Order && Contents.OrdKind == Cluster;
|
/external/clang/lib/StaticAnalyzer/Core/ |
RegionStore.cpp | 218 const ClusterBindings &Cluster = I.getData(); 219 for (ClusterBindings::iterator CI = Cluster.begin(), CE = Cluster.end(); 252 ClusterBindings Cluster = (ExistingCluster ? *ExistingCluster 255 ClusterBindings NewCluster = CBFactory.add(Cluster, K, V); 267 const ClusterBindings *Cluster = lookup(K.getBaseRegion()); 268 if (!Cluster) 270 return Cluster->lookup(K); 280 const ClusterBindings *Cluster = lookup(Base); 281 if (!Cluster) [all...] |
/external/llvm/lib/CodeGen/ |
MachineScheduler.cpp | 56 static cl::opt<bool> EnableLoadCluster("misched-cluster", cl::Hidden, 772 // LoadClusterMutation - DAG post-processing to cluster loads. 776 /// \brief Post-process the DAG to create cluster edges between neighboring 833 && DAG->addEdge(SUb, SDep(SUa, SDep::Cluster))) { 835 DEBUG(dbgs() << "Cluster loads SU(" << SUa->NodeNum << ") - SU(" 855 /// \brief Callback from DAG postProcessing to create cluster edges for loads. 892 /// \brief Post-process the DAG to create cluster edges between instructions 903 /// \brief Callback from DAG postProcessing to create cluster edges to encourage [all...] |