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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Tools/android/flex-2.5.4a/MISC/Macintosh/
alloca.h 7 typedef void *pointer; typedef
9 pointer alloca(unsigned size);
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/memory/unique.ptr/unique.ptr.runtime/
pointer_type.pass.cpp 14 // Test unique_ptr<T[]>::pointer type
21 struct pointer {}; struct in struct:Deleter
28 static_assert((std::is_same<P::pointer, int*>::value), "");
32 static_assert((std::is_same<P::pointer, Deleter::pointer>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/memory/unique.ptr/unique.ptr.single/
pointer_type.pass.cpp 14 // Test unique_ptr::pointer type
21 struct pointer {}; struct in struct:Deleter
28 static_assert((std::is_same<P::pointer, int*>::value), "");
32 static_assert((std::is_same<P::pointer, Deleter::pointer>::value), "");
  /external/icu4c/common/
uelement.h 30 * It may be either a 32-bit integral value or an opaque void* pointer.
31 * The void* pointer may be smaller than 32 bits (e.g. 24 bits)
34 * Because a UElement is the size of a native pointer or a 32-bit
38 void* pointer; member in union:UElement
61 * a pointer, or clone a pointer, as appropriate.
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/memory/allocator.traits/allocator.traits.types/
pointer.pass.cpp 15 // typedef Alloc::pointer | value_type* pointer;
29 typedef Ptr<T> pointer; typedef in struct:A
40 static_assert((std::is_same<std::allocator_traits<A<char> >::pointer, Ptr<char> >::value), "");
41 static_assert((std::is_same<std::allocator_traits<B<char> >::pointer, char*>::value), "");
const_pointer.pass.cpp 16 // | pointer_traits<pointer>::rebind<const value_type>
30 typedef Ptr<T> pointer; typedef in struct:A
46 typedef CPtr<T> pointer; typedef in struct:C
const_void_pointer.pass.cpp 16 // | pointer_traits<pointer>::rebind<const void>
31 typedef Ptr<T> pointer; typedef in struct:A
void_pointer.pass.cpp 16 // | pointer_traits<pointer>::rebind<void>
31 typedef Ptr<T> pointer; typedef in struct:A
difference_type.pass.cpp 16 // | pointer_traits<pointer>::difference_type difference_type;
40 struct pointer {}; struct in struct:C
50 struct pointer_traits<C<char>::pointer>
size_type.pass.cpp 39 struct pointer {}; struct in struct:C
49 struct pointer_traits<C<char>::pointer>
  /external/bison/lib/
msvc-inval.c 80 struct gl_msvc_inval_per_thread *pointer = local
82 if (pointer == NULL)
85 pointer =
88 if (pointer == NULL)
90 pointer = &not_per_thread;
91 TlsSetValue (tls_index, pointer);
93 return pointer;
  /external/srtp/crypto/cipher/
null_cipher.c 58 uint8_t *pointer; local
64 pointer = (uint8_t*)crypto_alloc(sizeof(null_cipher_ctx_t) + sizeof(cipher_t));
65 if (pointer == NULL)
69 *c = (cipher_t *)pointer;
71 (*c)->state = pointer + sizeof(cipher_t);
132 NULL /* pointer to next testcase */
  /external/srtp/crypto/hash/
null_auth.c 58 uint8_t *pointer; local
64 pointer = (uint8_t*)crypto_alloc(sizeof(null_auth_ctx_t) + sizeof(auth_t));
65 if (pointer == NULL)
69 *a = (auth_t *)pointer;
71 (*a)->state = pointer + sizeof (auth_t);
141 NULL /* pointer to next testcase */
  /frameworks/base/core/jni/
android_nio_utils.h 25 * Given an nio.Buffer, return a pointer to it, beginning at its current
26 * position. The returned pointer is only valid for the current JNI stack-frame.
35 * and the returned pointer when the caller is through with it.
38 * @return The pointer to the memory in the buffer object
44 * Pass that array and the returned pointer when you are done accessing the
45 * pointer. If called (i.e. array is non-null), it must be called in the same
50 * @param pointer The pointer returned by android_nio_getPointer
51 * @param commit JNI_FALSE if the pointer was just read, and JNI_TRUE if
52 * the pointer was written to
62 void* pointer() const { return fPointer; } function in class:android::AutoBufferPointer
    [all...]
  /frameworks/compile/mclinker/unittests/
LinearAllocatorTest.cpp 43 Data* pointer = m_pTestee->allocate(10); local
44 ASSERT_FALSE(0 == pointer);
50 Data* pointer = m_pTestee->allocate(); local
51 ASSERT_FALSE(0 == pointer);
57 Data* pointer = m_pTestee->allocate(CHUNK_SIZE+1); local
58 ASSERT_TRUE(0 == pointer);
64 Data* pointer = m_pTestee->allocate(); local
65 m_pTestee->construct(pointer);
66 ASSERT_TRUE(1 == pointer->one);
67 ASSERT_TRUE(2 == pointer->two)
73 Data* pointer = m_pTestee->allocate(); local
84 Data* pointer = m_pTestee->allocate(10); local
93 Data* pointer = m_pTestee->allocate(10); local
105 Data* pointer = m_pTestee->allocate(); local
122 Data* pointer = m_pTestee->allocate(10); local
    [all...]
RTLinearAllocatorTest.cpp 44 Data* pointer = m_pTestee->allocate(10); local
45 ASSERT_FALSE(0 == pointer);
51 Data* pointer = m_pTestee->allocate(); local
52 ASSERT_FALSE(0 == pointer);
58 Data* pointer = m_pTestee->allocate(CHUNK_SIZE+1); local
59 ASSERT_TRUE(0 == pointer);
65 Data* pointer = m_pTestee->allocate(); local
66 m_pTestee->construct(pointer);
67 ASSERT_TRUE(1 == pointer->one);
68 ASSERT_TRUE(2 == pointer->two)
74 Data* pointer = m_pTestee->allocate(); local
85 Data* pointer = m_pTestee->allocate(10); local
94 Data* pointer = m_pTestee->allocate(10); local
106 Data* pointer = m_pTestee->allocate(); local
123 Data* pointer = m_pTestee->allocate(10); local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/iterators/iterator.primitives/iterator.traits/
iterator.pass.cpp 17 // typedef typename Iter::pointer pointer;
31 typedef A* pointer; typedef in struct:test_iterator
41 static_assert((std::is_same<It::pointer, A*>::value), "");
  /system/core/sh/
shell.h 65 typedef void *pointer; typedef
  /external/icu4c/i18n/unicode/
translit.h 263 * A context integer or pointer for a factory function, passed by
274 * This token, interpreted as a native pointer.
277 void* pointer; member in union:Transliterator::Token
289 * Return a token containing a pointer.
290 * @return a token containing a pointer.
299 * instantiated, together with the context pointer that was passed
306 * @param context a context pointer that will be stored and
    [all...]
  /external/llvm/include/llvm/ADT/
InMemoryStruct.h 1 //===- InMemoryStruct.h - Indirect Struct Access Smart Pointer --*- C++ -*-===//
21 /// in the common case can be accessed from a direct pointer to a memory mapped
28 typedef value_type *pointer; typedef in class:llvm::InMemoryStruct
32 /// \brief The smart pointer target.
36 /// pointer.
44 InMemoryStruct(pointer Value) : Target(Value) {}
57 assert(Target && "Cannot dereference null pointer");
61 assert(Target && "Cannot dereference null pointer");
68 pointer operator->() {
  /external/stlport/stlport/stl/
_raw_storage_iter.h 50 typedef void pointer; typedef in class:raw_storage_iterator
  /frameworks/compile/mclinker/include/mcld/ADT/
TypeTraits.h 26 typedef const DataType* pointer; typedef in struct:mcld::ConstTraits
37 typedef DataType* pointer; typedef in struct:mcld::NonConstTraits
48 typedef const DataType* pointer; typedef in struct:mcld::ConstIteratorTraits
60 typedef DataType* pointer; typedef in struct:mcld::NonConstIteratorTraits
  /ndk/sources/cxx-stl/llvm-libc++/test/strings/basic.string/
input_iterator.h 14 typedef It pointer; typedef in class:input_iterator
21 pointer operator->() const {return it_;}
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_raw_storage_iter.h 50 typedef void pointer; typedef in class:raw_storage_iterator
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
stl_iterator_base_types.h 112 /// This type represents a pointer-to-value_type.
113 typedef _Pointer pointer; typedef in struct:iterator
130 typedef typename _Iterator::pointer pointer; typedef in struct:iterator_traits
140 typedef _Tp* pointer; typedef in struct:iterator_traits
150 typedef const _Tp* pointer; typedef in struct:iterator_traits

Completed in 424 milliseconds

1 2 3 4 5 6 7 8 91011>>