HomeSort by relevance Sort by last modified time
    Searched refs:Static (Results 1 - 25 of 135) sorted by null

1 2 3 4 5 6

  /external/lldb/test/lang/cpp/overloaded-functions/
static-a.cpp 0 static int Static()
8 return Static();
static-b.cpp 0 static int Static()
8 return Static();
  /external/chromium_org/third_party/tcmalloc/chromium/src/
static_vars.cc 42 SpinLock Static::pageheap_lock_(SpinLock::LINKER_INITIALIZED);
43 SizeMap Static::sizemap_;
44 CentralFreeListPadded Static::central_cache_[kNumClasses];
45 PageHeapAllocator<Span> Static::span_allocator_;
46 PageHeapAllocator<StackTrace> Static::stacktrace_allocator_;
47 Span Static::sampled_objects_;
48 PageHeapAllocator<StackTraceTable::Bucket> Static::bucket_allocator_;
49 StackTrace* Static::growth_stacks_ = NULL;
50 PageHeap* Static::pageheap_ = NULL;
52 void Static::InitStaticVars()
    [all...]
central_freelist.cc 39 #include "static_vars.h" // for Static
64 int32_t bytes = Static::sizemap()->ByteSizeForClass(cl);
65 int32_t objs_to_move = Static::sizemap()->num_objects_to_move(cl);
93 static
99 Span* span = Static::pageheap()->GetDescriptor(p);
125 Static::sizemap()->ByteSizeForClass(span->sizeclass));
133 Static::sizemap()->ByteSizeForClass(span->sizeclass));
140 SpinLockHolder h(Static::pageheap_lock());
141 Static::pageheap()->Delete(span);
151 static int race_counter = 0
    [all...]
tcmalloc.cc 129 #include "static_vars.h" // for Static
167 using tcmalloc::Static;
171 static size_t ExcludeSpaceForMark(size_t size);
172 static void AddRoomForMark(size_t* size);
173 static void ExcludeMarkFromSize(size_t* new_size);
174 static void MarkAllocatedRegion(void* ptr);
175 static void ValidateAllocatedRegion(void* ptr, size_t cl);
280 static int tc_new_mode = 0; // See tc_set_new_mode().
327 static void ExtractStats(TCMallocStats* r, uint64_t* class_count,
333 const int length = Static::central_cache()[cl].length()
    [all...]
thread_cache.cc 56 static bool phinited = false;
160 const int batch_size = Static::sizemap()->num_objects_to_move(cl);
164 int fetch_count = Static::central_cache()[cl].RemoveRange(
198 const int batch_size = Static::sizemap()->num_objects_to_move(cl);
225 size_t delta_bytes = N * Static::sizemap()->ByteSizeForClass(cl);
229 int batch_size = Static::sizemap()->num_objects_to_move(cl);
233 Static::central_cache()[cl].InsertRange(head, tail, batch_size);
238 Static::central_cache()[cl].InsertRange(head, tail, N);
265 const int batch_size = Static::sizemap()->num_objects_to_move(cl);
278 SpinLockHolder h(Static::pageheap_lock())
    [all...]
static_vars.h 33 // Static variables shared by multiple classes.
49 class Static {
52 static SpinLock* pageheap_lock() { return &pageheap_lock_; }
55 static void InitStaticVars();
59 static CentralFreeListPadded* central_cache() { return central_cache_; }
61 static SizeMap* sizemap() { return &sizemap_; }
68 static PageHeap* pageheap() { return pageheap_; }
70 static PageHeapAllocator<Span>* span_allocator() { return &span_allocator_; }
72 static PageHeapAllocator<StackTrace>* stacktrace_allocator() {
76 static StackTrace* growth_stacks() { return growth_stacks_;
    [all...]
span.cc 40 #include "static_vars.h" // for Static
54 Span* result = Static::span_allocator()->New();
69 Static::span_allocator()->Delete(span);
stack_trace_table.cc 40 #include "static_vars.h" // for Static
94 b = Static::bucket_allocator()->New();
145 SpinLockHolder h(Static::pageheap_lock());
150 Static::bucket_allocator()->Delete(b);
  /external/chromium_org/third_party/tcmalloc/vendor/src/
static_vars.cc 42 SpinLock Static::pageheap_lock_(SpinLock::LINKER_INITIALIZED);
43 SizeMap Static::sizemap_;
44 CentralFreeListPadded Static::central_cache_[kNumClasses];
45 PageHeapAllocator<Span> Static::span_allocator_;
46 PageHeapAllocator<StackTrace> Static::stacktrace_allocator_;
47 Span Static::sampled_objects_;
48 PageHeapAllocator<StackTraceTable::Bucket> Static::bucket_allocator_;
49 StackTrace* Static::growth_stacks_ = NULL;
50 PageHeap* Static::pageheap_ = NULL;
52 void Static::InitStaticVars()
    [all...]
tcmalloc.cc 129 #include "static_vars.h" // for Static
177 using tcmalloc::Static;
280 static int tc_new_mode = 0; // See tc_set_new_mode().
315 static void ExtractStats(TCMallocStats* r, uint64_t* class_count,
321 const int length = Static::central_cache()[cl].length();
322 const int tc_length = Static::central_cache()[cl].tc_length();
323 const size_t cache_overhead = Static::central_cache()[cl].OverheadBytes();
325 Static::sizemap()->ByteSizeForClass(cl));
334 SpinLockHolder h(Static::pageheap_lock());
337 r->pageheap = Static::pageheap()->stats()
    [all...]
central_freelist.cc 39 #include "static_vars.h" // for Static
64 int32_t bytes = Static::sizemap()->ByteSizeForClass(cl);
65 int32_t objs_to_move = Static::sizemap()->num_objects_to_move(cl);
93 static
99 Span* span = Static::pageheap()->GetDescriptor(p);
125 Static::sizemap()->ByteSizeForClass(span->sizeclass));
133 Static::sizemap()->ByteSizeForClass(span->sizeclass));
140 SpinLockHolder h(Static::pageheap_lock());
141 Static::pageheap()->Delete(span);
152 static int race_counter = 0
    [all...]
thread_cache.cc 56 static bool phinited = false;
157 const int batch_size = Static::sizemap()->num_objects_to_move(cl);
161 int fetch_count = Static::central_cache()[cl].RemoveRange(
192 const int batch_size = Static::sizemap()->num_objects_to_move(cl);
219 size_t delta_bytes = N * Static::sizemap()->ByteSizeForClass(cl);
223 int batch_size = Static::sizemap()->num_objects_to_move(cl);
227 Static::central_cache()[cl].InsertRange(head, tail, batch_size);
232 Static::central_cache()[cl].InsertRange(head, tail, N);
259 const int batch_size = Static::sizemap()->num_objects_to_move(cl);
272 SpinLockHolder h(Static::pageheap_lock())
    [all...]
static_vars.h 33 // Static variables shared by multiple classes.
49 class Static {
52 static SpinLock* pageheap_lock() { return &pageheap_lock_; }
55 static void InitStaticVars();
59 static CentralFreeListPadded* central_cache() { return central_cache_; }
61 static SizeMap* sizemap() { return &sizemap_; }
68 static PageHeap* pageheap() { return pageheap_; }
70 static PageHeapAllocator<Span>* span_allocator() { return &span_allocator_; }
72 static PageHeapAllocator<StackTrace>* stacktrace_allocator() {
76 static StackTrace* growth_stacks() { return growth_stacks_;
    [all...]
span.cc 40 #include "static_vars.h" // for Static
54 Span* result = Static::span_allocator()->New();
69 Static::span_allocator()->Delete(span);
stack_trace_table.cc 40 #include "static_vars.h" // for Static
94 b = Static::bucket_allocator()->New();
145 SpinLockHolder h(Static::pageheap_lock());
150 Static::bucket_allocator()->Delete(b);
  /external/clang/test/CodeGenCXX/
template-inner-struct-visibility-hidden.cpp 14 static int Static;
21 template<typename T> int C<T>::Inner::Inner2::Static;
  /external/chromium_org/extensions/common/features/
feature_provider.cc 18 class Static {
27 friend struct base::DefaultLazyInstanceTraits<Static>;
29 Static() {
45 base::LazyInstance<Static> g_static = LAZY_INSTANCE_INITIALIZER;
49 // static
54 // static
59 // static
64 // static
  /external/liblzf/
Android.mk 9 # Static library for host
19 # Static library for target
  /external/clang/test/CXX/class.access/class.protected/
p1.cpp 7 static int sx; // expected-note 3 {{declared}} \
38 static int sx;
39 static void test(A&);
42 static void test(B&);
45 static void test(C&);
48 static void test(D&);
72 static int sx;
73 static void test(A&);
76 static void test(A&);
79 static void test(A&)
    [all...]
  /external/libogg/win32/VS6/
build_ogg_static.bat 2 echo ---+++--- Building Ogg (Static) ---+++---
build_ogg_static_debug.bat 2 echo ---+++--- Building Ogg (Static) ---+++---
  /frameworks/native/cmds/installd/
Android.mk 7 # Static library used in testing and executable
  /system/core/logwrapper/
Android.mk 6 # Static library
  /external/llvm/include/llvm/Support/
CodeGen.h 25 enum Model { Default, Static, PIC_, DynamicNoPIC };

Completed in 1467 milliseconds

1 2 3 4 5 6