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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/go/internal/gccgoimporter/testdata/
pointer.go 1 package pointer package
  /prebuilts/go/linux-x86/src/go/internal/gccgoimporter/testdata/
pointer.go 1 package pointer package
  /frameworks/compile/mclinker/unittests/
LinearAllocatorTest.cpp 38 Data* pointer = m_pTestee->allocate(10); local
39 ASSERT_FALSE(0 == pointer);
45 Data* pointer = m_pTestee->allocate(); local
46 ASSERT_FALSE(0 == pointer);
52 Data* pointer = m_pTestee->allocate(CHUNK_SIZE + 1); local
53 ASSERT_TRUE(0 == pointer);
59 Data* pointer = m_pTestee->allocate(); local
60 m_pTestee->construct(pointer);
61 ASSERT_TRUE(1 == pointer->one);
62 ASSERT_TRUE(2 == pointer->two)
68 Data* pointer = m_pTestee->allocate(); local
79 Data* pointer = m_pTestee->allocate(10); local
88 Data* pointer = m_pTestee->allocate(10); local
100 Data* pointer = m_pTestee->allocate(); local
117 Data* pointer = m_pTestee->allocate(10); local
    [all...]
RTLinearAllocatorTest.cpp 39 Data* pointer = m_pTestee->allocate(10); local
40 ASSERT_FALSE(0 == pointer);
46 Data* pointer = m_pTestee->allocate(); local
47 ASSERT_FALSE(0 == pointer);
53 Data* pointer = m_pTestee->allocate(CHUNK_SIZE + 1); local
54 ASSERT_TRUE(0 == pointer);
60 Data* pointer = m_pTestee->allocate(); local
61 m_pTestee->construct(pointer);
62 ASSERT_TRUE(1 == pointer->one);
63 ASSERT_TRUE(2 == pointer->two)
69 Data* pointer = m_pTestee->allocate(); local
80 Data* pointer = m_pTestee->allocate(10); local
89 Data* pointer = m_pTestee->allocate(10); local
101 Data* pointer = m_pTestee->allocate(); local
118 Data* pointer = m_pTestee->allocate(10); local
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/issue15609.dir/
call_386.s 3 DATA ·pointer(SB)/4, $·target(SB)
4 GLOBL ·pointer(SB),RODATA,$4
7 CALL *·pointer(SB)
call_amd64.s 3 DATA ·pointer(SB)/8, $·target(SB)
4 GLOBL ·pointer(SB),RODATA,$8
7 CALL *·pointer(SB)
  /prebuilts/go/linux-x86/test/fixedbugs/issue15609.dir/
call_386.s 3 DATA ·pointer(SB)/4, $·target(SB)
4 GLOBL ·pointer(SB),RODATA,$4
7 CALL *·pointer(SB)
call_amd64.s 3 DATA ·pointer(SB)/8, $·target(SB)
4 GLOBL ·pointer(SB),RODATA,$8
7 CALL *·pointer(SB)
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
thread_info_base.hpp 43 void* const pointer = this_thread->reusable_memory_; local
46 unsigned char* const mem = static_cast<unsigned char*>(pointer);
50 return pointer;
53 ::operator delete(pointer);
56 void* const pointer = ::operator new(size + 1); local
57 unsigned char* const mem = static_cast<unsigned char*>(pointer);
59 return pointer;
63 void* pointer, std::size_t size)
69 unsigned char* const mem = static_cast<unsigned char*>(pointer);
71 this_thread->reusable_memory_ = pointer;
    [all...]
  /external/libbrillo/brillo/
pointer_utils.h 13 // AdvancePointer() is a helper function to advance void pointer by
15 inline void* AdvancePointer(void* pointer, ssize_t byte_offset) {
16 return reinterpret_cast<uint8_t*>(pointer) + byte_offset;
18 inline const void* AdvancePointer(const void* pointer, ssize_t byte_offset) {
19 return reinterpret_cast<const uint8_t*>(pointer) + byte_offset;
  /system/chre/platform/linux/
memory.cc 31 void memoryFree(void *pointer) {
32 free(pointer);
35 void palSystemApiMemoryFree(void *pointer) {
36 free(pointer);
  /system/chre/platform/shared/include/chre/platform/shared/
pal_system_api.h 33 void palSystemApiMemoryFree(void *pointer);
  /external/deqp/scripts/opengl/
gen_call_log_wrapper.py 35 def pointer (size): function
90 "glDeleteBuffers": LogSpec({1: pointer(size = "n")}),
91 "glDeleteFramebuffers": LogSpec({1: pointer(size = "n")}),
92 "glDeleteQueries": LogSpec({1: pointer(size = "n")}),
93 "glDeleteRenderbuffers": LogSpec({1: pointer(size = "n")}),
94 "glDeleteBuffers": LogSpec({1: pointer(size = "n")}),
95 "glDeleteTextures": LogSpec({1: pointer(size = "n")}),
96 "glDeleteVertexArrays": LogSpec({1: pointer(size = "n")}),
97 "glDeleteProgramPipelines": LogSpec({1: pointer(size = "n")}),
124 "glGenBuffers": LogSpec({}, argOutPrints = {1: pointer(size = "n")})
    [all...]
  /external/vixl/src/aarch64/
cpu-aarch64.h 50 static T SetPointerTag(T pointer, uint64_t tag) {
56 uint64_t raw = (uint64_t)pointer;
57 VIXL_STATIC_ASSERT(sizeof(pointer) == sizeof(raw));
64 static uint64_t GetPointerTag(T pointer) {
68 uint64_t raw = (uint64_t)pointer;
69 VIXL_STATIC_ASSERT(sizeof(pointer) == sizeof(raw));
  /bionic/libc/malloc_debug/
DebugData.cpp 62 pointer.reset(new PointerData(this));
63 if (!pointer->Initialize(config_)) {
82 if (pointer != nullptr) {
83 pointer->PrepareFork();
88 if (pointer != nullptr) {
89 pointer->PostForkParent();
94 if (pointer != nullptr) {
95 pointer->PostForkChild();
  /external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/
pointer_type.pass.cpp 14 // Test unique_ptr::pointer type
22 struct pointer {}; struct in struct:Deleter
27 typedef void pointer; typedef in struct:D2
31 static long pointer; member in struct:D3
39 static_assert((std::is_same<typename P::pointer, int*>::value), "");
43 static_assert((std::is_same<typename P::pointer, Deleter::pointer>::value),
49 static_assert(std::is_same<typename P::pointer, int*>::value, "");
53 static_assert(std::is_same<typename P::pointer, int*>::value, "");
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/gp_hash_table_map_/
find_no_store_hash_fn_imps.hpp 43 inline typename PB_DS_CLASS_C_DEC::pointer
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/gp_hash_table_map_/
find_no_store_hash_fn_imps.hpp 43 inline typename PB_DS_CLASS_C_DEC::pointer
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/
pointer_type.pass.cpp 14 // Test unique_ptr::pointer type
22 struct pointer {}; struct in struct:Deleter
27 typedef void pointer; typedef in struct:D2
31 static long pointer; member in struct:D3
39 static_assert((std::is_same<typename P::pointer, int*>::value), "");
43 static_assert((std::is_same<typename P::pointer, Deleter::pointer>::value),
49 static_assert(std::is_same<typename P::pointer, int*>::value, "");
53 static_assert(std::is_same<typename P::pointer, int*>::value, "");
  /system/chre/util/include/chre/util/
container_support.h 39 * @return a pointer to allocated memory or nullptr if allocation failed.
49 * @param pointer the allocation to release.
51 inline void memoryFree(void *pointer) {
52 chreHeapFree(pointer);
  /frameworks/native/libs/vr/libpdx/private/pdx/rpc/
pointer_wrapper.h 16 PointerWrapper(T* pointer) : pointer_(pointer) {}
30 PointerWrapper<T> WrapPointer(T* pointer) {
31 return PointerWrapper<T>(pointer);
  /system/chre/platform/include/chre/platform/
memory.h 33 void memoryFree(void *pointer);
  /system/chre/platform/slpi/include/chre/platform/slpi/
memory.h 34 void memoryFreeBigImage(void *pointer);
  /external/libcxx/test/std/utilities/memory/allocator.traits/allocator.traits.types/
pointer.pass.cpp 15 // typedef Alloc::pointer | value_type* pointer;
31 typedef Ptr<T> pointer; typedef in struct:A
44 typedef void pointer; typedef in struct:C
49 static_assert((std::is_same<std::allocator_traits<A<char> >::pointer, Ptr<char> >::value), "");
50 static_assert((std::is_same<std::allocator_traits<B<char> >::pointer, char*>::value), "");
52 static_assert((std::is_same<std::allocator_traits<C<char> >::pointer, char*>::value), "");
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/memory/allocator.traits/allocator.traits.types/
pointer.pass.cpp 15 // typedef Alloc::pointer | value_type* pointer;
31 typedef Ptr<T> pointer; typedef in struct:A
44 typedef void pointer; typedef in struct:C
49 static_assert((std::is_same<std::allocator_traits<A<char> >::pointer, Ptr<char> >::value), "");
50 static_assert((std::is_same<std::allocator_traits<B<char> >::pointer, char*>::value), "");
52 static_assert((std::is_same<std::allocator_traits<C<char> >::pointer, char*>::value), "");

Completed in 731 milliseconds

1 2 3 4 5 6 7 8 91011>>