Searched refs:pointer (Results 51 - 75 of 454) sorted by relevance

1234567891011>>

/external/stlport/stlport/stl/
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_raw_storage_iter.h50 typedef void pointer; typedef in class:raw_storage_iterator
H A D_vector.h63 typedef _Tp* pointer; typedef in class:_Vector_base
64 typedef _STLP_alloc_proxy<pointer, _Tp, allocator_type> _AllocProxy;
87 if (_M_start != _STLP_DEFAULT_CONSTRUCTED(pointer))
95 pointer _M_start;
96 pointer _M_finish;
122 typedef value_type* pointer; typedef in class:vector
144 void _M_insert_overflow_aux(pointer __pos, const _Tp& __x, const __false_type& /*_Movable*/,
146 void _M_insert_overflow_aux(pointer __pos, const _Tp& __x, const __true_type& /*_Movable*/,
157 void _M_insert_overflow(pointer __pos, const _Tp& __x, const __false_type& /*_TrivialCopy*/,
164 void _M_insert_overflow(pointer __po
[all...]
/external/v8/src/
H A Dzone.h163 void operator delete(void* pointer, Zone* zone) { UNREACHABLE(); } argument
201 void operator delete(void* pointer) { UNREACHABLE(); } argument
202 void operator delete(void* pointer, Zone* zone) { UNREACHABLE(); } argument
/external/astl/include/
H A Dvector66 typedef _T* pointer;
71 typedef __wrapper_iterator<pointer,vector_type> iterator;
224 pointer mBegin;
235 // The pointer returned if the allocation succeeds shall be suitably
236 // aligned so that it may be assigned to a pointer to any type of
240 // must be able to contain a pointer, and thus will be 32-bit
262 mBegin = static_cast<pointer>(malloc(num * sizeof(value_type)));
293 pointer oldBegin = mBegin;
294 mBegin = static_cast<pointer>(
304 pointer newBegi
[all...]
H A Diterator56 typedef _Pointer pointer;
68 typedef typename _Iterator::pointer pointer;
80 typedef _T* pointer;
90 typedef const _T* pointer;
94 // Wrap an interator that is not a class (e.g pointer) into an
108 typedef typename iterator_traits<_Iterator>::pointer pointer;
120 pointer operator->() const { return mCurrent; }
229 // For wrapper iterators, android::iter::base(it) returns a pointer
[all...]
/external/chromium/base/
H A Dstack_container.h22 // merely copies the pointer to this shared source, so all allocators created
35 typedef typename std::allocator<T>::pointer pointer; typedef in class:StackAllocator
99 pointer allocate(size_type n, void* hint = 0) {
111 void deallocate(pointer p, size_type n) {
/external/dhcpcd/
H A Dif-linux-wireless.c75 iwr.u.essid.pointer = ssid;
/external/freetype/include/freetype/
H A Dftsystem.h159 * 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/v8/tools/gcmole/
H A DMakefile36 -fomit-frame-pointer -fno-exceptions -fno-rtti -fPIC \
/external/valgrind/main/exp-bbv/tests/arm-linux/
H A Dll.S56 ldrb r4,[r3],#+1 @ load a byte, increment pointer
69 ldrb r0,[r3],#+1 @ load a byte, increment pointer
70 ldrb r4,[r3],#+1 @ load a byte, increment pointer
89 add r7,r7,#1 @ advance pointer in text_buf
92 strb r4,[r1],#+1 @ store a byte, increment pointer
108 ldrb r4,[r3],#+1 @ load a byte, increment pointer
152 strb r3,[r10],#+1 @ store a linefeed, increment pointer
153 strb r0,[r10],#+1 @ NUL terminate, increment pointer
266 ldrb r5,[r7],#+1 @ load a byte, increment pointer
280 ldrb r5,[r7],#+1 @ load a byte, increment pointer
[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/tools/diagtool/
H A DDiagnosticNames.h63 typedef const value_type * pointer; typedef in class:diagtool::GroupRecord::group_iterator
68 inline pointer operator->() const {
/external/elfutils/libelf/
H A DAndroid.mk151 # to suppress the "pointer of type ‘void *’ used in arithmetic" warning
152 LOCAL_CFLAGS += -Wno-pointer-arith
182 # to suppress the "pointer of type ‘void *’ used in arithmetic" warning
183 LOCAL_CFLAGS += -Wno-pointer-arith
/external/icu4c/i18n/
H A Drbt_data.cpp49 new UnicodeString(*(const UnicodeString*)e->value.pointer);
54 variableNames.put(*(UnicodeString*)e->key.pointer, value, status);
/external/llvm/include/llvm/Support/
H A DCFG.h42 typedef typename super::pointer pointer; typedef in class:llvm::PredIterator
53 inline pointer operator*() const {
57 inline pointer *operator->() const { return &operator*(); }
114 typedef typename super::pointer pointer; typedef in class:llvm::SuccIterator
145 inline pointer operator*() const { return Term->getSuccessor(idx); }
146 inline pointer operator->() const { return operator*(); }
209 // inline pointer operator[](int offset) {
/external/chromium/chrome/common/extensions/docs/examples/extensions/news/css/
H A Dfeed.css19 cursor: pointer;
34 cursor: pointer;
49 cursor: pointer;
/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 Dmvctor_declaration_test.cpp86 typedef value_type * pointer; typedef in class:std::allocator
103 pointer address(reference __x) const { return &__x; }
105 pointer allocate(size_type, const void* = 0) { return 0; }
106 void deallocate(pointer, size_type) {}
108 void construct(pointer, const_reference) {}
109 void destroy(pointer) {}
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(); }
/external/chromium/base/third_party/dynamic_annotations/
H A Ddynamic_annotations.h97 latter when they share the same argument pointer.
152 #define ANNOTATE_PUBLISH_MEMORY_RANGE(pointer, size) \
154 pointer, size)
157 #define ANNOTATE_UNPUBLISH_MEMORY_RANGE(pointer, size) \
159 pointer, size)
162 #define ANNOTATE_SWAP_MEMORY_RANGE(pointer, size) \
164 ANNOTATE_UNPUBLISH_MEMORY_RANGE(pointer, size); \
165 ANNOTATE_PUBLISH_MEMORY_RANGE(pointer, size); \
232 /* Report that we may have a benign race at "pointer", with size
233 "sizeof(*(pointer))"
[all...]
/external/valgrind/dynamic_annotations/
H A Ddynamic_annotations.h94 latter when they share the same argument pointer.
151 #define ANNOTATE_PUBLISH_MEMORY_RANGE(pointer, size) \
153 pointer, size)
156 #define ANNOTATE_UNPUBLISH_MEMORY_RANGE(pointer, size) \
158 pointer, size)
161 #define ANNOTATE_SWAP_MEMORY_RANGE(pointer, size) \
163 ANNOTATE_UNPUBLISH_MEMORY_RANGE(pointer, size); \
164 ANNOTATE_PUBLISH_MEMORY_RANGE(pointer, size); \
231 /* Report that we may have a benign race at "pointer", with size
232 "sizeof(*(pointer))"
[all...]
/external/clang/test/SemaCXX/
H A Dexpression-traits.cpp131 // conv.ptr/1: A null pointer constant is an integral constant
159 // 5.1/3: The keyword "this" names a pointer to the object for
309 void expr_sub_1(int* pointer) argument
313 // shall have the type "pointer to T" and the other shall have
316 ASSERT_LVALUE(pointer[1]);
319 ASSERT_LVALUE(*(pointer+1));
393 // expr.dynamic.cast/2: If T is a pointer type, v shall be an
394 // rvalue of a pointer to complete class type, and the result is
422 // (referred) to by v, the result is a pointer (an lvalue referring)
428 // result is a pointer (a
464 expr_unary_op_1(int* pointer, struct incomplete* pointerToIncompleteType) argument
[all...]
/external/icu4c/common/
H A Dunistr_case.cpp58 // get the correct pointer
105 // This is very similar to how doReplace() keeps the old array pointer
223 const UnicodeString *str = (const UnicodeString*) key.pointer;
237 const UnicodeString *str1 = (const UnicodeString*) key1.pointer;
238 const UnicodeString *str2 = (const UnicodeString*) key2.pointer;
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/
H A DField.java27 /** This variable indicates the level of the pointer. */
33 /** This variable indicates if the field is a function pointer. */
96 Pointer pointer = new Pointer(pointerLevel, function, blenderContext);
97 pointer.fill(blenderInputStream);
98 value = pointer;
102 Pointer pointer = new Pointer(pointerLevel, function, blenderContext);
103 pointer.fill(blenderInputStream);
104 data[i] = pointer;
209 //veryfying if the name is a pointer
216 //veryfying if the name is a function pointer
[all...]

Completed in 615 milliseconds

1234567891011>>