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

1234567

/external/webkit/Tools/android/flex-2.5.4a/MISC/Macintosh/
H A Dalloca.h7 typedef void *pointer; typedef
9 pointer alloca(unsigned size);
/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/clang/include/clang/Index/
H A DSTLExtras.h30 typedef value_type* pointer; typedef in class:clang::idx::pair_value_iterator
38 pointer operator->() const { return &I->second; }
/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/v8/src/
H A Dsmart-pointer.h35 // A 'scoped array pointer' that calls DeleteArray on its pointer when the
41 // Default constructor. Construct an empty scoped pointer.
45 // Construct a scoped pointer from a plain one.
46 explicit inline SmartPointer(T* pointer) : p(pointer) {} argument
49 // Copy constructor removes the pointer from the original to avoid double
56 // When the destructor of the scoped pointer is executed the plain pointer
62 // You can get the underlying pointer ou
[all...]
H A Dsmall-pointer-list.h55 void Add(T* pointer) { argument
56 ASSERT(IsAligned(reinterpret_cast<intptr_t>(pointer), kPointerAlignment));
58 data_ = reinterpret_cast<intptr_t>(pointer) | kSingletonTag;
64 list->Add(pointer);
69 list()->Add(pointer);
87 void RemoveElement(T* pointer) { argument
90 if (pointer == single_value()) {
95 list()->RemoveElement(pointer);
123 int CountOccurrences(T* pointer, int start, int end) const { argument
127 return (single_value() == pointer)
[all...]
/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/Serialization/
H A DContinuousRangeMap.h40 typedef value_type *pointer; typedef in class:clang::ContinuousRangeMap
/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/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 dummy, T* pointer) argument
[all...]
/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 1927 milliseconds

1234567