Searched refs:bucket_id (Results 1 - 22 of 22) sorted by relevance

/external/chromium_org/tools/deep_memory_profiler/subcommands/
H A Dbuckets.py34 for bucket_id, bucket in sorted(bucket_set):
35 out.write('%d: %s\n' % (bucket_id, bucket))
H A Dstacktrace.py31 for bucket_id, virtual, committed, allocs, frees in dump.iter_stacktrace:
32 bucket = bucket_set.get(bucket_id)
H A Dpprof.py96 for bucket_id, _, committed, allocs, frees in dump.iter_stacktrace:
97 bucket = bucket_set.get(bucket_id)
139 for bucket_id, _, committed, allocs, frees in dump.iter_stacktrace:
140 bucket = bucket_set.get(bucket_id)
H A Dcat.py179 for bucket_id, _, committed, allocs, frees in dump.iter_stacktrace:
180 bucket = bucket_set.get(bucket_id)
182 yield MallocUnit(bucket_id, committed, allocs, frees, bucket)
185 yield MallocUnit(bucket_id, committed, allocs, frees, None)
H A Dexpand.py94 for bucket_id, _, committed, allocs, frees in dump.iter_stacktrace:
95 bucket = bucket_set.get(bucket_id)
H A Dpolicies.py186 for bucket_id, _, committed, _, _ in dump.iter_stacktrace:
187 bucket = bucket_set.get(bucket_id)
/external/chromium_org/gpu/command_buffer/service/
H A Dcommon_decoder.cc83 CommonDecoder::Bucket* CommonDecoder::GetBucket(uint32 bucket_id) const {
84 BucketMap::const_iterator iter(buckets_.find(bucket_id));
88 CommonDecoder::Bucket* CommonDecoder::CreateBucket(uint32 bucket_id) { argument
89 Bucket* bucket = GetBucket(bucket_id);
92 buckets_[bucket_id] = linked_ptr<Bucket>(bucket);
185 uint32 bucket_id = args.bucket_id; local
188 Bucket* bucket = CreateBucket(bucket_id);
196 uint32 bucket_id = args.bucket_id; local
219 uint32 bucket_id = args.bucket_id; local
238 uint32 bucket_id = args.bucket_id; local
275 uint32 bucket_id = args.bucket_id; local
[all...]
H A Dcommon_decoder.h108 Bucket* CreateBucket(uint32 bucket_id);
111 Bucket* GetBucket(uint32 bucket_id) const;
H A Dgles2_cmd_decoder_unittest_base.cc516 uint32 bucket_id, const char* str) {
519 cmd1.Init(bucket_id, size);
524 cmd2.Init(bucket_id, 0, size, kSharedMemoryId, kSharedMemoryOffset);
1046 GLsizei size, uint32 bucket_id) {
1057 CommonDecoder::Bucket* bucket = decoder_->CreateBucket(bucket_id);
1062 bucket_id);
515 SetBucketAsCString( uint32 bucket_id, const char* str) argument
1043 DoCompressedTexImage2D( GLenum target, GLint level, GLenum format, GLsizei width, GLsizei height, GLint border, GLsizei size, uint32 bucket_id) argument
H A Dgles2_cmd_decoder_unittest_base.h148 void SetBucketAsCString(uint32 bucket_id, const char* str);
251 GLsizei size, uint32 bucket_id);
H A Dgles2_cmd_decoder.cc6959 uint32 bucket_id = static_cast<uint32>(c.bucket_id); local
6960 Bucket* bucket = CreateBucket(bucket_id);
6977 uint32 bucket_id = static_cast<uint32>(c.bucket_id); local
6978 Bucket* bucket = CreateBucket(bucket_id);
6996 uint32 bucket_id = static_cast<uint32>(c.bucket_id); local
6997 Bucket* bucket = CreateBucket(bucket_id);
7014 uint32 bucket_id local
9729 uint32 bucket_id = c.bucket_id; local
[all...]
H A Dgles2_cmd_decoder_autogen.h2819 GLuint bucket_id = static_cast<GLuint>(c.bucket_id); local
2820 Bucket* bucket = GetBucket(bucket_id);
2839 GLuint bucket_id = static_cast<GLuint>(c.bucket_id); local
2840 Bucket* bucket = GetBucket(bucket_id);
/external/chromium_org/gpu/command_buffer/client/
H A Dcmd_buffer_helper.h205 void SetBucketSize(uint32 bucket_id, uint32 size) { argument
208 cmd->Init(bucket_id, size);
212 void SetBucketData(uint32 bucket_id, argument
219 cmd->Init(bucket_id,
228 uint32 bucket_id, uint32 offset, const void* data, uint32 size) {
232 cmd->Init(bucket_id, offset, size);
237 void GetBucketStart(uint32 bucket_id, argument
245 cmd->Init(bucket_id,
254 void GetBucketData(uint32 bucket_id, argument
261 cmd->Init(bucket_id,
227 SetBucketDataImmediate( uint32 bucket_id, uint32 offset, const void* data, uint32 size) argument
[all...]
H A Dgles2_cmd_helper_autogen.h189 GLuint bucket_id) {
193 c->Init(target, level, internalformat, width, height, bucket_id);
226 GLuint bucket_id) {
230 c->Init(target, level, xoffset, yoffset, width, height, format, bucket_id);
638 void GetProgramInfoLog(GLuint program, uint32_t bucket_id) { argument
642 c->Init(program, bucket_id);
667 void GetShaderInfoLog(GLuint shader, uint32_t bucket_id) { argument
671 c->Init(shader, bucket_id);
686 void GetShaderSource(GLuint shader, uint32_t bucket_id) { argument
689 c->Init(shader, bucket_id);
184 CompressedTexImage2DBucket(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLuint bucket_id) argument
219 CompressedTexSubImage2DBucket(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLuint bucket_id) argument
693 GetString(GLenum name, uint32_t bucket_id) argument
1468 InsertEventMarkerEXT(GLuint bucket_id) argument
1476 PushGroupMarkerEXT(GLuint bucket_id) argument
1586 EnableFeatureCHROMIUM(GLuint bucket_id, uint32_t result_shm_id, uint32_t result_shm_offset) argument
1603 GetRequestableExtensionsCHROMIUM(uint32_t bucket_id) argument
1611 RequestExtensionCHROMIUM(uint32_t bucket_id) argument
1637 GetProgramInfoCHROMIUM(GLuint program, uint32_t bucket_id) argument
1645 GetTranslatedShaderSourceANGLE(GLuint shader, uint32_t bucket_id) argument
1778 TraceBeginCHROMIUM(GLuint bucket_id) argument
[all...]
H A Dgles2_implementation.h487 bool GetBucketContents(uint32 bucket_id, std::vector<int8>* data);
490 void SetBucketContents(uint32 bucket_id, const void* data, size_t size);
493 void SetBucketAsCString(uint32 bucket_id, const char* str);
497 bool GetBucketAsString(uint32 bucket_id, std::string* str);
500 void SetBucketAsString(uint32 bucket_id, const std::string& str);
H A Dgles2_implementation.cc543 bool GLES2Implementation::GetBucketContents(uint32 bucket_id, argument
559 bucket_id, GetResultShmId(), GetResultShmOffset(),
573 bucket_id, offset, buffer.size(), buffer.shm_id(), buffer.offset());
585 helper_->SetBucketSize(bucket_id, 0);
591 uint32 bucket_id, const void* data, size_t size) {
593 helper_->SetBucketSize(bucket_id, size);
604 bucket_id, offset, buffer.size(), buffer.shm_id(), buffer.offset());
612 uint32 bucket_id, const char* str) {
616 SetBucketContents(bucket_id, str, strlen(str) + 1);
618 helper_->SetBucketSize(bucket_id,
590 SetBucketContents( uint32 bucket_id, const void* data, size_t size) argument
611 SetBucketAsCString( uint32 bucket_id, const char* str) argument
622 GetBucketAsString( uint32 bucket_id, std::string* str) argument
638 SetBucketAsString( uint32 bucket_id, const std::string& str) argument
[all...]
H A Dgles2_implementation_unittest.cc607 bool GetBucketContents(uint32 bucket_id, std::vector<int8>* data) { argument
608 return gl_->GetBucketContents(bucket_id, data);
/external/chromium_org/tools/deep_memory_profiler/lib/
H A Dbucket.py165 for bucket_id, bucket_content in self._buckets.iteritems():
166 yield bucket_id, bucket_content
168 def __getitem__(self, bucket_id):
169 return self._buckets[bucket_id]
171 def get(self, bucket_id):
172 return self._buckets.get(bucket_id)
/external/chromium_org/gpu/command_buffer/common/
H A Dcmd_buffer_common.h264 bucket_id = _bucket_id;
273 uint32_t bucket_id; member in struct:gpu::cmd::SetBucketSize
280 COMPILE_ASSERT(offsetof(SetBucketSize, bucket_id) == 4,
304 bucket_id = _bucket_id;
326 uint32_t bucket_id; member in struct:gpu::cmd::SetBucketData
336 COMPILE_ASSERT(offsetof(SetBucketData, bucket_id) == 4,
364 bucket_id = _bucket_id;
380 uint32_t bucket_id; member in struct:gpu::cmd::SetBucketDataImmediate
389 COMPILE_ASSERT(offsetof(SetBucketDataImmediate, bucket_id) == 4,
425 bucket_id
450 uint32_t bucket_id; member in struct:gpu::cmd::GetBucketStart
514 uint32_t bucket_id; member in struct:gpu::cmd::GetBucketData
[all...]
H A Dgles2_cmd_format_autogen.h883 bucket_id = _bucket_id;
904 uint32_t bucket_id; member in struct:CompressedTexImage2DBucket
922 COMPILE_ASSERT(offsetof(CompressedTexImage2DBucket, bucket_id) == 24,
1037 bucket_id = _bucket_id;
1068 uint32_t bucket_id; member in struct:CompressedTexSubImage2DBucket
1089 COMPILE_ASSERT(offsetof(CompressedTexSubImage2DBucket, bucket_id) == 32,
3020 bucket_id = _bucket_id;
3030 uint32_t bucket_id; member in struct:GetProgramInfoLog
3039 COMPILE_ASSERT(offsetof(GetProgramInfoLog, bucket_id) == 8,
3166 bucket_id
3176 uint32_t bucket_id; member in struct:GetShaderInfoLog
3281 uint32_t bucket_id; member in struct:GetShaderSource
3317 uint32_t bucket_id; member in struct:GetString
7104 uint32_t bucket_id; member in struct:InsertEventMarkerEXT
7137 uint32_t bucket_id; member in struct:PushGroupMarkerEXT
7631 uint32_t bucket_id; member in struct:EnableFeatureCHROMIUM
7710 uint32_t bucket_id; member in struct:GetRequestableExtensionsCHROMIUM
7743 uint32_t bucket_id; member in struct:RequestExtensionCHROMIUM
7853 uint32_t bucket_id; member in struct:GetProgramInfoCHROMIUM
7896 uint32_t bucket_id; member in struct:GetTranslatedShaderSourceANGLE
8491 uint32_t bucket_id; member in struct:TraceBeginCHROMIUM
[all...]
H A Dgles2_cmd_format_test_autogen.h315 EXPECT_EQ(static_cast<GLuint>(16), cmd.bucket_id);
366 EXPECT_EQ(static_cast<GLuint>(18), cmd.bucket_id);
1015 EXPECT_EQ(static_cast<uint32_t>(12), cmd.bucket_id);
1062 EXPECT_EQ(static_cast<uint32_t>(12), cmd.bucket_id);
1092 EXPECT_EQ(static_cast<uint32_t>(12), cmd.bucket_id);
1103 EXPECT_EQ(static_cast<uint32_t>(12), cmd.bucket_id);
2552 EXPECT_EQ(static_cast<GLuint>(11), cmd.bucket_id);
2562 EXPECT_EQ(static_cast<GLuint>(11), cmd.bucket_id);
2732 EXPECT_EQ(static_cast<GLuint>(11), cmd.bucket_id);
2761 EXPECT_EQ(static_cast<uint32_t>(11), cmd.bucket_id);
[all...]
/external/chromium_org/net/disk_cache/blockfile/
H A Dindex_table_v3.h253 void CheckBucketList(int bucket_id);

Completed in 3372 milliseconds