HomeSort by relevance Sort by last modified time
    Searched defs:pointer (Results 426 - 450 of 1508) sorted by null

<<11121314151617181920>>

  /external/clang/include/clang/AST/
DeclFriend.h 49 // A pointer to the next friend in the sequence.
187 typedef FriendDecl *pointer; typedef in class:CXXRecordDecl::friend_iterator
DependentDiagnostic.h 131 typedef DependentDiagnostic *pointer; typedef in class:clang::DeclContext::ddiag_iterator
  /external/clang/include/clang/Sema/
IdentifierResolver.h 72 typedef NamedDecl * pointer; typedef in class:clang::IdentifierResolver::iterator
196 /// FETokenInfo contains a Decl pointer if lower bit == 0.
201 /// FETokenInfo contains a IdDeclInfo pointer if lower bit == 1.
  /external/clang/test/SemaTemplate/
class-template-spec.cpp 61 typedef void* pointer; typedef in struct:N::A0
68 void foo(A0<void>::pointer p = 0);
  /external/drm_hwcomposer/
glworker.h 39 typedef type pointer; \
41 void operator()(pointer p) const { \
56 typedef EGLImageKHR pointer; typedef in struct:android::EGLImageDeleter
  /external/e2fsprogs/intl/
gettextP.h 76 /* Pointer to addressed string. */
77 const char *pointer; member in struct:sysdep_string_desc
83 /* Pointer to memory containing the .mo file. */
91 /* Pointer to additional malloc()ed memory. */
96 /* Pointer to descriptors of original strings in the file. */
98 /* Pointer to descriptors of translated strings in the file. */
103 /* Pointer to descriptors of original sysdep strings. */
105 /* Pointer to descriptors of translated sysdep strings. */
110 /* Pointer to hash table. */
  /external/freetype/include/
ftsystem.h 159 * A generic typeless pointer for user data.
162 * A pointer type to an allocation function.
165 * A pointer type to an memory freeing function.
168 * A pointer type to a reallocation function.
209 * A union type used to store either a long or a pointer. This is used
216 void* pointer; member in union:FT_StreamDesc_
301 * This field is a union that can hold an integer or a pointer. It is
  /external/google-breakpad/src/common/
memory.h 103 // Checks whether the page allocator owns the passed-in pointer.
151 PageHeader *next; // pointer to the start of the next set of pages.
164 typedef typename std::allocator<T>::pointer pointer; typedef in struct:google_breakpad::PageStdAllocator
171 inline pointer allocate(size_type n, const void* = 0) {
172 return static_cast<pointer>(allocator_.Alloc(sizeof(T) * n));
175 inline void deallocate(pointer, size_type) {
  /external/icu/icu4c/source/common/
ulist.c 126 const UListNode *pointer = NULL; local
129 pointer = list->head;
131 while (pointer != NULL) {
132 if (length == uprv_strlen(pointer->data)) {
133 if (uprv_memcmp(data, pointer->data, length) == 0) {
139 pointer = pointer->next;
  /external/libcxx/test/std/thread/futures/
test_allocator.h 43 typedef value_type* pointer; typedef in class:test_allocator
57 pointer address(reference x) const {return &x;}
59 pointer allocate(size_type n, const void* = 0)
69 return (pointer)std::malloc(n * sizeof(T));
71 void deallocate(pointer p, size_type n)
75 void construct(pointer p, const T& val)
78 void construct(pointer p, T&& val)
81 void destroy(pointer p) {p->~T();}
101 typedef value_type* pointer; typedef in class:test_allocator
  /external/libcxx/test/support/
min_allocator.h 105 typedef T* pointer; typedef in class:min_pointer
110 pointer operator->() const {return ptr_;}
176 typedef const T* pointer; typedef in class:min_pointer
181 pointer operator->() const {return ptr_;}
267 typedef min_pointer<T> pointer; typedef in class:min_allocator
273 pointer allocate(std::ptrdiff_t n)
275 return pointer(static_cast<T*>(::operator new(n*sizeof(T))));
278 void deallocate(pointer p, std::ptrdiff_t)
test_allocator.h 47 typedef value_type* pointer; typedef in class:test_allocator
61 pointer address(reference x) const {return &x;}
63 pointer allocate(size_type n, const void* = 0)
75 return (pointer)std::malloc(n * sizeof(T));
77 void deallocate(pointer p, size_type n)
81 void construct(pointer p, const T& val)
84 void construct(pointer p, T&& val)
87 void destroy(pointer p) {p->~T();}
107 typedef value_type* pointer; typedef in class:non_default_test_allocator
121 pointer address(reference x) const {return &x;
167 typedef value_type* pointer; typedef in class:test_allocator
    [all...]
test_iterators.h 32 typedef It pointer; typedef in class:output_iterator
62 typedef It pointer; typedef in class:input_iterator
73 pointer operator->() const {return it_;}
114 typedef It pointer; typedef in class:forward_iterator
125 pointer operator->() const {return it_;}
166 typedef It pointer; typedef in class:bidirectional_iterator
177 pointer operator->() const {return it_;}
217 typedef It pointer; typedef in class:random_access_iterator
228 pointer operator->() const {return it_;}
  /external/llvm/include/llvm/ADT/
SmallPtrSet.h 1 //===- llvm/ADT/SmallPtrSet.h - 'Normally small' pointer set ----*- C++ -*-===//
36 /// which is treated as a simple array of pointers. When a pointer is added to
44 /// represented with an illegal pointer value (-1) to allow null pointers to be
45 /// inserted. Tombstones are represented with another illegal pointer value
97 // memset and because it's not a valid pointer value.
101 /// insert_imp - This returns true if the pointer was new to the set, false if
103 /// derived class can check that the right type of pointer is passed in.
106 /// erase_imp - If the set contains the specified pointer, remove it and
108 /// that the derived class can check that the right type of pointer is passed
185 typedef PtrTy pointer; typedef in class:llvm::SmallPtrSetIterator
    [all...]
SparseSet.h 45 /// - pointer key, pointer-derived index, identity value (node+ID)
46 /// - pointer key, pointer-derived index, fat value with getSparseSetIndex()
143 typedef ValueT *pointer; typedef in class:llvm::SparseSet
  /external/llvm/include/llvm/Analysis/
RegionIterator.h 92 typedef typename super::pointer pointer; typedef in class:llvm::RNSuccIterator
123 inline pointer operator*() const {
169 typedef typename super::pointer pointer; typedef in class:llvm::RNSuccIterator
205 inline pointer operator*() const {
  /external/llvm/include/llvm/IR/
InstIterator.h 42 typedef IIty* pointer; typedef in class:llvm::InstIterator
74 inline pointer operator->() const { return &operator*(); }
  /external/llvm/include/llvm/Support/
ErrorOr.h 1 //===- llvm/Support/ErrorOr.h - Error Smart Pointer -----------------------===//
12 /// Provides ErrorOr<T> smart pointer.
54 /// ErrorOr<T> is a pointer-like class that represents the result of an
56 /// designed to emulate the usage of returning a pointer where nullptr indicates
72 /// unary * and -> operators provide pointer like access to the value. Accessing
93 typedef typename std::remove_reference<T>::type *pointer; typedef in class:llvm::ErrorOr
182 pointer operator ->() {
245 pointer toPointer(pointer Val) {
249 pointer toPointer(wrap *Val)
    [all...]
  /external/objenesis/main/src/org/objenesis/instantiator/basic/
ObjectInputStreamInstantiator.java 44 private int pointer; field in class:ObjectInputStreamInstantiator.MockStream
81 this.pointer = 0;
114 pointer = 0;
120 int result = data[pointer++];
121 if(pointer >= data.length) {
134 int remaining = data.length - pointer;
137 System.arraycopy(data, pointer, b, off, remaining);
141 remaining = data.length - pointer;
144 System.arraycopy(data, pointer, b, off, left);
145 pointer += left
    [all...]
  /external/pdfium/third_party/freetype/include/
ftsystem.h 159 * A generic typeless pointer for user data.
162 * A pointer type to an allocation function.
165 * A pointer type to an memory freeing function.
168 * A pointer type to a reallocation function.
205 * A union type used to store either a long or a pointer. This is used
212 void* pointer; member in union:FT_StreamDesc_
292 * This field is a union that can hold an integer or a pointer. It is
  /external/srtp/crypto/cipher/
aes_cbc.c 60 uint8_t *pointer; local
71 pointer = (uint8_t*)crypto_alloc(tmp);
72 if (pointer == NULL)
76 *c = (cipher_t *)pointer;
78 (*c)->state = pointer + sizeof(cipher_t);
154 unsigned char *input = data; /* pointer to data being read */
155 unsigned char *output = data; /* pointer to data being written */
205 unsigned char *input = data; /* pointer to data being read */
206 unsigned char *output = data; /* pointer to data being written */
377 NULL /* pointer to next testcase *
    [all...]
aes_icm.c 95 uint8_t *pointer; local
114 pointer = (uint8_t*)crypto_alloc(tmp);
115 if (pointer == NULL)
119 *c = (cipher_t *)pointer;
121 (*c)->state = pointer + sizeof(cipher_t);
493 NULL /* pointer to next testcase */
  /frameworks/compile/mclinker/include/mcld/ADT/
HashIterator.h 247 typedef typename traits::pointer pointer; typedef in class:mcld::HashIterator
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/support/
min_allocator.h 77 typedef T* pointer; typedef in class:min_pointer
82 pointer operator->() const {return ptr_;}
148 typedef const T* pointer; typedef in class:min_pointer
153 pointer operator->() const {return ptr_;}
239 typedef min_pointer<T> pointer; typedef in class:min_allocator
245 pointer allocate(std::ptrdiff_t n)
247 return pointer(static_cast<T*>(::operator new(n*sizeof(T))));
250 void deallocate(pointer p, std::ptrdiff_t)
test_allocator.h 47 typedef value_type* pointer; typedef in class:test_allocator
61 pointer address(reference x) const {return &x;}
63 pointer allocate(size_type n, const void* = 0)
75 return (pointer)std::malloc(n * sizeof(T));
77 void deallocate(pointer p, size_type n)
81 void construct(pointer p, const T& val)
84 void construct(pointer p, T&& val)
87 void destroy(pointer p) {p->~T();}
107 typedef value_type* pointer; typedef in class:non_default_test_allocator
121 pointer address(reference x) const {return &x;
167 typedef value_type* pointer; typedef in class:test_allocator
    [all...]

Completed in 1909 milliseconds

<<11121314151617181920>>