Searched refs:Cluster (Results 1 - 25 of 30) sorted by relevance

12

/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...]
H A Dwebm_cluster_parser_unittest.cc71 static scoped_ptr<Cluster> CreateCluster(int timecode,
103 // Creates a Cluster with one encrypted Block. |bytes_to_write| is number of
105 static scoped_ptr<Cluster> CreateEncryptedCluster(int bytes_to_write) {
331 9, // Cluster end emits all buffers and 3rd video's duration is estimated
350 scoped_ptr<Cluster> cluster(CreateCluster(0, kBlockInfo,
376 scoped_ptr<Cluster> cluster(CreateCluster(0, kDefaultBlockInfo, block_count));
395 scoped_ptr<Cluster> cluster(CreateCluster(0, kDefaultBlockInfo, block_count));
404 scoped_ptr<Cluster> cluster(CreateCluster(0, kDefaultBlockInfo, block_count));
453 0x1F, 0x43, 0xB6, 0x75, 0x9B, // Cluster(size=27)
480 scoped_ptr<Cluster> cluste
[all...]
H A Dwebm_parser_unittest.cc39 static scoped_ptr<Cluster> CreateCluster(int block_count) {
134 // Expecting to parse a Cluster, but get a Segment.
217 scoped_ptr<Cluster> cluster(CreateCluster(kBlockCount));
226 scoped_ptr<Cluster> cluster(CreateCluster(kBlockCount));
260 scoped_ptr<Cluster> cluster(CreateCluster(kBlockCount));
/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...]
H A DTextAutosizer.cpp84 void TextAutosizer::writeClusterDebugInfo(Cluster* cluster)
352 if (Cluster* cluster = maybeCreateCluster(block))
364 if (Cluster* cluster = maybeCreateCluster(block))
397 Cluster* cluster = currentCluster();
440 Cluster* cluster = currentCluster();
595 Cluster hypotheticalCluster(root, classifyBlock(root), 0);
599 bool TextAutosizer::clusterHasEnoughTextToAutosize(Cluster* cluster, const RenderBlock* widthProvider)
694 TextAutosizer::Cluster* TextAutosizer::maybeCreateCluster(const RenderBlock* block)
700 Cluster* parentCluster = m_clusterStack.isEmpty() ? 0 : currentCluster();
708 Cluster* cluste
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/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...]
H A Dmkvparser.cpp616 Cluster** i = m_clusters;
617 Cluster** j = m_clusters + count;
620 Cluster* const p = *i++;
806 if (id == 0x0F43B675) // Cluster ID
1060 if (id != 0x0F43B675) { // Cluster ID
1083 status = Cluster::HasBlockEntries(this, cluster_off, pos_, len_);
1126 Cluster* const pCluster = m_clusters[idx];
1181 Cluster* const pCluster = Cluster::Create(this, idx, cluster_off);
1253 if (id == 0x0F43B675) //Cluster I
[all...]
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 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 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...]
H A Dmkvparser.cpp717 Cluster** i = m_clusters;
718 Cluster** j = m_clusters + count;
722 Cluster* const p = *i++;
920 if (id == 0x0F43B675) //Cluster ID
1226 if (id != 0x0F43B675) //Cluster ID
1250 status = Cluster::HasBlockEntries(this, cluster_off, pos_, len_);
1295 Cluster* const pCluster = m_clusters[idx];
1355 Cluster* const pCluster = Cluster::Create(this,
1432 if (id == 0x0F43B675) //Cluster I
[all...]
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...]
/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...]
H A Dmkvparser.cpp618 Cluster** i = m_clusters;
619 Cluster** j = m_clusters + count;
622 Cluster* const p = *i++;
808 if (id == 0x0F43B675) // Cluster ID
1062 if (id != 0x0F43B675) { // Cluster ID
1085 status = Cluster::HasBlockEntries(this, cluster_off, pos_, len_);
1128 Cluster* const pCluster = m_clusters[idx];
1183 Cluster* const pCluster = Cluster::Create(this, idx, cluster_off);
1255 if (id == 0x0F43B675) //Cluster I
[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/libvpx/libvpx/third_party/libmkv/
H A Dtestlibmkv.c47 Ebml_StartSubElement(&ebml, &clusterStart, Cluster); // cluster
H A DEbmlIDs.h60 /* Cluster */
61 Cluster = 0x1F43B675, enumerator in enum:mkv
/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...]
/external/chromium_org/components/enhanced_bookmarks/
H A Dbookmark_server_service.h88 FRIEND_TEST_ALL_PREFIXES(BookmarkServerServiceTest, Cluster);
/external/chromium_org/third_party/libvpx/source/libvpx/
H A Dwebmdec.cc49 const mkvparser::Cluster *const cluster = segment->GetFirst();
125 const mkvparser::Cluster* cluster =
126 reinterpret_cast<const mkvparser::Cluster*>(webm_ctx->cluster);
/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/chromium_org/media/filters/
H A Dchunk_demuxer_unittest.cc150 scoped_ptr<Cluster> kDefaultFirstCluster() {
159 scoped_ptr<Cluster> kDefaultSecondCluster() {
369 scoped_ptr<Cluster> cluster) {
373 void AppendCluster(scoped_ptr<Cluster> cluster) {
471 scoped_ptr<Cluster> GenerateCluster(const std::vector<BlockInfo>& blocks,
501 scoped_ptr<Cluster> GenerateCluster(
805 scoped_ptr<Cluster> GenerateCluster(int timecode, int block_count) {
818 scoped_ptr<Cluster> GenerateCluster(int first_audio_timecode,
824 scoped_ptr<Cluster> GenerateCluster(int first_audio_timecode,
878 scoped_ptr<Cluster> GenerateSingleStreamCluste
[all...]

Completed in 3159 milliseconds

12