HomeSort by relevance Sort by last modified time
    Searched full:allocatortype (Results 1 - 25 of 42) sorted by null

1 2

  /external/llvm/include/llvm/Support/
RecyclingAllocator.h 25 template<class AllocatorType, class T,
35 AllocatorType Allocator;
62 template<class AllocatorType, class T, size_t Size, size_t Align>
64 llvm::RecyclingAllocator<AllocatorType,
70 template<class AllocatorType, class T, size_t Size, size_t Align>
72 llvm::RecyclingAllocator<AllocatorType,
Recycler.h 66 template<class AllocatorType>
67 void clear(AllocatorType &Allocator) {
81 template<class SubClass, class AllocatorType>
82 SubClass *Allocate(AllocatorType &Allocator) {
91 template<class AllocatorType>
92 T *Allocate(AllocatorType &Allocator) {
96 template<class SubClass, class AllocatorType>
97 void Deallocate(AllocatorType & /*Allocator*/, SubClass* Element) {
ArrayRecycler.h 102 template<class AllocatorType>
103 void clear(AllocatorType &Allocator) {
123 template<class AllocatorType>
124 T *allocate(Capacity Cap, AllocatorType &Allocator) {
  /art/runtime/gc/
allocator_type.h 26 enum AllocatorType {
36 std::ostream& operator<<(std::ostream& os, const AllocatorType& rhs);
heap.h 219 AllocatorType allocator,
225 AllocatorType GetCurrentAllocator() const {
229 AllocatorType GetCurrentNonMovingAllocator() const {
249 void ChangeAllocator(AllocatorType allocator)
812 static ALWAYS_INLINE bool AllocatorHasAllocationStack(AllocatorType allocator_type) {
819 static ALWAYS_INLINE bool AllocatorMayHaveConcurrentGC(AllocatorType allocator_type) {
    [all...]
heap-inl.h 44 AllocatorType allocator,
237 AllocatorType allocator_type,
407 inline bool Heap::IsOutOfMemoryOnAllocation(AllocatorType allocator_type, size_t alloc_size) {
  /art/runtime/entrypoints/
entrypoint_utils.h 65 gc::AllocatorType allocator_type)
72 gc::AllocatorType allocator_type)
79 gc::AllocatorType allocator_type)
99 gc::AllocatorType allocator_type)
107 gc::AllocatorType allocator_type)
113 gc::AllocatorType allocator_type)
121 gc::AllocatorType allocator_type)
entrypoint_utils-inl.h 177 gc::AllocatorType allocator_type) {
198 gc::AllocatorType allocator_type) {
221 gc::AllocatorType allocator_type) {
272 gc::AllocatorType allocator_type) {
298 gc::AllocatorType allocator_type) {
    [all...]
entrypoint_utils.cc 87 gc::AllocatorType /* allocator_type */) {
108 gc::AllocatorType /* allocator_type */) {
  /art/runtime/native/
java_lang_StringFactory.cc 46 gc::AllocatorType allocator_type = Runtime::Current()->GetHeap()->GetCurrentAllocator();
60 gc::AllocatorType allocator_type = Runtime::Current()->GetHeap()->GetCurrentAllocator();
75 gc::AllocatorType allocator_type = Runtime::Current()->GetHeap()->GetCurrentAllocator();
java_lang_String.cc 77 gc::AllocatorType allocator_type = Runtime::Current()->GetHeap()->GetCurrentAllocator();
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
pointer.h 387 ValueType& Create(ValueType& root, typename ValueType::AllocatorType& allocator, bool* alreadyExist = 0) const {
443 ValueType& Create(GenericDocument<EncodingType, typename ValueType::AllocatorType, stackAllocator>& document, bool* alreadyExist = 0) const {
504 ValueType& GetWithDefault(ValueType& root, const ValueType& defaultValue, typename ValueType::AllocatorType& allocator) const {
511 ValueType& GetWithDefault(ValueType& root, const Ch* defaultValue, typename ValueType::AllocatorType& allocator) const {
519 ValueType& GetWithDefault(ValueType& root, const std::basic_string<Ch>& defaultValue, typename ValueType::AllocatorType& allocator) const {
532 GetWithDefault(ValueType& root, T defaultValue, typename ValueType::AllocatorType& allocator) const {
538 ValueType& GetWithDefault(GenericDocument<EncodingType, typename ValueType::AllocatorType, stackAllocator>& document, const ValueType& defaultValue) const {
544 ValueType& GetWithDefault(GenericDocument<EncodingType, typename ValueType::AllocatorType, stackAllocator>& document, const Ch* defaultValue) const {
551 ValueType& GetWithDefault(GenericDocument<EncodingType, typename ValueType::AllocatorType, stackAllocator>& document, const std::basic_string<Ch>& defaultValue) const {
562 GetWithDefault(GenericDocument<EncodingType, typename ValueType::AllocatorType, stackAllocator>& document, T defaultValue) const
    [all...]
  /art/runtime/entrypoints/quick/
quick_alloc_entrypoints.h 33 void SetQuickAllocEntryPointsAllocator(gc::AllocatorType allocator)
quick_alloc_entrypoints.cc 259 static gc::AllocatorType entry_points_allocator = gc::kAllocatorTypeDlMalloc;
261 void SetQuickAllocEntryPointsAllocator(gc::AllocatorType allocator) {
  /art/runtime/mirror/
string.h 87 gc::AllocatorType allocator_type,
95 gc::AllocatorType allocator_type)
101 gc::AllocatorType allocator_type)
107 gc::AllocatorType allocator_type)
string-inl.h 156 inline String* String::Alloc(Thread* self, int32_t utf16_length, gc::AllocatorType allocator_type,
193 int32_t high_byte, gc::AllocatorType allocator_type) {
202 gc::AllocatorType allocator_type) {
212 int32_t offset, gc::AllocatorType allocator_type) {
string.cc 85 gc::AllocatorType allocator_type = Runtime::Current()->GetHeap()->GetCurrentAllocator();
99 gc::AllocatorType allocator_type = Runtime::Current()->GetHeap()->GetCurrentAllocator();
123 gc::AllocatorType allocator_type = Runtime::Current()->GetHeap()->GetCurrentAllocator();
object_array.h 34 gc::AllocatorType allocator_type)
object_array-inl.h 38 int32_t length, gc::AllocatorType allocator_type) {
258 gc::AllocatorType allocator_type = heap->IsMovableObject(this) ? heap->GetCurrentAllocator() :
array.cc 135 gc::AllocatorType allocator_type = heap->IsMovableObject(this) ? heap->GetCurrentAllocator() :
array.h 41 size_t component_size_shift, gc::AllocatorType allocator_type)
  /frameworks/opt/net/wifi/tests/wifitests/jni/
wifi_hal_mock.h 40 rapidjson::Document::AllocatorType& allocator;
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
pointertest.cpp 635 Document::AllocatorType& a = d.GetAllocator();
738 Document::AllocatorType& a = d.GetAllocator();
857 Document::AllocatorType& a = d.GetAllocator();
912 Document::AllocatorType& a = d.GetAllocator();
954 Document::AllocatorType& a = d.GetAllocator();
    [all...]
valuetest.cpp 77 Value::AllocatorType allocator;
160 Value::AllocatorType allocator;
230 typename Value::AllocatorType a;
718 Value::AllocatorType allocator;
911 Value::AllocatorType allocator;
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/example/tutorial/
tutorial.cpp 103 Document::AllocatorType& allocator = document.GetAllocator();

Completed in 263 milliseconds

1 2