Searched defs:pointer (Results 201 - 225 of 342) sorted by relevance

1234567891011>>

/external/stlport/stlport/stl/pointers/
H A D_set.h100 typedef typename _Priv_Rep_type::pointer pointer; typedef in class:set
347 typedef typename _Priv_Rep_type::pointer pointer; typedef in class:multiset
H A D_slist.h69 typedef value_type* pointer; typedef in class:slist
/external/strace/
H A Dvsprintf.c441 char *pointer(const char *fmt, char *buf, char *end, void *ptr, function
712 str = pointer(fmt+1, str, end, va_arg(args, void *),
/external/ceres-solver/include/ceres/
H A Drotation.h71 // array pointed to by "pointer" as a 3x3 (contiguous) column-major or
74 MatrixAdapter<T, 1, 3> ColumnMajorAdapter3x3(T* pointer);
77 MatrixAdapter<T, 3, 1> RowMajorAdapter3x3(T* pointer);
203 explicit MatrixAdapter(T* pointer) argument
204 : pointer_(pointer)
213 MatrixAdapter<T, 1, 3> ColumnMajorAdapter3x3(T* pointer) { argument
214 return MatrixAdapter<T, 1, 3>(pointer);
218 MatrixAdapter<T, 3, 1> RowMajorAdapter3x3(T* pointer) { argument
219 return MatrixAdapter<T, 3, 1>(pointer);
/external/chromium_org/android_webview/browser/
H A Dscoped_app_gl_state_restore.cc93 GLvoid* pointer; member in struct:android_webview::internal::ScopedAppGLStateRestoreImpl::__anon1802
288 i, GL_VERTEX_ATTRIB_ARRAY_POINTER, &vertex_attrib_[i].pointer);
290 i, GL_VERTEX_ATTRIB_ARRAY_POINTER, &vertex_attrib_[i].pointer);
323 vertex_attrib_[i].pointer);
/external/chromium_org/base/debug/
H A Dstack_trace_posix.cc125 void OutputPointer(void* pointer, BacktraceOutputHandler* handler) { argument
130 internal::itoa_r(reinterpret_cast<intptr_t>(pointer),
/external/chromium_org/gpu/command_buffer/client/
H A Dvertex_array_object_manager.cc26 // A 32-bit and 64-bit compatible way of converting a pointer to a GLuint.
93 const GLvoid* pointer() const { function in class:gpu::gles2::VertexArrayObject::VertexAttrib
111 const GLvoid* pointer) {
117 pointer_ = pointer;
140 // The pointer/offset into the buffer.
307 // Gets the Attrib pointer for an attrib but only if it's a client side
308 // pointer. Returns true if it got the pointer.
313 *ptr = const_cast<void*>(attrib->pointer());
529 attrib.pointer(), bytes_per_elemen
105 SetInfo( GLuint buffer_id, GLint size, GLenum type, GLboolean normalized, GLsizei gl_stride, const GLvoid* pointer) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DMediaQueryEvaluator.cpp578 PointerType pointer = mediaValues.primaryPointerType(); local
581 return pointer != PointerTypeNone;
586 return (pointer == PointerTypeNone && value.id == CSSValueNone)
587 || (pointer == PointerTypeCoarse && value.id == CSSValueCoarse)
588 || (pointer == PointerTypeFine && value.id == CSSValueFine);
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DTextBreakIteratorICU.cpp133 // Relocate pointer from source into destination as required.
134 static void textFixPointer(const UText* source, UText* destination, const void*& pointer) argument
136 if (pointer >= source->pExtra && pointer < static_cast<char*>(source->pExtra) + source->extraSize) {
138 pointer = static_cast<char*>(destination->pExtra) + (static_cast<const char*>(pointer) - static_cast<const char*>(source->pExtra));
139 } else if (pointer >= source && pointer < reinterpret_cast<const char*>(source) + source->sizeOfStruct) {
141 pointer = reinterpret_cast<char*>(destination) + (static_cast<const char*>(pointer)
[all...]
/external/chromium_org/third_party/libxslt/libxslt/
H A Dnumbers.c75 * @utf: pointer to the UTF8 character
103 * @utf1: pointer to first UTF8 char
104 * @utf2: pointer to second UTF8 char
173 xmlChar *pointer; local
180 pointer = &temp_string[sizeof(temp_string)] - 1; /* last char */
181 *pointer = 0;
183 while (pointer > temp_string) {
189 if (pointer - groupingCharacterLen < temp_string) {
193 pointer -= groupingCharacterLen;
194 xmlCopyCharMultiByte(pointer, groupingCharacte
235 char *pointer; local
[all...]
/external/chromium_org/third_party/skia/src/utils/
H A DSkMD5.cpp231 static inline bool is_aligned(const void *pointer, size_t byte_count) { argument
232 return reinterpret_cast<uintptr_t>(pointer) % byte_count == 0;
/external/chromium_org/v8/src/
H A Dproperty-details.h207 int pointer() const { return DescriptorPointer::decode(value_); } function in class:v8::internal::BASE_EMBEDDED
284 PropertyDetails(int value, int pointer) { argument
285 value_ = DescriptorPointer::update(value, pointer);
/external/clang/include/clang/AST/
H A DCanonicalType.h33 /// The CanQual template is a lightweight smart pointer that provides access
66 /// \brief Retrieve the underlying type pointer, which refers to a
69 /// The underlying pointer must not be NULL.
72 /// \brief Retrieve the underlying type pointer, which refers to a
91 /// \brief Retrieve a canonical type pointer with a different static type,
105 /// \returns A proxy pointer to the same type, but with the specified
230 /// \brief Retrieve the pointer to the underlying Type
233 /// \brief Implicit conversion to the underlying pointer.
351 /// to return smart pointer (proxies?).
360 // Teach SmallPtrSet that CanQual<T> is "basically a pointer"
391 typedef CanProxy<Type> pointer; typedef in class:clang::CanTypeIterator
[all...]
H A DExternalASTSource.h304 /// \brief A lazy pointer to an AST node (of base type T) that resides
312 /// \brief Either a pointer to an AST node or the offset within the
315 /// If the low bit is clear, a pointer to the AST node. If the low
344 /// \brief Whether this pointer is non-NULL.
349 /// \brief Whether this pointer is non-NULL.
354 /// \brief Whether this pointer is currently stored as an offset.
357 /// \brief Retrieve the pointer to the AST node that this lazy pointer
361 /// \returns a pointer to the AST node.
365 "Cannot deserialize a lazy pointer withou
503 typedef value_type* pointer; typedef in class:clang::LazyVector::iterator
[all...]
/external/clang/include/clang/Lex/
H A DPreprocessingRecord.h402 typedef value_type* pointer; typedef in class:clang::PreprocessingRecord::iterator
/external/deqp/framework/delibs/decpp/
H A DdePoolArray.hpp47 * \note Memory in PoolArray is not contiguous so pointer arithmetic
528 typedef const T* pointer; typedef in struct:std::iterator_traits
538 typedef T* pointer; typedef in struct:std::iterator_traits
/external/deqp/framework/opengl/
H A DgluDrawUtil.cpp49 const void* pointer; //!< Pointer or offset. member in struct:glu::__anon19731::VertexAttributeDescriptor
64 , pointer (pointer_)
75 , pointer (0)
232 *out = VertexArrayBinding(BindingPoint(location + binding.location), cur->pointer);
246 static deUint32 getMinimumAlignment (const VertexArrayPointer& pointer) argument
249 DE_UNREF(pointer);
277 const int offset = deAlign32(layout.size, getMinimumAlignment(va.pointer));
278 const int elementSize = getVtxCompSize(va.pointer.componentType)*va.pointer.numComponents;
279 const int size = elementSize*va.pointer
[all...]
/external/deqp/modules/glshared/
H A DglsFragOpInteractionCase.cpp100 vaIter->pointer.stride = curOffset;
134 return glu::VertexArrayBinding(entry.binding, glu::VertexArrayPointer(entry.pointer.componentType,
135 entry.pointer.convert,
136 entry.pointer.numComponents,
137 entry.pointer.numElements,
138 entry.pointer.stride,
139 (const void*)((deUintptr)entry.pointer.data+(deUintptr)data.getBasePtr())));
143 static void setVertex (const glu::VertexArrayPointer& pointer, int vertexNdx, const tcu::Vector<float, Size>& value) argument
146 DE_ASSERT(pointer.componentType == glu::VTX_COMP_FLOAT && pointer
[all...]
/external/lldb/test/functionalities/data-formatter/data-formatter-advanced/
H A Dmain.cpp158 int* pointer = &cool_array[4].integer; local
/external/llvm/include/llvm/ADT/
H A DSmallVector.h109 typedef T *pointer; typedef in class:llvm::SmallVectorTemplateCommon
135 /// data - Return a pointer to the vector's buffer, even if empty().
136 pointer data() { return pointer(begin()); }
137 /// data - Return a pointer to the vector's buffer, even if empty().
/external/opencv/cv/src/
H A Dcvconvhull.cpp199 icvCalcAndWritePtIndices( CvPoint** pointer, int* stack, int start, int end, argument
211 CvPoint* ptr = (CvPoint*)pointer[stack[i]];
232 CvPoint** pointer = 0; local
332 CV_CALL( pointer = (CvPoint**)cvAlloc( ptseq->total*sizeof(pointer[0]) ));
334 pointerf = (CvPoint2D32f**)pointer;
340 pointer[i] = (CvPoint*)reader.ptr;
347 icvSortPointsByPointers_32s( pointer, total, 0 );
350 int y = pointer[i]->y;
351 if( pointer[miny_in
[all...]
/external/openssl/crypto/
H A Dcryptlib.c187 static int (MS_FAR *add_lock_callback)(int *pointer,int amount,
239 CRYPTO_dynlock *pointer = NULL; local
256 pointer = (CRYPTO_dynlock *)OPENSSL_malloc(sizeof(CRYPTO_dynlock));
257 if (pointer == NULL)
262 pointer->references = 1;
263 pointer->data = dynlock_create_callback(__FILE__,__LINE__);
264 if (pointer->data == NULL)
266 OPENSSL_free(pointer);
280 i=sk_CRYPTO_dynlock_push(dyn_locks,pointer) - 1;
282 /* If we found a place with a NULL pointer, pu
299 CRYPTO_dynlock *pointer = NULL; local
342 CRYPTO_dynlock *pointer = NULL; local
592 struct CRYPTO_dynlock_value *pointer local
607 CRYPTO_add_lock(int *pointer, int amount, int type, const char *file, int line) argument
[all...]
/external/pdfium/core/src/fxcrt/
H A Dfx_basic_memmgr_mini.cpp51 static void* FixedRealloc(FXMEM_SystemMgr* pMgr, void* pointer, size_t size, int flags) argument
53 return ((CFXMEM_FixedMgr*)pMgr->user)->Realloc(pointer, size);
55 static void* FixedReallocDebug(FXMEM_SystemMgr* pMgr, void* pointer, size_t size, int flags, FX_LPCSTR file, int line) argument
57 return ((CFXMEM_FixedMgr*)pMgr->user)->Realloc(pointer, size);
59 static void FixedFree(FXMEM_SystemMgr* pMgr, void* pointer, int flags) argument
61 ((CFXMEM_FixedMgr*)pMgr->user)->Free(pointer);
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-internal.h132 // expression is a null pointer literal (i.e. NULL or any 0-valued
142 // a null pointer literal. Therefore, we know that x is a null
143 // pointer literal if and only if the first version is picked by the
149 // null pointer literal (i.e. NULL or any 0-valued compile-time
186 // Converts a streamable value to a String. A NULL pointer is
210 T* pointer) {
211 return StreamableToString(static_cast<const void*>(pointer));
240 inline String FormatForFailureMessage(T* pointer) { argument
241 return StreamableToString(static_cast<const void*>(pointer));
252 // rather than a pointer
209 FormatValueForFailureMessage(internal::true_type , T* pointer) argument
[all...]
/external/protobuf/src/google/protobuf/
H A Drepeated_field.h105 // Gets the underlying array. This pointer is possibly invalidated by
332 // resizes the pointer array; it doesn't allocate any objects. If the
338 // Gets the underlying array. This pointer is possibly invalidated by
368 // The spaced used just by the pointer array, not counting the objects pointed
735 // Make room for the new pointer.
741 // There is no more space in the pointer array because it contains some
936 typedef typename superclass::pointer pointer; typedef in class:google::protobuf::internal::RepeatedPtrIterator
955 pointer operator->() const { return &(operator*()); }
1024 typedef typename superclass::pointer pointe typedef in class:google::protobuf::internal::RepeatedPtrOverPtrsIterator
[all...]

Completed in 711 milliseconds

1234567891011>>