Searched refs:ptr (Results 126 - 150 of 3627) sorted by relevance

1234567891011>>

/external/chromium_org/mojo/public/cpp/test_support/lib/
H A Dtest_support.cc17 for (char** ptr = names; *ptr != NULL; ++ptr) {
18 results.push_back(*ptr);
19 free(*ptr);
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGParserUtilities.h44 bool parseNumber(const LChar*& ptr, const LChar* end, float& number, WhitespaceMode = AllowLeadingAndTrailingWhitespace);
45 bool parseNumber(const UChar*& ptr, const UChar* end, float& number, WhitespaceMode = AllowLeadingAndTrailingWhitespace);
48 bool parseArcFlag(const LChar*& ptr, const LChar* end, bool& flag);
49 bool parseArcFlag(const UChar*& ptr, const UChar* end, bool& flag);
59 inline bool skipOptionalSVGSpaces(const CharType*& ptr, const CharType* end) argument
61 while (ptr < end && isHTMLSpace<CharType>(*ptr))
62 ptr++;
63 return ptr < end;
67 inline bool skipOptionalSVGSpacesOrDelimiter(const CharType*& ptr, cons argument
[all...]
/external/icu/icu4c/source/i18n/
H A Dsharednumberformat.h22 SharedNumberFormat(NumberFormat *nfToAdopt) : ptr(nfToAdopt) { }
24 const NumberFormat *get() const { return ptr; }
25 const NumberFormat *operator->() const { return ptr; }
26 const NumberFormat &operator*() const { return *ptr; }
28 NumberFormat *ptr; member in class:SharedNumberFormat
/external/valgrind/main/tests/
H A Dsys_mman.h21 void* ptr; local
25 ptr = mmap(0, pagesz, PROT_READ, MAP_ANONYMOUS|MAP_PRIVATE, -1, 0);
26 assert(ptr != (void*)-1);
27 r = munmap(ptr, pagesz);
29 return ptr;
/external/libcxx/test/depr/depr.auto.ptr/auto.ptr/auto.ptr.conv/
H A DAndroid.mk17 test_makefile := external/libcxx/test/depr/depr.auto.ptr/auto.ptr/auto.ptr.conv/Android.mk
19 test_name := depr/depr.auto.ptr/auto.ptr/auto.ptr.conv/assign_from_auto_ptr_ref
23 test_name := depr/depr.auto.ptr/auto.ptr/auto.ptr.conv/convert_from_auto_ptr_ref
27 test_name := depr/depr.auto.ptr/aut
[all...]
/external/libcxx/test/depr/depr.auto.ptr/auto.ptr/auto.ptr.members/
H A DAndroid.mk17 test_makefile := external/libcxx/test/depr/depr.auto.ptr/auto.ptr/auto.ptr.members/Android.mk
19 test_name := depr/depr.auto.ptr/auto.ptr/auto.ptr.members/release
23 test_name := depr/depr.auto.ptr/auto.ptr/auto.ptr.members/arrow
27 test_name := depr/depr.auto.ptr/aut
[all...]
/external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.observers/
H A DAndroid.mk17 test_makefile := external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.observers/Android.mk
19 test_name := utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.observers/get
23 test_name := utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.observers/explicit_bool
27 test_name := utilities/memory/unique.ptr/uniqu
[all...]
/external/chromium_org/third_party/freetype/include/freetype/internal/
H A Dftmemory.h144 #define FT_MEM_ALLOC( ptr, size ) \
145 FT_ASSIGNP_INNER( ptr, ft_mem_alloc( memory, \
149 #define FT_MEM_FREE( ptr ) \
151 ft_mem_free( memory, (ptr) ); \
152 (ptr) = NULL; \
155 #define FT_MEM_NEW( ptr ) \
156 FT_MEM_ALLOC( ptr, sizeof ( *(ptr) ) )
158 #define FT_MEM_REALLOC( ptr, cursz, newsz ) \
159 FT_ASSIGNP_INNER( ptr, ft_mem_reallo
[all...]
/external/freetype/include/internal/
H A Dftmemory.h144 #define FT_MEM_ALLOC( ptr, size ) \
145 FT_ASSIGNP_INNER( ptr, ft_mem_alloc( memory, \
149 #define FT_MEM_FREE( ptr ) \
151 ft_mem_free( memory, (ptr) ); \
152 (ptr) = NULL; \
155 #define FT_MEM_NEW( ptr ) \
156 FT_MEM_ALLOC( ptr, sizeof ( *(ptr) ) )
158 #define FT_MEM_REALLOC( ptr, cursz, newsz ) \
159 FT_ASSIGNP_INNER( ptr, ft_mem_reallo
[all...]
/external/chromium_org/v8/src/base/
H A Datomicops.h60 // result = *ptr;
61 // if (*ptr == old_value)
62 // *ptr = new_value;
65 // I.e., replace "*ptr" with "new_value" if "*ptr" used to be "old_value".
66 // Always return the old value of "*ptr"
69 Atomic32 NoBarrier_CompareAndSwap(volatile Atomic32* ptr,
73 // Atomically store new_value into *ptr, returning the previous value held in
74 // *ptr. This routine implies no memory barriers.
75 Atomic32 NoBarrier_AtomicExchange(volatile Atomic32* ptr, Atomic3
[all...]
/external/llvm/lib/Support/
H A DAtomic.cpp43 sys::cas_flag sys::CompareAndSwap(volatile sys::cas_flag* ptr, argument
47 sys::cas_flag result = *ptr;
49 *ptr = new_value;
52 return __sync_val_compare_and_swap(ptr, old_value, new_value);
54 return InterlockedCompareExchange(ptr, new_value, old_value);
60 sys::cas_flag sys::AtomicIncrement(volatile sys::cas_flag* ptr) { argument
62 ++(*ptr);
63 return *ptr;
65 return __sync_add_and_fetch(ptr, 1);
67 return InterlockedIncrement(ptr);
73 AtomicDecrement(volatile sys::cas_flag* ptr) argument
86 AtomicAdd(volatile sys::cas_flag* ptr, sys::cas_flag val) argument
99 AtomicMul(volatile sys::cas_flag* ptr, sys::cas_flag val) argument
109 AtomicDiv(volatile sys::cas_flag* ptr, sys::cas_flag val) argument
[all...]
/external/nist-sip/java/gov/nist/core/
H A DStringTokenizer.java45 protected int ptr; field in class:StringTokenizer
54 ptr = 0;
58 int startIdx = ptr;
60 while (ptr < bufferLen) {
61 char c = buffer.charAt(ptr);
62 ptr++;
68 return buffer.substring(startIdx, ptr);
72 return ptr < bufferLen;
113 int startIdx = ptr;
114 while (ptr < bufferLe
[all...]
/external/chromium_org/base/
H A Datomicops_internals_arm64_gcc.h35 inline Atomic32 NoBarrier_CompareAndSwap(volatile Atomic32* ptr, argument
43 "ldxr %w[prev], %[ptr] \n\t" // Load the previous value.
46 "stxr %w[temp], %w[new_value], %[ptr] \n\t" // Try to store the new value.
51 [ptr]"+Q" (*ptr)
60 inline Atomic32 NoBarrier_AtomicExchange(volatile Atomic32* ptr, argument
67 "ldxr %w[result], %[ptr] \n\t" // Load the previous value.
68 "stxr %w[temp], %w[new_value], %[ptr] \n\t" // Try to store the new value.
72 [ptr]"+Q" (*ptr)
80 NoBarrier_AtomicIncrement(volatile Atomic32* ptr, Atomic32 increment) argument
101 Barrier_AtomicIncrement(volatile Atomic32* ptr, Atomic32 increment) argument
110 Acquire_CompareAndSwap(volatile Atomic32* ptr, Atomic32 old_value, Atomic32 new_value) argument
119 Release_CompareAndSwap(volatile Atomic32* ptr, Atomic32 old_value, Atomic32 new_value) argument
128 NoBarrier_Store(volatile Atomic32* ptr, Atomic32 value) argument
132 Acquire_Store(volatile Atomic32* ptr, Atomic32 value) argument
137 Release_Store(volatile Atomic32* ptr, Atomic32 value) argument
146 NoBarrier_Load(volatile const Atomic32* ptr) argument
150 Acquire_Load(volatile const Atomic32* ptr) argument
163 Release_Load(volatile const Atomic32* ptr) argument
171 NoBarrier_CompareAndSwap(volatile Atomic64* ptr, Atomic64 old_value, Atomic64 new_value) argument
196 NoBarrier_AtomicExchange(volatile Atomic64* ptr, Atomic64 new_value) argument
216 NoBarrier_AtomicIncrement(volatile Atomic64* ptr, Atomic64 increment) argument
237 Barrier_AtomicIncrement(volatile Atomic64* ptr, Atomic64 increment) argument
246 Acquire_CompareAndSwap(volatile Atomic64* ptr, Atomic64 old_value, Atomic64 new_value) argument
255 Release_CompareAndSwap(volatile Atomic64* ptr, Atomic64 old_value, Atomic64 new_value) argument
264 NoBarrier_Store(volatile Atomic64* ptr, Atomic64 value) argument
268 Acquire_Store(volatile Atomic64* ptr, Atomic64 value) argument
273 Release_Store(volatile Atomic64* ptr, Atomic64 value) argument
282 NoBarrier_Load(volatile const Atomic64* ptr) argument
286 Acquire_Load(volatile const Atomic64* ptr) argument
299 Release_Load(volatile const Atomic64* ptr) argument
[all...]
H A Datomicops_internals_tsan.h16 inline Atomic32 NoBarrier_CompareAndSwap(volatile Atomic32* ptr, argument
20 __tsan_atomic32_compare_exchange_strong(ptr, &cmp, new_value,
25 inline Atomic32 NoBarrier_AtomicExchange(volatile Atomic32* ptr, argument
27 return __tsan_atomic32_exchange(ptr, new_value,
31 inline Atomic32 Acquire_AtomicExchange(volatile Atomic32* ptr, argument
33 return __tsan_atomic32_exchange(ptr, new_value,
37 inline Atomic32 Release_AtomicExchange(volatile Atomic32* ptr, argument
39 return __tsan_atomic32_exchange(ptr, new_value,
43 inline Atomic32 NoBarrier_AtomicIncrement(volatile Atomic32* ptr, argument
45 return increment + __tsan_atomic32_fetch_add(ptr, incremen
49 Barrier_AtomicIncrement(volatile Atomic32* ptr, Atomic32 increment) argument
55 Acquire_CompareAndSwap(volatile Atomic32* ptr, Atomic32 old_value, Atomic32 new_value) argument
64 Release_CompareAndSwap(volatile Atomic32* ptr, Atomic32 old_value, Atomic32 new_value) argument
73 NoBarrier_Store(volatile Atomic32* ptr, Atomic32 value) argument
77 Acquire_Store(volatile Atomic32* ptr, Atomic32 value) argument
82 Release_Store(volatile Atomic32* ptr, Atomic32 value) argument
86 NoBarrier_Load(volatile const Atomic32* ptr) argument
90 Acquire_Load(volatile const Atomic32* ptr) argument
94 Release_Load(volatile const Atomic32* ptr) argument
99 NoBarrier_CompareAndSwap(volatile Atomic64* ptr, Atomic64 old_value, Atomic64 new_value) argument
108 NoBarrier_AtomicExchange(volatile Atomic64* ptr, Atomic64 new_value) argument
113 Acquire_AtomicExchange(volatile Atomic64* ptr, Atomic64 new_value) argument
118 Release_AtomicExchange(volatile Atomic64* ptr, Atomic64 new_value) argument
123 NoBarrier_AtomicIncrement(volatile Atomic64* ptr, Atomic64 increment) argument
129 Barrier_AtomicIncrement(volatile Atomic64* ptr, Atomic64 increment) argument
135 NoBarrier_Store(volatile Atomic64* ptr, Atomic64 value) argument
139 Acquire_Store(volatile Atomic64* ptr, Atomic64 value) argument
144 Release_Store(volatile Atomic64* ptr, Atomic64 value) argument
148 NoBarrier_Load(volatile const Atomic64* ptr) argument
152 Acquire_Load(volatile const Atomic64* ptr) argument
156 Release_Load(volatile const Atomic64* ptr) argument
161 Acquire_CompareAndSwap(volatile Atomic64* ptr, Atomic64 old_value, Atomic64 new_value) argument
170 Release_CompareAndSwap(volatile Atomic64* ptr, Atomic64 old_value, Atomic64 new_value) argument
[all...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
H A Datomicops_internals_arm64_gcc.h52 inline Atomic32 NoBarrier_CompareAndSwap(volatile Atomic32* ptr, argument
60 "ldxr %w[prev], %[ptr] \n\t" // Load the previous value.
63 "stxr %w[temp], %w[new_value], %[ptr] \n\t" // Try to store the new value.
68 [ptr]"+Q" (*ptr)
77 inline Atomic32 NoBarrier_AtomicExchange(volatile Atomic32* ptr, argument
84 "ldxr %w[result], %[ptr] \n\t" // Load the previous value.
85 "stxr %w[temp], %w[new_value], %[ptr] \n\t" // Try to store the new value.
89 [ptr]"+Q" (*ptr)
97 NoBarrier_AtomicIncrement(volatile Atomic32* ptr, Atomic32 increment) argument
118 Barrier_AtomicIncrement(volatile Atomic32* ptr, Atomic32 increment) argument
127 Acquire_CompareAndSwap(volatile Atomic32* ptr, Atomic32 old_value, Atomic32 new_value) argument
136 Release_CompareAndSwap(volatile Atomic32* ptr, Atomic32 old_value, Atomic32 new_value) argument
145 NoBarrier_Store(volatile Atomic32* ptr, Atomic32 value) argument
149 Acquire_Store(volatile Atomic32* ptr, Atomic32 value) argument
154 Release_Store(volatile Atomic32* ptr, Atomic32 value) argument
163 NoBarrier_Load(volatile const Atomic32* ptr) argument
167 Acquire_Load(volatile const Atomic32* ptr) argument
180 Release_Load(volatile const Atomic32* ptr) argument
188 NoBarrier_CompareAndSwap(volatile Atomic64* ptr, Atomic64 old_value, Atomic64 new_value) argument
213 NoBarrier_AtomicExchange(volatile Atomic64* ptr, Atomic64 new_value) argument
233 NoBarrier_AtomicIncrement(volatile Atomic64* ptr, Atomic64 increment) argument
254 Barrier_AtomicIncrement(volatile Atomic64* ptr, Atomic64 increment) argument
263 Acquire_CompareAndSwap(volatile Atomic64* ptr, Atomic64 old_value, Atomic64 new_value) argument
272 Release_CompareAndSwap(volatile Atomic64* ptr, Atomic64 old_value, Atomic64 new_value) argument
281 NoBarrier_Store(volatile Atomic64* ptr, Atomic64 value) argument
285 Acquire_Store(volatile Atomic64* ptr, Atomic64 value) argument
290 Release_Store(volatile Atomic64* ptr, Atomic64 value) argument
299 NoBarrier_Load(volatile const Atomic64* ptr) argument
303 Acquire_Load(volatile const Atomic64* ptr) argument
316 Release_Load(volatile const Atomic64* ptr) argument
[all...]
H A Datomicops_internals_tsan.h46 inline Atomic32 NoBarrier_CompareAndSwap(volatile Atomic32 *ptr, argument
50 __tsan_atomic32_compare_exchange_strong(ptr, &cmp, new_value,
55 inline Atomic32 NoBarrier_AtomicExchange(volatile Atomic32 *ptr, argument
57 return __tsan_atomic32_exchange(ptr, new_value,
61 inline Atomic32 Acquire_AtomicExchange(volatile Atomic32 *ptr, argument
63 return __tsan_atomic32_exchange(ptr, new_value,
67 inline Atomic32 Release_AtomicExchange(volatile Atomic32 *ptr, argument
69 return __tsan_atomic32_exchange(ptr, new_value,
73 inline Atomic32 NoBarrier_AtomicIncrement(volatile Atomic32 *ptr, argument
75 return increment + __tsan_atomic32_fetch_add(ptr, incremen
79 Barrier_AtomicIncrement(volatile Atomic32 *ptr, Atomic32 increment) argument
85 Acquire_CompareAndSwap(volatile Atomic32 *ptr, Atomic32 old_value, Atomic32 new_value) argument
94 Release_CompareAndSwap(volatile Atomic32 *ptr, Atomic32 old_value, Atomic32 new_value) argument
103 NoBarrier_Store(volatile Atomic32 *ptr, Atomic32 value) argument
107 Acquire_Store(volatile Atomic32 *ptr, Atomic32 value) argument
112 Release_Store(volatile Atomic32 *ptr, Atomic32 value) argument
116 NoBarrier_Load(volatile const Atomic32 *ptr) argument
120 Acquire_Load(volatile const Atomic32 *ptr) argument
124 Release_Load(volatile const Atomic32 *ptr) argument
129 NoBarrier_CompareAndSwap(volatile Atomic64 *ptr, Atomic64 old_value, Atomic64 new_value) argument
138 NoBarrier_AtomicExchange(volatile Atomic64 *ptr, Atomic64 new_value) argument
143 Acquire_AtomicExchange(volatile Atomic64 *ptr, Atomic64 new_value) argument
148 Release_AtomicExchange(volatile Atomic64 *ptr, Atomic64 new_value) argument
153 NoBarrier_AtomicIncrement(volatile Atomic64 *ptr, Atomic64 increment) argument
159 Barrier_AtomicIncrement(volatile Atomic64 *ptr, Atomic64 increment) argument
165 NoBarrier_Store(volatile Atomic64 *ptr, Atomic64 value) argument
169 Acquire_Store(volatile Atomic64 *ptr, Atomic64 value) argument
174 Release_Store(volatile Atomic64 *ptr, Atomic64 value) argument
178 NoBarrier_Load(volatile const Atomic64 *ptr) argument
182 Acquire_Load(volatile const Atomic64 *ptr) argument
186 Release_Load(volatile const Atomic64 *ptr) argument
191 Acquire_CompareAndSwap(volatile Atomic64 *ptr, Atomic64 old_value, Atomic64 new_value) argument
200 Release_CompareAndSwap(volatile Atomic64 *ptr, Atomic64 old_value, Atomic64 new_value) argument
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Datomicops-internals-arm-v6plus.h62 inline Atomic32 NoBarrier_CompareAndSwap(volatile Atomic32* ptr, argument
76 : "=&r" (res), "=&r" (oldval), "+Qo" (*ptr)
77 : "r" (ptr), "Ir" (old_value), "r" (new_value)
83 inline Atomic32 NoBarrier_AtomicExchange(volatile Atomic32* ptr, argument
93 : "r" (ptr), "r" (new_value)
98 inline Atomic32 NoBarrier_AtomicIncrement(volatile Atomic32* ptr, argument
109 : "r" (ptr), "r"(increment)
118 inline Atomic32 Barrier_AtomicIncrement(volatile Atomic32* ptr, argument
130 : "r" (ptr), "r"(increment)
135 inline Atomic32 Acquire_CompareAndSwap(volatile Atomic32* ptr, argument
143 Release_CompareAndSwap(volatile Atomic32* ptr, Atomic32 old_value, Atomic32 new_value) argument
150 NoBarrier_Store(volatile Atomic32* ptr, Atomic32 value) argument
154 Acquire_Store(volatile Atomic32* ptr, Atomic32 value) argument
159 Release_Store(volatile Atomic32* ptr, Atomic32 value) argument
164 NoBarrier_Load(volatile const Atomic32* ptr) argument
168 Acquire_Load(volatile const Atomic32* ptr) argument
174 Release_Load(volatile const Atomic32* ptr) argument
185 NoBarrier_CompareAndSwap(volatile Atomic64* ptr, Atomic64 old_value, Atomic64 new_value) argument
208 NoBarrier_AtomicExchange(volatile Atomic64* ptr, Atomic64 new_value) argument
224 NoBarrier_AtomicIncrement(volatile Atomic64* ptr, Atomic64 increment) argument
242 Barrier_AtomicIncrement(volatile Atomic64* ptr, Atomic64 increment) argument
261 NoBarrier_Store(volatile Atomic64* ptr, Atomic64 value) argument
276 NoBarrier_Load(volatile const Atomic64* ptr) argument
294 NoBarrier_CompareAndSwap(volatile Atomic64* ptr, Atomic64 old_value, Atomic64 new_value) argument
301 NoBarrier_AtomicExchange(volatile Atomic64* ptr, Atomic64 new_value) argument
307 NoBarrier_AtomicIncrement(volatile Atomic64* ptr, Atomic64 increment) argument
313 Barrier_AtomicIncrement(volatile Atomic64* ptr, Atomic64 increment) argument
319 NoBarrier_Store(volatile Atomic64* ptr, Atomic64 value) argument
323 NoBarrier_Load(volatile const Atomic64* ptr) argument
330 Acquire_Store(volatile Atomic64* ptr, Atomic64 value) argument
335 Release_Store(volatile Atomic64* ptr, Atomic64 value) argument
340 Acquire_Load(volatile const Atomic64* ptr) argument
346 Release_Load(volatile const Atomic64* ptr) argument
351 Acquire_CompareAndSwap(volatile Atomic64* ptr, Atomic64 old_value, Atomic64 new_value) argument
359 Release_CompareAndSwap(volatile Atomic64* ptr, Atomic64 old_value, Atomic64 new_value) argument
[all...]
H A Datomicops-internals-linuxppc.h142 inline Atomic32 NoBarrier_CompareAndSwap(volatile Atomic32 *ptr, argument
148 const_cast<Atomic32*>(ptr))) {
151 prev_value = *ptr;
156 inline Atomic32 NoBarrier_AtomicExchange(volatile Atomic32 *ptr, argument
160 old_value = *ptr;
162 const_cast<Atomic32*>(ptr)));
166 inline Atomic32 NoBarrier_AtomicIncrement(volatile Atomic32 *ptr, argument
168 return OSAtomicAdd32(increment, const_cast<Atomic32*>(ptr));
171 inline Atomic32 Barrier_AtomicIncrement(volatile Atomic32 *ptr, argument
173 return OSAtomicAdd32Barrier(increment, const_cast<Atomic32*>(ptr));
176 Acquire_CompareAndSwap(volatile Atomic32 *ptr, Atomic32 old_value, Atomic32 new_value) argument
190 Release_CompareAndSwap(volatile Atomic32 *ptr, Atomic32 old_value, Atomic32 new_value) argument
273 NoBarrier_CompareAndSwap(volatile Atomic64 *ptr, Atomic64 old_value, Atomic64 new_value) argument
287 NoBarrier_AtomicExchange(volatile Atomic64 *ptr, Atomic64 new_value) argument
297 NoBarrier_AtomicIncrement(volatile Atomic64 *ptr, Atomic64 increment) argument
302 Barrier_AtomicIncrement(volatile Atomic64 *ptr, Atomic64 increment) argument
307 Acquire_CompareAndSwap(volatile Atomic64 *ptr, Atomic64 old_value, Atomic64 new_value) argument
321 Release_CompareAndSwap(volatile Atomic64 *ptr, Atomic64 old_value, Atomic64 new_value) argument
337 NoBarrier_Store(volatile Atomic32 *ptr, Atomic32 value) argument
341 Acquire_Store(volatile Atomic32 *ptr, Atomic32 value) argument
349 Release_Store(volatile Atomic32 *ptr, Atomic32 value) argument
354 NoBarrier_Load(volatile const Atomic32 *ptr) argument
358 Acquire_Load(volatile const Atomic32 *ptr) argument
364 Release_Load(volatile const Atomic32 *ptr) argument
376 NoBarrier_Store(volatile Atomic64 *ptr, Atomic64 value) argument
380 Acquire_Store(volatile Atomic64 *ptr, Atomic64 value) argument
388 Release_Store(volatile Atomic64 *ptr, Atomic64 value) argument
393 NoBarrier_Load(volatile const Atomic64 *ptr) argument
397 Acquire_Load(volatile const Atomic64 *ptr) argument
403 Release_Load(volatile const Atomic64 *ptr) argument
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Datomicops-internals-arm-v6plus.h61 inline Atomic32 NoBarrier_CompareAndSwap(volatile Atomic32* ptr, argument
75 : "=&r" (res), "=&r" (oldval), "+Qo" (*ptr)
76 : "r" (ptr), "Ir" (old_value), "r" (new_value)
82 inline Atomic32 NoBarrier_AtomicExchange(volatile Atomic32* ptr, argument
92 : "r" (ptr), "r" (new_value)
97 inline Atomic32 NoBarrier_AtomicIncrement(volatile Atomic32* ptr, argument
108 : "r" (ptr), "r"(increment)
117 inline Atomic32 Barrier_AtomicIncrement(volatile Atomic32* ptr, argument
129 : "r" (ptr), "r"(increment)
134 inline Atomic32 Acquire_CompareAndSwap(volatile Atomic32* ptr, argument
142 Release_CompareAndSwap(volatile Atomic32* ptr, Atomic32 old_value, Atomic32 new_value) argument
149 NoBarrier_Store(volatile Atomic32* ptr, Atomic32 value) argument
153 Acquire_Store(volatile Atomic32* ptr, Atomic32 value) argument
158 Release_Store(volatile Atomic32* ptr, Atomic32 value) argument
163 NoBarrier_Load(volatile const Atomic32* ptr) argument
167 Acquire_Load(volatile const Atomic32* ptr) argument
173 Release_Load(volatile const Atomic32* ptr) argument
184 NoBarrier_CompareAndSwap(volatile Atomic64* ptr, Atomic64 old_value, Atomic64 new_value) argument
207 NoBarrier_AtomicExchange(volatile Atomic64* ptr, Atomic64 new_value) argument
223 NoBarrier_AtomicIncrement(volatile Atomic64* ptr, Atomic64 increment) argument
241 Barrier_AtomicIncrement(volatile Atomic64* ptr, Atomic64 increment) argument
260 NoBarrier_Store(volatile Atomic64* ptr, Atomic64 value) argument
275 NoBarrier_Load(volatile const Atomic64* ptr) argument
293 NoBarrier_CompareAndSwap(volatile Atomic64* ptr, Atomic64 old_value, Atomic64 new_value) argument
300 NoBarrier_AtomicExchange(volatile Atomic64* ptr, Atomic64 new_value) argument
306 NoBarrier_AtomicIncrement(volatile Atomic64* ptr, Atomic64 increment) argument
312 Barrier_AtomicIncrement(volatile Atomic64* ptr, Atomic64 increment) argument
318 NoBarrier_Store(volatile Atomic64* ptr, Atomic64 value) argument
322 NoBarrier_Load(volatile const Atomic64* ptr) argument
329 Acquire_Store(volatile Atomic64* ptr, Atomic64 value) argument
334 Release_Store(volatile Atomic64* ptr, Atomic64 value) argument
339 Acquire_Load(volatile const Atomic64* ptr) argument
345 Release_Load(volatile const Atomic64* ptr) argument
350 Acquire_CompareAndSwap(volatile Atomic64* ptr, Atomic64 old_value, Atomic64 new_value) argument
358 Release_CompareAndSwap(volatile Atomic64* ptr, Atomic64 old_value, Atomic64 new_value) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_struct.c47 LLVMValueRef ptr,
53 assert(LLVMGetTypeKind(LLVMTypeOf(ptr)) == LLVMPointerTypeKind);
54 assert(LLVMGetTypeKind(LLVMGetElementType(LLVMTypeOf(ptr))) == LLVMStructTypeKind);
57 member_ptr = LLVMBuildGEP(gallivm->builder, ptr, indices, Elements(indices), "");
58 lp_build_name(member_ptr, "%s.%s_ptr", LLVMGetValueName(ptr), name);
65 LLVMValueRef ptr,
71 assert(LLVMGetTypeKind(LLVMTypeOf(ptr)) == LLVMPointerTypeKind);
72 assert(LLVMGetTypeKind(LLVMGetElementType(LLVMTypeOf(ptr))) == LLVMStructTypeKind);
73 member_ptr = lp_build_struct_get_ptr(gallivm, ptr, member, name);
75 lp_build_name(res, "%s.%s", LLVMGetValueName(ptr), nam
46 lp_build_struct_get_ptr(struct gallivm_state *gallivm, LLVMValueRef ptr, unsigned member, const char *name) argument
64 lp_build_struct_get(struct gallivm_state *gallivm, LLVMValueRef ptr, unsigned member, const char *name) argument
81 lp_build_array_get_ptr(struct gallivm_state *gallivm, LLVMValueRef ptr, LLVMValueRef index) argument
101 lp_build_array_get(struct gallivm_state *gallivm, LLVMValueRef ptr, LLVMValueRef index) argument
119 lp_build_array_set(struct gallivm_state *gallivm, LLVMValueRef ptr, LLVMValueRef index, LLVMValueRef value) argument
133 lp_build_pointer_get(LLVMBuilderRef builder, LLVMValueRef ptr, LLVMValueRef index) argument
150 lp_build_pointer_get_unaligned(LLVMBuilderRef builder, LLVMValueRef ptr, LLVMValueRef index, unsigned alignment) argument
169 lp_build_pointer_set(LLVMBuilderRef builder, LLVMValueRef ptr, LLVMValueRef index, LLVMValueRef value) argument
181 lp_build_pointer_set_unaligned(LLVMBuilderRef builder, LLVMValueRef ptr, LLVMValueRef index, LLVMValueRef value, unsigned alignment) argument
[all...]
/external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.dltr/unique.ptr.dltr.dflt/
H A DAndroid.mk17 test_makefile := external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.dltr/unique.ptr.dltr.dflt/Android.mk
19 test_name := utilities/memory/unique.ptr/unique.ptr.dltr/unique.ptr.dltr.dflt/default
23 test_name := utilities/memory/unique.ptr/unique.ptr.dltr/unique.ptr.dltr.dflt/convert_ctor
/external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/
H A DAndroid.mk17 test_makefile := external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/Android.mk
19 test_name := utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/pointer01
23 test_name := utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/pointer_deleter03
27 test_name := utilities/memory/unique.ptr/uniqu
[all...]
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_struct.c47 LLVMValueRef ptr,
53 assert(LLVMGetTypeKind(LLVMTypeOf(ptr)) == LLVMPointerTypeKind);
54 assert(LLVMGetTypeKind(LLVMGetElementType(LLVMTypeOf(ptr))) == LLVMStructTypeKind);
57 member_ptr = LLVMBuildGEP(gallivm->builder, ptr, indices, Elements(indices), "");
58 lp_build_name(member_ptr, "%s.%s_ptr", LLVMGetValueName(ptr), name);
65 LLVMValueRef ptr,
71 assert(LLVMGetTypeKind(LLVMTypeOf(ptr)) == LLVMPointerTypeKind);
72 assert(LLVMGetTypeKind(LLVMGetElementType(LLVMTypeOf(ptr))) == LLVMStructTypeKind);
73 member_ptr = lp_build_struct_get_ptr(gallivm, ptr, member, name);
75 lp_build_name(res, "%s.%s", LLVMGetValueName(ptr), nam
46 lp_build_struct_get_ptr(struct gallivm_state *gallivm, LLVMValueRef ptr, unsigned member, const char *name) argument
64 lp_build_struct_get(struct gallivm_state *gallivm, LLVMValueRef ptr, unsigned member, const char *name) argument
81 lp_build_array_get_ptr(struct gallivm_state *gallivm, LLVMValueRef ptr, LLVMValueRef index) argument
101 lp_build_array_get(struct gallivm_state *gallivm, LLVMValueRef ptr, LLVMValueRef index) argument
119 lp_build_array_set(struct gallivm_state *gallivm, LLVMValueRef ptr, LLVMValueRef index, LLVMValueRef value) argument
133 lp_build_pointer_get(LLVMBuilderRef builder, LLVMValueRef ptr, LLVMValueRef index) argument
150 lp_build_pointer_get_unaligned(LLVMBuilderRef builder, LLVMValueRef ptr, LLVMValueRef index, unsigned alignment) argument
169 lp_build_pointer_set(LLVMBuilderRef builder, LLVMValueRef ptr, LLVMValueRef index, LLVMValueRef value) argument
181 lp_build_pointer_set_unaligned(LLVMBuilderRef builder, LLVMValueRef ptr, LLVMValueRef index, LLVMValueRef value, unsigned alignment) argument
[all...]
/external/chromium_org/base/allocator/
H A Dwin_allocator.cc36 void* win_heap_realloc(void* ptr, size_t size) { argument
37 if (!ptr)
40 win_heap_free(ptr);
43 return HeapReAlloc(win_heap, 0, ptr, size);
46 size_t win_heap_msize(void* ptr) { argument
47 return HeapSize(win_heap, 0, ptr);
61 void* ptr = win_heap_malloc(allocation_size); local
62 if (!ptr)
63 return ptr;
65 char* aligned_ptr = static_cast<char*>(ptr)
73 win_heap_memalign_free(void* ptr) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
H A Di915_debug.c86 unsigned *ptr = (unsigned *)(stream->ptr + stream->offset); local
89 PRINTF(stream, "Error - zero length packet (0x%08x)\n", stream->ptr[0]);
100 PRINTF(stream, "\t0x%08x\n", ptr[i]);
132 unsigned *ptr = (unsigned *)(stream->ptr + stream->offset); local
133 const char *prim = get_prim_name( ptr[0] );
139 PRINTF(stream, "\t0x%08x\n", ptr[0]);
142 PRINTF(stream, "\t0x%08x // %f\n", ptr[i], *(float *)&ptr[
160 unsigned *ptr = (unsigned *)(stream->ptr + stream->offset); local
181 unsigned *ptr = (unsigned *)(stream->ptr + stream->offset); local
205 unsigned *ptr = (unsigned *)(stream->ptr + stream->offset); local
284 unsigned *ptr = (unsigned *)(stream->ptr + stream->offset); local
391 unsigned *ptr = (unsigned *)(stream->ptr + stream->offset); local
509 unsigned *ptr = (unsigned *)(stream->ptr + stream->offset); local
532 unsigned *ptr = (unsigned *)(stream->ptr + stream->offset); local
553 unsigned *ptr = (unsigned *)(stream->ptr + stream->offset); local
574 unsigned *ptr = (unsigned *)(stream->ptr + stream->offset); local
626 unsigned *ptr = (unsigned *)(stream->ptr + stream->offset); local
686 unsigned *ptr = (unsigned *)(stream->ptr + stream->offset); local
721 unsigned *ptr = (unsigned *)(stream->ptr + stream->offset); local
749 unsigned *ptr = (unsigned *)(stream->ptr + stream->offset); local
[all...]

Completed in 1214 milliseconds

1234567891011>>