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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Modules/Inputs/cxx-lookup/
x.h 1 template <class T> class allocator;
2 struct X { virtual allocator<char> f(); };
y.h 4 extern allocator<ulittle32_t> *x;
  /external/mesa3d/src/gallium/auxiliary/util/
u_suballoc.c 29 /* A simple allocator that suballocates memory from a large buffer. */
64 struct u_suballocator *allocator = CALLOC_STRUCT(u_suballocator); local
65 if (!allocator)
68 allocator->pipe = pipe;
69 allocator->size = size;
70 allocator->bind = bind;
71 allocator->usage = usage;
72 allocator->zero_buffer_memory = zero_buffer_memory;
73 return allocator;
77 u_suballocator_destroy(struct u_suballocator *allocator)
    [all...]
  /device/google/contexthub/firmware/os/core/
slab.c 31 struct SlabAllocator *allocator; local
42 allocator = (struct SlabAllocator*)heapAlloc(sizeof(struct SlabAllocator) + bitsetSz + dataSz);
43 if (allocator) {
44 allocator->itemSz = itemSz;
45 allocator->dataChunks = ((uint8_t*)allocator->bitset) + bitsetSz;
46 atomicBitsetInit(allocator->bitset, numItems);
49 return allocator;
52 void slabAllocatorDestroy(struct SlabAllocator *allocator)
54 heapFree(allocator);
    [all...]
  /device/google/contexthub/firmware/os/inc/
slab.h 29 void slabAllocatorDestroy(struct SlabAllocator *allocator);
30 void* slabAllocatorAlloc(struct SlabAllocator *allocator);
31 void slabAllocatorFree(struct SlabAllocator *allocator, void *ptr);
33 void* slabAllocatorGetNth(struct SlabAllocator *allocator, uint32_t idx); // -> pointer or NULL if that slot is empty may be not int-safe. YMMV
34 uint32_t slabAllocatorGetIndex(struct SlabAllocator *allocator, void *ptr); // -> index or -1 if invalid pointer
35 uint32_t slabAllocatorGetNumItems(struct SlabAllocator *allocator); // simply say hwo many items it can hold max (numItems passed to constructor)
  /external/libcxx/test/std/containers/sequences/deque/
allocator_mismatch.fail.cpp 11 // The container's value type must be the same as the allocator's value type
17 std::deque<int, std::allocator<long> > d;
  /external/libcxx/test/std/containers/sequences/forwardlist/
allocator_mismatch.fail.cpp 11 // The container's value type must be the same as the allocator's value type
17 std::forward_list<int, std::allocator<long> > fl;
  /external/libcxx/test/std/containers/sequences/list/
allocator_mismatch.fail.cpp 11 // The container's value type must be the same as the allocator's value type
17 std::list<int, std::allocator<long> > l;
  /external/libcxx/test/std/containers/sequences/vector/
allocator_mismatch.fail.cpp 11 // The container's value type must be the same as the allocator's value type
17 std::vector<int, std::allocator<long> > v;
  /hardware/interfaces/graphics/allocator/2.0/default/
passthrough.cpp 17 #include <allocator-passthrough/2.0/GrallocLoader.h>
18 #include <android/hardware/graphics/allocator/2.0/IAllocator.h>
20 using android::hardware::graphics::allocator::V2_0::IAllocator;
21 using android::hardware::graphics::allocator::V2_0::passthrough::GrallocLoader;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/deque/
allocator_mismatch.fail.cpp 11 // The container's value type must be the same as the allocator's value type
17 std::deque<int, std::allocator<long> > d;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/forwardlist/
allocator_mismatch.fail.cpp 11 // The container's value type must be the same as the allocator's value type
17 std::forward_list<int, std::allocator<long> > fl;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/list/
allocator_mismatch.fail.cpp 11 // The container's value type must be the same as the allocator's value type
17 std::list<int, std::allocator<long> > l;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/vector/
allocator_mismatch.fail.cpp 11 // The container's value type must be the same as the allocator's value type
17 std::vector<int, std::allocator<long> > v;
  /system/core/libmemunreachable/
Binder.h 20 #include "Allocator.h"
24 bool BinderReferences(allocator::vector<uintptr_t>& refs);
  /external/libcxx/test/std/utilities/memory/default.allocator/
allocator_void.pass.cpp 13 // class allocator<void>
20 // template <class _Up> struct rebind {typedef allocator<_Up> other;};
28 static_assert((std::is_same<std::allocator<void>::pointer, void*>::value), "");
29 static_assert((std::is_same<std::allocator<void>::const_pointer, const void*>::value), "");
30 static_assert((std::is_same<std::allocator<void>::value_type, void>::value), "");
31 static_assert((std::is_same<std::allocator<void>::rebind<int>::other,
32 std::allocator<int> >::value), "");
33 std::allocator<void> a;
34 std::allocator<void> a2 = a;
allocator_types.pass.cpp 15 // class allocator
27 // template <class U> struct rebind {typedef allocator<U> other;};
39 static_assert((std::is_same<std::allocator<char>::size_type, std::size_t>::value), "");
40 static_assert((std::is_same<std::allocator<char>::difference_type, std::ptrdiff_t>::value), "");
41 static_assert((std::is_same<std::allocator<char>::pointer, char*>::value), "");
42 static_assert((std::is_same<std::allocator<char>::const_pointer, const char*>::value), "");
43 static_assert((std::is_same<std::allocator<char>::value_type, char>::value), "");
44 static_assert((std::is_same<std::allocator<char>::reference, char&>::value), "");
45 static_assert((std::is_same<std::allocator<char>::const_reference, const char&>::value), "");
46 static_assert((std::is_same<std::allocator<char>::rebind<int>::other
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/memory/default.allocator/
allocator_void.pass.cpp 13 // class allocator<void>
20 // template <class _Up> struct rebind {typedef allocator<_Up> other;};
28 static_assert((std::is_same<std::allocator<void>::pointer, void*>::value), "");
29 static_assert((std::is_same<std::allocator<void>::const_pointer, const void*>::value), "");
30 static_assert((std::is_same<std::allocator<void>::value_type, void>::value), "");
31 static_assert((std::is_same<std::allocator<void>::rebind<int>::other,
32 std::allocator<int> >::value), "");
33 std::allocator<void> a;
34 std::allocator<void> a2 = a;
allocator_types.pass.cpp 15 // class allocator
27 // template <class U> struct rebind {typedef allocator<U> other;};
39 static_assert((std::is_same<std::allocator<char>::size_type, std::size_t>::value), "");
40 static_assert((std::is_same<std::allocator<char>::difference_type, std::ptrdiff_t>::value), "");
41 static_assert((std::is_same<std::allocator<char>::pointer, char*>::value), "");
42 static_assert((std::is_same<std::allocator<char>::const_pointer, const char*>::value), "");
43 static_assert((std::is_same<std::allocator<char>::value_type, char>::value), "");
44 static_assert((std::is_same<std::allocator<char>::reference, char&>::value), "");
45 static_assert((std::is_same<std::allocator<char>::const_reference, const char&>::value), "");
46 static_assert((std::is_same<std::allocator<char>::rebind<int>::other
    [all...]
  /external/tensorflow/tensorflow/core/framework/
allocator_registry.h 23 #include "tensorflow/core/framework/allocator.h"
30 // Add an allocator to the registry. Caller releases ownership of
31 // 'allocator'.
32 void Register(const string& name, int priority, Allocator* allocator);
34 // Return allocator with highest priority
36 Allocator* GetAllocator();
45 Allocator* allocator; // not owned member in struct:tensorflow::AllocatorRegistry::__anon39553
48 // Returns the Allocator registered for 'name' and 'priority'
    [all...]
  /art/compiler/utils/
jni_macro_assembler.cc 50 ArenaAllocator* allocator,
61 return MacroAsm32UniquePtr(new (allocator) arm::ArmVIXLJNIMacroAssembler(allocator));
65 return MacroAsm32UniquePtr(new (allocator) mips::MipsAssembler(
66 allocator,
73 return MacroAsm32UniquePtr(new (allocator) x86::X86JNIMacroAssembler(allocator));
85 ArenaAllocator* allocator,
95 return MacroAsm64UniquePtr(new (allocator) arm64::Arm64JNIMacroAssembler(allocator));
    [all...]
  /art/runtime/base/
arena_object.h 33 void* operator new(size_t size, ArenaAllocator* allocator) {
34 return allocator->Alloc(size, kAllocKind);
37 static void* operator new(size_t size, ScopedArenaAllocator* allocator) {
38 return allocator->Alloc(size, kAllocKind);
57 void* operator new(size_t size, ArenaAllocator* allocator) {
58 return allocator->Alloc(size, kAllocKind);
61 static void* operator new(size_t size, ScopedArenaAllocator* allocator) {
62 return allocator->Alloc(size, kAllocKind);
  /external/libcxx/test/std/utilities/memory/default.allocator/allocator.globals/
eq.pass.cpp 12 // allocator:
16 // operator==(const allocator<T1>&, const allocator<T2>&) throw();
20 // operator!=(const allocator<T1>&, const allocator<T2>&) throw();
27 std::allocator<int> a1;
28 std::allocator<int> a2;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
memoryfwd.h 64 class allocator;
67 class allocator<void>;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
memoryfwd.h 64 class allocator;
67 class allocator<void>;

Completed in 398 milliseconds

1 2 3 4 5 6 7 8 91011>>