Home
last modified time | relevance | path

Searched refs:bucket_id (Results 1 – 23 of 23) sorted by relevance

/external/chromium_org/gpu/command_buffer/service/
Dcommon_decoder.cc83 CommonDecoder::Bucket* CommonDecoder::GetBucket(uint32 bucket_id) const { in GetBucket()
84 BucketMap::const_iterator iter(buckets_.find(bucket_id)); in GetBucket()
88 CommonDecoder::Bucket* CommonDecoder::CreateBucket(uint32 bucket_id) { in CreateBucket() argument
89 Bucket* bucket = GetBucket(bucket_id); in CreateBucket()
92 buckets_[bucket_id] = linked_ptr<Bucket>(bucket); in CreateBucket()
185 uint32 bucket_id = args.bucket_id; in HandleSetBucketSize() local
188 Bucket* bucket = CreateBucket(bucket_id); in HandleSetBucketSize()
196 uint32 bucket_id = args.bucket_id; in HandleSetBucketData() local
204 Bucket* bucket = GetBucket(bucket_id); in HandleSetBucketData()
219 uint32 bucket_id = args.bucket_id; in HandleSetBucketDataImmediate() local
[all …]
Dcommon_decoder.h108 Bucket* CreateBucket(uint32 bucket_id); in NON_EXPORTED_BASE()
111 Bucket* GetBucket(uint32 bucket_id) const; in NON_EXPORTED_BASE()
Dgles2_cmd_decoder_unittest_base.cc516 uint32 bucket_id, const char* str) { in SetBucketAsCString() argument
519 cmd1.Init(bucket_id, size); in SetBucketAsCString()
524 cmd2.Init(bucket_id, 0, size, kSharedMemoryId, kSharedMemoryOffset); in SetBucketAsCString()
1046 GLsizei size, uint32 bucket_id) { in DoCompressedTexImage2D() argument
1057 CommonDecoder::Bucket* bucket = decoder_->CreateBucket(bucket_id); in DoCompressedTexImage2D()
1062 bucket_id); in DoCompressedTexImage2D()
Dgles2_cmd_decoder_unittest_base.h148 void SetBucketAsCString(uint32 bucket_id, const char* str);
251 GLsizei size, uint32 bucket_id);
Dgles2_cmd_decoder.cc6959 uint32 bucket_id = static_cast<uint32>(c.bucket_id); in HandleGetShaderSource() local
6960 Bucket* bucket = CreateBucket(bucket_id); in HandleGetShaderSource()
6977 uint32 bucket_id = static_cast<uint32>(c.bucket_id); in HandleGetTranslatedShaderSourceANGLE() local
6978 Bucket* bucket = CreateBucket(bucket_id); in HandleGetTranslatedShaderSourceANGLE()
6996 uint32 bucket_id = static_cast<uint32>(c.bucket_id); in HandleGetProgramInfoLog() local
6997 Bucket* bucket = CreateBucket(bucket_id); in HandleGetProgramInfoLog()
7014 uint32 bucket_id = static_cast<uint32>(c.bucket_id); in HandleGetShaderInfoLog() local
7015 Bucket* bucket = CreateBucket(bucket_id); in HandleGetShaderInfoLog()
8016 Bucket* bucket = CreateBucket(c.bucket_id); in HandleGetString()
8468 Bucket* bucket = GetBucket(c.bucket_id); in HandleCompressedTexImage2DBucket()
[all …]
Dgles2_cmd_decoder_autogen.h2819 GLuint bucket_id = static_cast<GLuint>(c.bucket_id); in HandleInsertEventMarkerEXT() local
2820 Bucket* bucket = GetBucket(bucket_id); in HandleInsertEventMarkerEXT()
2839 GLuint bucket_id = static_cast<GLuint>(c.bucket_id); in HandlePushGroupMarkerEXT() local
2840 Bucket* bucket = GetBucket(bucket_id); in HandlePushGroupMarkerEXT()
/external/chromium_org/gpu/command_buffer/client/
Dcmd_buffer_helper.h205 void SetBucketSize(uint32 bucket_id, uint32 size) { in SetBucketSize() argument
208 cmd->Init(bucket_id, size); in SetBucketSize()
212 void SetBucketData(uint32 bucket_id, in SetBucketData() argument
219 cmd->Init(bucket_id, in SetBucketData()
228 uint32 bucket_id, uint32 offset, const void* data, uint32 size) { in SetBucketDataImmediate() argument
232 cmd->Init(bucket_id, offset, size); in SetBucketDataImmediate()
237 void GetBucketStart(uint32 bucket_id, in GetBucketStart() argument
245 cmd->Init(bucket_id, in GetBucketStart()
254 void GetBucketData(uint32 bucket_id, in GetBucketData() argument
261 cmd->Init(bucket_id, in GetBucketData()
Dgles2_cmd_helper_autogen.h189 GLuint bucket_id) { in CompressedTexImage2DBucket() argument
193 c->Init(target, level, internalformat, width, height, bucket_id); in CompressedTexImage2DBucket()
226 GLuint bucket_id) { in CompressedTexSubImage2DBucket() argument
230 c->Init(target, level, xoffset, yoffset, width, height, format, bucket_id); in CompressedTexSubImage2DBucket()
638 void GetProgramInfoLog(GLuint program, uint32_t bucket_id) { in GetProgramInfoLog() argument
642 c->Init(program, bucket_id); in GetProgramInfoLog()
667 void GetShaderInfoLog(GLuint shader, uint32_t bucket_id) { in GetShaderInfoLog() argument
671 c->Init(shader, bucket_id); in GetShaderInfoLog()
686 void GetShaderSource(GLuint shader, uint32_t bucket_id) { in GetShaderSource() argument
689 c->Init(shader, bucket_id); in GetShaderSource()
[all …]
Dgles2_implementation.h487 bool GetBucketContents(uint32 bucket_id, std::vector<int8>* data); in NON_EXPORTED_BASE()
490 void SetBucketContents(uint32 bucket_id, const void* data, size_t size); in NON_EXPORTED_BASE()
493 void SetBucketAsCString(uint32 bucket_id, const char* str); in NON_EXPORTED_BASE()
497 bool GetBucketAsString(uint32 bucket_id, std::string* str); in NON_EXPORTED_BASE()
500 void SetBucketAsString(uint32 bucket_id, const std::string& str); in NON_EXPORTED_BASE()
Dgles2_implementation.cc543 bool GLES2Implementation::GetBucketContents(uint32 bucket_id, in GetBucketContents() argument
559 bucket_id, GetResultShmId(), GetResultShmOffset(), in GetBucketContents()
573 bucket_id, offset, buffer.size(), buffer.shm_id(), buffer.offset()); in GetBucketContents()
585 helper_->SetBucketSize(bucket_id, 0); in GetBucketContents()
591 uint32 bucket_id, const void* data, size_t size) { in SetBucketContents() argument
593 helper_->SetBucketSize(bucket_id, size); in SetBucketContents()
604 bucket_id, offset, buffer.size(), buffer.shm_id(), buffer.offset()); in SetBucketContents()
612 uint32 bucket_id, const char* str) { in SetBucketAsCString() argument
616 SetBucketContents(bucket_id, str, strlen(str) + 1); in SetBucketAsCString()
618 helper_->SetBucketSize(bucket_id, 0); in SetBucketAsCString()
[all …]
Dgles2_implementation_unittest.cc607 bool GetBucketContents(uint32 bucket_id, std::vector<int8>* data) { in GetBucketContents() argument
608 return gl_->GetBucketContents(bucket_id, data); in GetBucketContents()
/external/chromium_org/gpu/command_buffer/common/
Dcmd_buffer_common.h264 bucket_id = _bucket_id; in Init()
273 uint32_t bucket_id; member
280 COMPILE_ASSERT(offsetof(SetBucketSize, bucket_id) == 4,
304 bucket_id = _bucket_id; in Init()
326 uint32_t bucket_id; member
336 COMPILE_ASSERT(offsetof(SetBucketData, bucket_id) == 4,
364 bucket_id = _bucket_id; in Init()
380 uint32_t bucket_id; member
389 COMPILE_ASSERT(offsetof(SetBucketDataImmediate, bucket_id) == 4,
425 bucket_id = _bucket_id; in Init()
[all …]
Dgles2_cmd_format_autogen.h883 bucket_id = _bucket_id; in Init()
904 uint32_t bucket_id; member
922 COMPILE_ASSERT(offsetof(CompressedTexImage2DBucket, bucket_id) == 24,
1037 bucket_id = _bucket_id; in Init()
1068 uint32_t bucket_id; member
1089 COMPILE_ASSERT(offsetof(CompressedTexSubImage2DBucket, bucket_id) == 32,
3020 bucket_id = _bucket_id; in Init()
3030 uint32_t bucket_id; member
3039 COMPILE_ASSERT(offsetof(GetProgramInfoLog, bucket_id) == 8,
3166 bucket_id = _bucket_id; in Init()
[all …]
Dgles2_cmd_format_test_autogen.h315 EXPECT_EQ(static_cast<GLuint>(16), cmd.bucket_id); in TEST_F()
366 EXPECT_EQ(static_cast<GLuint>(18), cmd.bucket_id); in TEST_F()
1015 EXPECT_EQ(static_cast<uint32_t>(12), cmd.bucket_id); in TEST_F()
1062 EXPECT_EQ(static_cast<uint32_t>(12), cmd.bucket_id); in TEST_F()
1092 EXPECT_EQ(static_cast<uint32_t>(12), cmd.bucket_id); in TEST_F()
1103 EXPECT_EQ(static_cast<uint32_t>(12), cmd.bucket_id); in TEST_F()
2552 EXPECT_EQ(static_cast<GLuint>(11), cmd.bucket_id); in TEST_F()
2562 EXPECT_EQ(static_cast<GLuint>(11), cmd.bucket_id); in TEST_F()
2732 EXPECT_EQ(static_cast<GLuint>(11), cmd.bucket_id); in TEST_F()
2761 EXPECT_EQ(static_cast<uint32_t>(11), cmd.bucket_id); in TEST_F()
[all …]
/external/chromium_org/tools/deep_memory_profiler/lib/
Dbucket.py165 for bucket_id, bucket_content in self._buckets.iteritems():
166 yield bucket_id, bucket_content
168 def __getitem__(self, bucket_id): argument
169 return self._buckets[bucket_id]
171 def get(self, bucket_id): argument
172 return self._buckets.get(bucket_id)
/external/chromium_org/tools/deep_memory_profiler/subcommands/
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)
Dbuckets.py34 for bucket_id, bucket in sorted(bucket_set):
35 out.write('%d: %s\n' % (bucket_id, bucket))
Dstacktrace.py31 for bucket_id, virtual, committed, allocs, frees in dump.iter_stacktrace:
32 bucket = bucket_set.get(bucket_id)
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)
Dexpand.py94 for bucket_id, _, committed, allocs, frees in dump.iter_stacktrace:
95 bucket = bucket_set.get(bucket_id)
Dpolicies.py186 for bucket_id, _, committed, _, _ in dump.iter_stacktrace:
187 bucket = bucket_set.get(bucket_id)
/external/chromium_org/gpu/command_buffer/docs/
Dgles2_cmd_format_docs.txt175 uint32 bucket_id;
186 uint32 bucket_id;
200 uint32 bucket_id;
217 uint32 bucket_id;
228 uint32 bucket_id;
521 uint32 bucket_id; //!< GLuint
568 uint32 bucket_id; //!< GLuint
1109 uint32 bucket_id; //!< uint32
1144 uint32 bucket_id; //!< uint32
1171 uint32 bucket_id; //!< uint32
[all …]
/external/chromium_org/net/disk_cache/blockfile/
Dindex_table_v3.h253 void CheckBucketList(int bucket_id);