Searched defs:pointer (Results 151 - 175 of 342) sorted by relevance

1234567891011>>

/external/mesa3d/src/mesa/main/
H A Dnvprogram.c491 * Get a vertex array attribute pointer.
496 _mesa_GetVertexAttribPointervNV(GLuint index, GLenum pname, GLvoid **pointer) argument
511 *pointer = (GLvoid *) ctx->Array.ArrayObj->VertexAttrib[VERT_ATTRIB_GENERIC(index)].Ptr;
/external/pcre/dist/
H A Dpcre_get.c141 firstptr where to put the pointer to the first entry
142 lastptr where to put the pointer to the last entry
316 ovector pointer to the offsets table
371 ovector pointer to the offsets table
423 of the captured substrings in it. A NULL pointer is put on the end of the list.
427 ovector pointer to the offsets table
503 pcre_free_substring_list(const char **pointer) argument
506 pcre16_free_substring_list(PCRE_SPTR16 *pointer)
509 pcre32_free_substring_list(PCRE_SPTR32 *pointer)
512 (PUBL(free))((void *)pointer);
650 pcre_free_substring(const char *pointer) argument
[all...]
/external/pdfium/core/include/thirdparties/freetype/freetype/
H A Dfttypes.h305 /* A simple typedef for a typeless pointer. */
395 /* Read-only binary data represented as a pointer and a length. */
398 /* pointer :: The data. */
404 const FT_Byte* pointer; member in struct:FT_Data_
441 /* It can be used to store a pointer to client-specific data, as well */
448 /* data :: A typeless pointer to any client-specified data. This */
451 /* finalizer :: A pointer to a `generic finalizer' function, which */
538 /* data :: A typeless pointer to the listed object. */
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/
H A Dfttypes.h305 /* A simple typedef for a typeless pointer. */
395 /* Read-only binary data represented as a pointer and a length. */
398 /* pointer :: The data. */
404 const FT_Byte* pointer; member in struct:FT_Data_
441 /* It can be used to store a pointer to client-specific data, as well */
448 /* data :: A typeless pointer to any client-specified data. This */
451 /* finalizer :: A pointer to a `generic finalizer' function, which */
538 /* data :: A typeless pointer to the listed object. */
/external/regex-re2/re2/
H A Dstringpiece.h45 // data() may return a pointer to a buffer with embedded NULs, and the
117 typedef const char* pointer; typedef in class:re2::StringPiece
/external/skia/src/lazy/
H A DSkDiscardableMemoryPool.cpp80 void* pointer, size_t bytes);
95 void* pointer,
99 , fPointer(pointer)
94 PoolDiscardableMemory(DiscardableMemoryPool* pool, void* pointer, size_t bytes) argument
/external/srtp/crypto/cipher/
H A Daes_cbc.c60 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 t
[all...]
H A Daes_icm.c95 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 */
/external/stlport/stlport/stl/
H A D_iterator.h51 typename iterator_traits<_Iterator>::pointer,
58 // pointer type required for arrow operator hidden behind _STLP_DEFINE_ARROW_OPERATOR:
59 typedef typename iterator_traits<_Iterator>::pointer pointer; typedef in class:reverse_iterator
H A D_iterator_base.h63 typedef _Pointer pointer; typedef in struct:iterator
72 typedef void pointer; typedef in struct:iterator
152 typedef typename _Iterator::pointer pointer; typedef in struct:iterator_traits::iterator_traits
170 typedef const _Tp* pointer; typedef in struct:iterator_traits::iterator_traits
179 typedef _Tp* pointer; typedef in struct:iterator_traits::iterator_traits
189 typedef const _Tp* pointer; typedef in struct:iterator_traits::iterator_traits
387 typedef const _Tp* pointer; typedef in struct:iterator_traits::_Const_traits
396 typedef _Tp* pointer; typedef in struct:iterator_traits::_Nonconst_traits
412 typedef const _Tp* pointer; typedef in struct:iterator_traits::_Const_Const_traits
421 typedef const _Tp* pointer; typedef in struct:iterator_traits::_Nonconst_Const_traits
[all...]
H A D_map.h81 typedef typename _Rep_type::pointer pointer; typedef in class:map
274 typedef typename _Rep_type::pointer pointer; typedef in class:multimap
H A D_pthread_alloc.h102 typedef _Tp* pointer; typedef in class:pthread_allocator
124 pointer address(reference __x) const { return &__x; }
145 void deallocate(pointer __p, size_type __n) {
158 void construct(pointer __p, const _Tp& __val) { new(__p) _Tp(__val); }
159 void destroy(pointer _p) { _p->~_Tp(); }
194 typedef void* pointer; typedef in class:pthread_allocator
283 typedef _Tp* pointer; typedef in class:per_thread_allocator
307 pointer address(reference __x) const { return &__x; }
328 void deallocate(pointer __p, size_type __n) {
341 void construct(pointer __
377 typedef void* pointer; typedef in class:per_thread_allocator
[all...]
H A D_set.h69 typedef typename _Rep_type::pointer pointer; typedef in class:set
240 typedef typename _Rep_type::pointer pointer; typedef in class:multiset
/external/stlport/stlport/stl/debug/
H A D_vector.h62 typedef _Tp* pointer; typedef in struct:_Vector_nonconst_traits
72 typedef const _Tp* pointer; typedef in struct:_Vector_const_traits
81 typedef _Bit_iterator::pointer pointer; typedef in struct:_Vector_nonconst_traits
90 typedef _Bit_const_iterator::pointer pointer; typedef in struct:_Vector_const_traits
/external/stlport/stlport/stl/pointers/
H A D_vector.h47 /* In the vector implementation iterators are pointer which give a number
50 * So vector implementation will always use a qualified void pointer type and
62 typedef value_type* pointer; typedef in class:vector
/external/stlport/test/eh/
H A DPrefix.h125 typedef value_type * pointer; typedef in class:EH_allocator
142 pointer address(reference __x) { return &__x; }
148 // __p is permitted to be a null pointer, only if n==0.
149 void deallocate(pointer __p, size_type __n) const {
154 void deallocate(pointer __p) const { if (__p != 0) EH_STD::__new_alloc::deallocate((void*)__p, sizeof(value_type)); }
156 void construct(pointer __p, const _Tp& __val) const { stlport::construct(__p, __val); }
157 void destroy(pointer __p) const { stlport::destroy(__p); }
/external/stlport/test/unit/
H A Dnum_put_get_test.cpp36 CPPUNIT_TEST(pointer);
52 void pointer();
1051 void NumPutGetTest::pointer() function in class:NumPutGetTest
1053 // Problem with printing pointer to null
1058 * p The argument shall be a pointer to void. The value of
1059 * the pointer is converted to a sequence of printable characters,
1068 // Hmmm, I see 0xff00 on box with 32-bits address; pointer like 'unsigned hex'?
H A Dstack_allocator.h57 typedef value_type * pointer; typedef in struct:StackAllocator
119 void deallocate(pointer p, size_type n) {
135 pointer address(reference __x) const {return &__x;}
138 void construct(pointer __p, const_reference __val) { new(__p) _Tp(__val); }
139 void destroy(pointer __p) { __p->~_Tp(); }
H A Dvector_test.cpp32 CPPUNIT_TEST(pointer);
55 void pointer();
335 void VectorTest::pointer() function in class:VectorTest
/external/llvm/include/llvm/ADT/
H A Dilist.h155 typedef typename super::pointer pointer; typedef in class:llvm::ilist_iterator
158 pointer NodePtr;
161 // implicit conversion to pointer-type, which is. Declare (but
176 ilist_iterator(pointer NP) : NodePtr(NP) {}
195 operator pointer() const {
202 pointer operator->() const { return &operator*(); }
234 pointer getNodePtrUnchecked() const { return NodePtr; }
295 /// pointer to the head of the list.
299 /// pointer i
339 typedef NodeTy *pointer; typedef in class:llvm::iplist
[all...]
/external/chromium_org/base/containers/
H A Dsmall_map.h229 typedef typename NormalMap::iterator::pointer pointer; typedef in class:base::SmallMap::iterator
309 typedef typename NormalMap::const_iterator::pointer pointer; typedef in class:base::SmallMap::const_iterator
/external/chromium_org/base/strings/
H A Dstring_piece.h167 typedef const value_type* pointer; typedef in class:base::BasicStringPiece
193 // data() may return a pointer to a buffer with embedded NULs, and the
237 // std::string doesn't like to take a NULL pointer even with a 0 size.
/external/chromium_org/third_party/WebKit/Source/core/testing/
H A DInternalSettings.cpp359 // Allow setting multiple pointer types by passing comma seperated list
375 exceptionState.throwDOMException(SyntaxError, "The pointer type token ('" + token + ")' is invalid.");
381 void InternalSettings::setPrimaryPointerType(const String& pointer, ExceptionState& exceptionState) argument
384 String token = pointer.stripWhiteSpace();
394 exceptionState.throwDOMException(SyntaxError, "The pointer type token ('" + token + ")' is invalid.");
/external/chromium_org/third_party/WebKit/Source/platform/
H A DTimer.cpp55 TimerHeapPointer(TimerBase** pointer) : m_pointer(pointer) { } argument
106 // Uses a custom pointer and reference type that update indices for pointers in the heap.
109 explicit TimerHeapIterator(TimerBase** pointer) : m_pointer(pointer) { checkConsistency(); } argument
371 // Accessing thread global data is slow. Cache the heap pointer.
/external/chromium_org/third_party/WebKit/Source/platform/heap/
H A DVisitor.h78 // Blink heap. This meta-data consists of a function pointer used to
81 // callback, and a function pointer used to finalize the object when
154 // The TraceTrait is used to specify how to mark an object pointer and
164 // that case the pointer has to be adjusted before marking.
202 // |mark| method with the pointer as an argument.
332 virtual void markNoTracing(const void* pointer) { mark(pointer, reinterpret_cast<TraceCallback>(0)); } argument
360 // The weak pointer callbacks are run on the thread that owns the
405 // the mark bit on a null pointer, that means that null pointers are
493 static void finalize(void* pointer);
[all...]

Completed in 420 milliseconds

1234567891011>>