Searched defs:pointer (Results 1 - 25 of 180) sorted by relevance

12345678

/external/webkit/Tools/android/flex-2.5.4a/MISC/Macintosh/
H A Dalloca.h7 typedef void *pointer; typedef
9 pointer alloca(unsigned size);
H A Dalloca.c51 typedef void *pointer; /* generic pointer type */ typedef
53 typedef char *pointer; /* generic pointer type */
56 #define NULL 0 /* null pointer constant */
59 extern pointer xmalloc();
130 alloca( size ) returns a pointer to at least `size' bytes of
140 pointer
141 alloca (size) /* returns pointer to storage */
164 free ((pointer) h
[all...]
/external/srtp/crypto/cipher/
H A Dnull_cipher.c58 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/stlport/stlport/stl/
H A D_raw_storage_iter.h50 typedef void pointer; typedef in class:raw_storage_iterator
H A D_iostream_string.h52 typedef typename _Base::pointer pointer; typedef in class:__iostring_allocator
69 void deallocate(pointer __p, size_type __n) {
H A D_ostreambuf_iterator.h53 typedef void pointer; typedef in class:ostreambuf_iterator
/external/webkit/Source/WebCore/platform/text/
H A DTextCodecASCIIFastPath.h34 // Assuming that a pointer is the size of a "machine word", then
84 inline bool isAlignedToMachineWord(const void* pointer) argument
86 return !(reinterpret_cast<uintptr_t>(pointer) & machineWordAlignmentMask);
89 template<typename T> inline T* alignToMachineWord(T* pointer) argument
91 return reinterpret_cast<T*>(reinterpret_cast<uintptr_t>(pointer) & ~machineWordAlignmentMask);
/external/chromium/testing/gtest/include/gtest/
H A Dgtest-message.h78 // can stream a NULL char pointer to it in the former, but not in the
80 // class hides this difference by treating a NULL char pointer as
111 // Streams a value (either a pointer or not) to this object.
118 // Streams a non-pointer value to this object.
125 // Streams a pointer value to this object.
128 // stream a pointer to a Message, this definition will be used as it
130 // [temp.func.order].) If you stream a non-pointer, then the
133 // The reason for this overload is that streaming a NULL pointer to
139 inline Message& operator <<(T* const& pointer) { // NOLINT argument
140 if (pointer
202 StreamHelper(internal::true_type , T* pointer) argument
[all...]
/external/gtest/include/gtest/
H A Dgtest-message.h78 // can stream a NULL char pointer to it in the former, but not in the
80 // class hides this difference by treating a NULL char pointer as
111 // Streams a value (either a pointer or not) to this object.
118 // Streams a non-pointer value to this object.
125 // Streams a pointer value to this object.
128 // stream a pointer to a Message, this definition will be used as it
130 // [temp.func.order].) If you stream a non-pointer, then the
133 // The reason for this overload is that streaming a NULL pointer to
139 inline Message& operator <<(T* const& pointer) { // NOLINT argument
140 if (pointer
202 StreamHelper(internal::true_type , T* pointer) argument
[all...]
/external/icu4c/i18n/unicode/
H A Dtranslit.h263 * 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
288 * Return a token containing a pointer.
289 * @return a token containing a pointer.
297 * instantiated, together with the context pointer that was passed
304 * @param context a context pointer that will be stored and
968 * @param factory a function pointer that will be copied and
970 * @param context a context pointer that will be stored and
1020 * @param factory a function pointer tha
[all...]
/external/llvm/include/llvm/ADT/
H A DInMemoryStruct.h21 /// 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/llvm/include/llvm/Support/
H A DPathV2.h62 typedef value_type *pointer; typedef in class:llvm::sys::path::const_iterator
66 pointer operator->() const { return &Component; }
/external/llvm/utils/unittest/googletest/include/gtest/
H A Dgtest-message.h78 // can stream a NULL char pointer to it in the former, but not in the
80 // class hides this difference by treating a NULL char pointer as
111 // Streams a value (either a pointer or not) to this object.
118 // Streams a non-pointer value to this object.
125 // Streams a pointer value to this object.
128 // stream a pointer to a Message, this definition will be used as it
130 // [temp.func.order].) If you stream a non-pointer, then the
133 // The reason for this overload is that streaming a NULL pointer to
139 inline Message& operator <<(T* const& pointer) { // NOLINT argument
140 if (pointer
202 StreamHelper(internal::true_type , T* pointer) argument
[all...]
/external/protobuf/gtest/include/gtest/
H A Dgtest-message.h76 // can stream a NULL char pointer to it in the former, but not in the
78 // class hides this difference by treating a NULL char pointer as
106 // Streams a value (either a pointer or not) to this object.
113 // Streams a non-pointer value to this object.
120 // Streams a pointer value to this object.
123 // stream a pointer to a Message, this definition will be used as it
125 // [temp.func.order].) If you stream a non-pointer, then the
128 // The reason for this overload is that streaming a NULL pointer to
134 inline Message& operator <<(T* const& pointer) { // NOLINT argument
135 if (pointer
196 StreamHelper(internal::true_type , T* pointer) argument
[all...]
/external/srtp/crypto/hash/
H A Dnull_auth.c58 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 */
H A Dhmac.c59 uint8_t *pointer; local
76 pointer = (uint8_t*)crypto_alloc(sizeof(hmac_ctx_t) + sizeof(auth_t));
77 if (pointer == NULL)
81 *a = (auth_t *)pointer;
83 (*a)->state = pointer + sizeof(auth_t);
243 NULL /* pointer to next testcase */
/external/astl/tests/
H A Dtest_iterator.cpp42 typedef int* pointer; typedef in struct:android::Input
50 typedef int* pointer; typedef in struct:android::Forward
58 typedef int* pointer; typedef in struct:android::Bidirectional
66 typedef int* pointer; typedef in struct:android::Random
/external/chromium/sdch/open-vcdiff/src/gtest/
H A Dgtest-message.h76 // can stream a NULL char pointer to it in the former, but not in the
78 // class hides this difference by treating a NULL char pointer as
106 // Streams a value (either a pointer or not) to this object.
113 // Streams a non-pointer value to this object.
120 // Streams a pointer value to this object.
123 // stream a pointer to a Message, this definition will be used as it
125 // [temp.func.order].) If you stream a non-pointer, then the
128 // The reason for this overload is that streaming a NULL pointer to
134 inline Message& operator <<(T* const& pointer) { // NOLINT argument
135 if (pointer
196 StreamHelper(internal::true_type dummy, T* pointer) argument
[all...]
/external/clang/include/clang/AST/
H A DDeclLookups.h30 typedef lookup_result pointer; typedef in class:clang::DeclContext::all_lookups_iterator
40 pointer operator->() const { return It->second.getLookupResult(); }
/external/clang/test/CodeGenCXX/
H A Dthunk-use-after-free.cpp7 typedef _Tp *pointer; typedef in struct:new_allocator
17 typename _Tp_alloc_type::pointer _M_end_of_storage;
/external/clang/test/SemaTemplate/
H A Dclass-template-spec.cpp61 typedef void* pointer; typedef in struct:N::A0
68 void foo(A0<void>::pointer p = 0);
/external/eigen/Eigen/src/StlSupport/
H A Ddetails.h27 typedef T* pointer; typedef in class:Eigen::aligned_allocator_indirection
/external/oprofile/libpp/
H A Dprofile.h154 typedef count_type * pointer; typedef in struct:std::iterator_traits
/external/webkit/Source/WebCore/platform/text/cf/
H A DStringImplCF.cpp71 static void* reallocate(void* pointer, CFIndex newSize, CFOptionFlags, void*) argument
74 StringImpl** header = static_cast<StringImpl**>(pointer) - 1;
89 static void deallocate(void* pointer, void*) argument
91 StringImpl** header = static_cast<StringImpl**>(pointer) - 1;
140 // Put pointer to the StringImpl in a global so the allocator can store it with the CFString.
/external/webkit/Source/WebKit2/Platform/mac/
H A DSharedMemoryMac.cpp87 static inline mach_vm_address_t toVMAddress(void* pointer) argument
89 return static_cast<mach_vm_address_t>(reinterpret_cast<uintptr_t>(pointer));

Completed in 8293 milliseconds

12345678