Searched defs:Cluster (Results 1 - 18 of 18) sorted by relevance

/external/chromium_org/media/formats/webm/
H A Dcluster_builder.h14 class Cluster { class in namespace:media
16 Cluster(scoped_ptr<uint8[]> data, int size);
17 ~Cluster();
26 DISALLOW_IMPLICIT_CONSTRUCTORS(Cluster);
42 scoped_ptr<Cluster> Finish();
43 scoped_ptr<Cluster> FinishWithUnknownSize();
H A Dcluster_builder.cc57 Cluster::Cluster(scoped_ptr<uint8[]> data, int size) function in class:media::Cluster
59 Cluster::~Cluster() {}
174 scoped_ptr<Cluster> ClusterBuilder::Finish() {
179 scoped_ptr<Cluster> ret(new Cluster(buffer_.Pass(), bytes_used_));
184 scoped_ptr<Cluster> ClusterBuilder::FinishWithUnknownSize() {
189 scoped_ptr<Cluster> ret(new Cluster(buffer
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGSDNodes.cpp221 bool Cluster = false; local
243 Cluster = true;
248 if (!Cluster)
272 // Cluster loads by adding MVT::Glue outputs and inputs. This also
295 /// ClusterNodes - Cluster certain nodes which should be scheduled together.
307 // Cluster loads from "near" addresses into combined SUnits.
523 // Cluster certain nodes which should be scheduled together.
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DTextAutosizer.h150 struct Cluster { struct in class:blink::FINAL
151 explicit Cluster(const RenderBlock* root, BlockFlags flags, Cluster* parent, Supercluster* supercluster = 0) function in struct:blink::FINAL::Cluster
168 Cluster* m_parent;
208 typedef Vector<OwnPtr<Cluster> > ClusterStack;
262 bool clusterHasEnoughTextToAutosize(Cluster*, const RenderBlock* widthProvider = 0);
267 Cluster* maybeCreateCluster(const RenderBlock*);
269 float clusterMultiplier(Cluster*);
270 float superclusterMultiplier(Cluster*);
281 bool isWiderOrNarrowerDescendant(Cluster*);
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Daddressmap-inl.h44 // * Cluster -- aligned 1-MB region of the address space
46 // * Cluster-ID -- Starting address of cluster divided by cluster size
60 // | id->cluster |---> Cluster
176 struct Cluster { struct in class:AddressMap
177 Cluster* next; // Next cluster in hash table chain
178 Number id; // Cluster ID
192 Cluster** hashtable_; // The hash-table
213 Cluster* FindCluster(Number address, bool create) {
217 for (Cluster* c = hashtable_[h]; c != NULL; c = c->next) {
225 Cluster*
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Daddressmap-inl.h44 // * Cluster -- aligned 1-MB region of the address space
46 // * Cluster-ID -- Starting address of cluster divided by cluster size
60 // | id->cluster |---> Cluster
176 struct Cluster { struct in class:AddressMap
177 Cluster* next; // Next cluster in hash table chain
178 Number id; // Cluster ID
192 Cluster** hashtable_; // The hash-table
213 Cluster* FindCluster(Number address, bool create) {
217 for (Cluster* c = hashtable_[h]; c != NULL; c = c->next) {
225 Cluster*
[all...]
/external/eigen/unsupported/Eigen/src/MatrixFunctions/
H A DMatrixFunction.h137 typedef std::list<Scalar> Cluster; typedef in class:Eigen::MatrixFunction
138 typedef std::list<Cluster> ListOfClusters;
246 Cluster l;
276 typename Cluster::iterator j;
/external/libvpx/libvpx/third_party/libmkv/
H A DEbmlIDs.h60 /* Cluster */
61 Cluster = 0x1F43B675, enumerator in enum:mkv
/external/llvm/include/llvm/CodeGen/
H A DScheduleDAG.h70 Cluster ///< Weak DAG edge linking a chain of clustered instrs. enumerator in enum:llvm::SDep::OrderKind
217 return getKind() == Order && Contents.OrdKind == Cluster;
H A DMachineScheduler.h748 NoCand, PhysRegCopy, RegExcess, RegCritical, Stall, Cluster, Weak, RegMax, enumerator in enum:llvm::GenericSchedulerBase::CandReason
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libwebm/
H A Dmkvmuxer.cpp1425 // Cluster class
1427 Cluster::Cluster(uint64 timecode, int64 cues_pos) function in class:mkvmuxer::Cluster
1437 Cluster::~Cluster() {}
1439 bool Cluster::Init(IMkvWriter* ptr_writer) {
1447 bool Cluster::AddFrame(const uint8* frame, uint64 length, uint64 track_number,
1453 bool Cluster::AddFrameWithAdditional(const uint8* frame, uint64 length,
1463 bool Cluster::AddFrameWithDiscardPadding(const uint8* frame, uint64 length,
1472 bool Cluster
[all...]
H A Dmkvparser.hpp66 class Cluster;
79 long Parse(const Cluster*);
82 long long GetTimeCode(const Cluster*) const; // absolute, but not scaled
83 long long GetTime(const Cluster*) const; // absolute, and scaled (ns)
121 BlockEntry(Cluster*, long index);
127 const Cluster* GetCluster() const;
135 Cluster* const m_pCluster;
144 SimpleBlock(Cluster*, long index, long long start, long long size);
159 BlockGroup(Cluster*, long index,
763 class Cluster { class in namespace:mkvparser
[all...]
H A Dmkvmuxer.hpp165 // The position of the Cluster containing the Block.
168 // Number of the Block within the Cluster, starting from 1.
696 // Cluster element
700 class Cluster { class in namespace:mkvmuxer
702 Cluster(uint64 timecode, int64 cues_pos);
703 ~Cluster();
781 // Returns the size in bytes for the entire Cluster element.
854 // Outputs the Cluster header to |writer_|. Returns true on success.
881 LIBWEBM_DISALLOW_COPY_AND_ASSIGN(Cluster);
1124 // This will force the muxer to create a new Cluster whe
[all...]
/external/libvpx/libvpx/third_party/libwebm/
H A Dmkvmuxer.cpp1466 // Cluster class
1468 Cluster::Cluster(uint64 timecode, int64 cues_pos) function in class:mkvmuxer::Cluster
1479 Cluster::~Cluster() {
1482 bool Cluster::Init(IMkvWriter* ptr_writer) {
1490 bool Cluster::AddFrame(const uint8* frame,
1503 bool Cluster::AddFrameWithAdditional(const uint8* frame,
1522 bool Cluster::AddFrameWithDiscardPadding(const uint8* frame,
1537 bool Cluster
[all...]
H A Dmkvmuxer.hpp166 // The position of the Cluster containing the Block.
169 // Number of the Block within the Cluster, starting from 1.
703 // Cluster element
707 class Cluster { class in namespace:mkvmuxer
709 Cluster(uint64 timecode, int64 cues_pos);
710 ~Cluster();
800 // Returns the size in bytes for the entire Cluster element.
888 // Outputs the Cluster header to |writer_|. Returns true on success.
915 LIBWEBM_DISALLOW_COPY_AND_ASSIGN(Cluster);
1170 // This will force the muxer to create a new Cluster whe
[all...]
H A Dmkvparser.hpp75 class Cluster;
89 long Parse(const Cluster*);
92 long long GetTimeCode(const Cluster*) const; //absolute, but not scaled
93 long long GetTime(const Cluster*) const; //absolute, and scaled (ns)
134 BlockEntry(Cluster*, long index);
140 const Cluster* GetCluster() const;
148 Cluster* const m_pCluster;
160 SimpleBlock(Cluster*, long index, long long start, long long size);
179 Cluster*,
872 class Cluster class in namespace:mkvparser
[all...]
/external/libvpx/libwebm/
H A Dmkvparser.hpp66 class Cluster;
79 long Parse(const Cluster*);
82 long long GetTimeCode(const Cluster*) const; // absolute, but not scaled
83 long long GetTime(const Cluster*) const; // absolute, and scaled (ns)
121 BlockEntry(Cluster*, long index);
127 const Cluster* GetCluster() const;
135 Cluster* const m_pCluster;
144 SimpleBlock(Cluster*, long index, long long start, long long size);
159 BlockGroup(Cluster*, long index,
763 class Cluster { class in namespace:mkvparser
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DRegionStore.cpp216 const ClusterBindings &Cluster = I.getData(); local
217 for (ClusterBindings::iterator CI = Cluster.begin(), CE = Cluster.end();
248 ClusterBindings Cluster = (ExistingCluster ? *ExistingCluster local
251 ClusterBindings NewCluster = CBFactory.add(Cluster, K, V);
263 const ClusterBindings *Cluster = lookup(K.getBaseRegion()); local
264 if (!Cluster)
266 return Cluster->lookup(K);
276 const ClusterBindings *Cluster = lookup(Base); local
277 if (!Cluster)
590 const ClusterBindings &Cluster = I.getData(); variable
700 const ClusterBindings &Cluster = RI.getData(); local
706 AddToWorkList(WorkListElement(Base), &Cluster); local
749 const ClusterBindings *Cluster = B.lookup(R); local
813 collectSubRegionBindings(SmallVectorImpl<BindingPair> &Bindings, SValBuilder &SVB, const ClusterBindings &Cluster, const SubRegion *Top, BindingKey TopKey, bool IncludeAllDefaultBindings) argument
885 collectSubRegionBindings(SmallVectorImpl<BindingPair> &Bindings, SValBuilder &SVB, const ClusterBindings &Cluster, const SubRegion *Top, bool IncludeAllDefaultBindings) argument
904 const ClusterBindings *Cluster = B.lookup(ClusterHead); local
1789 const ClusterBindings *Cluster = B.lookup(LazyR->getBaseRegion()); local
1861 const ClusterBindings &Cluster = RI.getData(); local
2334 const ClusterBindings &Cluster = I.getData(); local
[all...]

Completed in 337 milliseconds