OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Bucket
(Results
1 - 25
of
37
) sorted by null
1
2
/external/chromium_org/third_party/tcmalloc/chromium/src/
stack_trace_table.h
64
struct
Bucket
{
71
Bucket
* next;
86
Bucket
** table_;
profiledata.h
159
// Hash table
bucket
160
struct
Bucket
{
164
Bucket
* hash_; // hash table
/external/chromium_org/third_party/tcmalloc/vendor/src/
stack_trace_table.h
64
struct
Bucket
{
71
Bucket
* next;
86
Bucket
** table_;
profiledata.h
159
// Hash table
bucket
160
struct
Bucket
{
164
Bucket
* hash_; // hash table
heap-profile-table.h
204
// Hash table
bucket
to hold (de)allocation stats
206
struct
Bucket
: public Stats {
210
Bucket
* next; // Next entry in hash-table
215
// Access to the stack-trace
bucket
216
Bucket
*
bucket
() const {
function in struct:HeapProfileTable::AllocValue
217
return reinterpret_cast<
Bucket
*>(bucket_rep & ~uintptr_t(kMask));
220
void set_bucket(
Bucket
* b) { bucket_rep = reinterpret_cast<uintptr_t>(b); }
261
// Unparse
bucket
b and print its portion of profile dump into buf.
267
// counting
bucket
b
[
all
...]
/frameworks/ex/common/tools/
make-iana-tld-pattern.py
29
class
Bucket
:
103
bucket
= buckets.get(letter)
105
if
bucket
is None:
106
bucket
=
Bucket
(letter)
107
buckets[letter] =
bucket
109
return
bucket
/external/chromium_org/gpu/command_buffer/service/
common_decoder.h
29
// A
bucket
is a buffer to help collect memory across a command buffer. When
39
// SetBucketData, SetBucketDataImmediate the client can fill a
bucket
. It can
40
// then call a command that uses that
bucket
(like BufferDataBucket in the
48
// arbitary size, the service puts the string in a
bucket
. The client can
49
// then query the size of a
bucket
and request sections of the
bucket
to
51
class GPU_EXPORT
Bucket
{
53
Bucket
();
54
~
Bucket
();
60
// Gets a pointer to a section the
bucket
. Returns NULL if offset or size i
[
all
...]
common_decoder.cc
10
CommonDecoder::
Bucket
::
Bucket
() : size_(0) {}
12
CommonDecoder::
Bucket
::~
Bucket
() {}
14
void* CommonDecoder::
Bucket
::GetData(size_t offset, size_t size) const {
21
void CommonDecoder::
Bucket
::SetSize(size_t size) {
29
bool CommonDecoder::
Bucket
::SetData(
38
void CommonDecoder::
Bucket
::SetFromString(const char* str) {
50
bool CommonDecoder::
Bucket
::GetAsString(std::string* str) {
86
CommonDecoder::
Bucket
* CommonDecoder::GetBucket(uint32 bucket_id) const
92
Bucket*
bucket
= GetBucket(
bucket
_id);
local
185
Bucket*
bucket
= CreateBucket(
bucket
_id);
local
201
Bucket*
bucket
= GetBucket(
bucket
_id);
local
222
Bucket*
bucket
= GetBucket(
bucket
_id);
local
256
Bucket*
bucket
= GetBucket(
bucket
_id);
local
280
Bucket*
bucket
= GetBucket(
bucket
_id);
local
[
all
...]
/external/llvm/include/llvm/Support/
ArrayRecycler.h
39
SmallVector<FreeList*, 8>
Bucket
;
41
// Remove an entry from the free list in
Bucket
[Idx] and return it.
44
if (Idx >=
Bucket
.size())
46
FreeList *Entry =
Bucket
[Idx];
49
Bucket
[Idx] = Entry->Next;
53
// Add an entry to the free list at
Bucket
[Idx].
59
if (Idx >=
Bucket
.size())
60
Bucket
.resize(size_t(Idx) + 1);
61
Entry->Next =
Bucket
[Idx];
62
Bucket
[Idx] = Entry
[
all
...]
/frameworks/compile/mclinker/include/mcld/Support/
HandleToArea.h
39
struct
Bucket
{
48
typedef std::vector<
Bucket
> HandleToAreaMap;