Searched refs:sp (Results 1 - 25 of 32) sorted by relevance

12

/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/
H A DDwarfInstructions.hpp229 pint_t *sp = stack; local
230 *(++sp) = initialStackValue;
234 for (pint_t *t = sp; t > stack; --t) {
235 fprintf(stderr, "sp[] = 0x%" PRIx64 "\n", (uint64_t)(*t));
247 *(++sp) = value;
254 value = *sp--;
255 *(++sp) = addressSpace.getP(value);
264 *(++sp) = value;
273 *(++sp) = (pint_t)svalue;
282 *(++sp)
[all...]
H A DUnwind-EHABI.cpp251 uint32_t sp; local
252 _Unwind_VRS_Get(context, _UVRSC_CORE, UNW_ARM_SP, _UVRSD_UINT32, &sp);
254 sp -= (((uint32_t)byte & 0x3f) << 2) + 4;
256 sp += ((uint32_t)byte << 2) + 4;
257 _Unwind_VRS_Set(context, _UVRSC_CORE, UNW_ARM_SP, _UVRSD_UINT32, &sp);
277 uint32_t sp;
279 _UVRSD_UINT32, &sp);
281 &sp);
318 uint32_t sp; local
320 &sp);
593 unw_word_t sp; local
915 uint32_t* sp; local
944 uint32_t* sp; local
[all...]
H A DUnwindLevel1.c53 unw_word_t sp; local
95 unw_get_reg(&cursor1, UNW_REG_SP, &sp);
96 exception_object->private_2 = (uintptr_t)sp;
149 unw_word_t sp; local
151 unw_get_reg(&cursor2, UNW_REG_SP, &sp);
169 ", func=%s, sp=0x%" PRIx64 ", lsda=0x%" PRIx64
172 functionName, sp, frameInfo.lsda,
181 if (sp == exception_object->private_2) {
194 if (sp == exception_object->private_2) {
209 unw_get_reg(&cursor2, UNW_REG_SP, &sp);
[all...]
H A DUnwindRegistersRestore.S257 lwz r1,12(r3) ; do sp now
288 mov sp,x1 ; restore sp
328 mov sp, r2
335 @ . the sp (r13) cannot be in the list
338 ldr sp, [lr, #52]
/ndk/sources/host-tools/make-3.81/
H A Dstrcache.c61 struct strcache *sp; local
73 for (sp = strcache; sp != NULL; sp = sp->next)
74 if (sp->bytesfree > len && (!best || best->bytesfree > sp->bytesfree))
75 best = sp;
137 struct strcache *sp; local
139 for (sp
188 const struct strcache *sp; local
[all...]
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/smart_ptr/detail/
H A Dspinlock_pt.hpp62 explicit scoped_lock( spinlock & sp ): sp_( sp )
64 sp.lock();
H A Dspinlock_sync.hpp70 explicit scoped_lock( spinlock & sp ): sp_( sp )
72 sp.lock();
/ndk/tests/build/issue20862-libpng-O0/jni/
H A Dpngrtran.c2392 png_bytep sp = row + (png_size_t)((row_width - 1) >> 3); local
2397 *dp = (png_byte)((*sp >> shift) & 0x01);
2402 sp--;
2416 png_bytep sp = row + (png_size_t)((row_width - 1) >> 2); local
2421 *dp = (png_byte)((*sp >> shift) & 0x03);
2426 sp--;
2439 png_bytep sp = row + (png_size_t)((row_width - 1) >> 1); local
2444 *dp = (png_byte)((*sp >> shift) & 0x0f);
2449 sp--;
2622 png_bytep sp local
2683 png_bytep sp = row; /* source */ local
2713 png_bytep sp = row + row_info->rowbytes; local
2732 png_bytep sp = row + row_info->rowbytes; local
2759 png_bytep sp = row + row_info->rowbytes; local
2776 png_bytep sp = row + row_info->rowbytes; local
2810 png_bytep sp = row + row_info->rowbytes; local
2833 png_bytep sp = row + row_info->rowbytes; local
2862 png_bytep sp = row + row_info->rowbytes; local
2877 png_bytep sp = row + row_info->rowbytes; local
2922 png_bytep sp = row + (png_size_t)row_width; local
2938 png_bytep sp = row + (png_size_t)row_width; local
2957 png_bytep sp = row + (png_size_t)row_width * 2; local
2976 png_bytep sp = row + (png_size_t)row_width * 2; local
2999 png_bytep sp = row + (png_size_t)row_width * 3; local
3017 png_bytep sp = row + (png_size_t)row_width * 3; local
3038 png_bytep sp = row + (png_size_t)row_width * 6; local
3061 png_bytep sp = row + (png_size_t)row_width * 6; local
3103 png_bytep sp = row + (png_size_t)row_width - 1; local
3116 png_bytep sp = row + (png_size_t)row_width * 2 - 1; local
3135 png_bytep sp = row + (png_size_t)row_width * 2 - 1; local
3149 png_bytep sp = row + (png_size_t)row_width * 4 - 1; local
3254 png_bytep sp = row; local
3293 png_bytep sp = row; local
3326 png_bytep sp = row; local
3377 png_bytep sp = row; local
3499 png_bytep sp; local
4226 png_bytep sp; local
4491 png_bytep sp, dp; local
4644 png_bytep sp, dp; local
4884 png_byte *sp = row + row_info->rowbytes; /* source, last byte + 1 */ local
4901 png_bytep sp, dp; local
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.obs/
H A Dlock.pass.cpp34 std::shared_ptr<A> sp = wp.lock(); local
35 assert(sp.use_count() == 0);
36 assert(sp.get() == 0);
42 std::shared_ptr<A> sp = wp.lock(); local
43 assert(sp.use_count() == 2);
44 assert(sp.get() == sp0.get());
52 std::shared_ptr<A> sp = wp.lock(); local
53 assert(sp.use_count() == 0);
54 assert(sp.get() == 0);
/ndk/tests/device/test-stlport_shared-exception/jni/
H A Domit-frame-pointer2.cpp7 void *sp = __builtin_alloca (0); local
H A Darraynew.cpp53 size_t *sp = ((size_t *) a) - 1; local
54 if (*sp != 11)
58 sp = ((size_t *) a) - 2;
59 if (*sp != sizeof (T))
83 size_t *sp = ((size_t *) a) - 1; local
84 if (*sp != 11)
88 sp = ((size_t *) a) - 2;
89 if (*sp != sizeof (T))
/ndk/tests/device/test-stlport_static-exception/jni/
H A Domit-frame-pointer2.cpp7 void *sp = __builtin_alloca (0); local
H A Darraynew.cpp53 size_t *sp = ((size_t *) a) - 1; local
54 if (*sp != 11)
58 sp = ((size_t *) a) - 2;
59 if (*sp != sizeof (T))
83 size_t *sp = ((size_t *) a) - 1; local
84 if (*sp != 11)
88 sp = ((size_t *) a) - 2;
89 if (*sp != sizeof (T))
/ndk/tests/build/ssax-instructions/jni/
H A Dtest.S12 sub sp, sp, #32 @ 0x20
15 str ip, [sp, #4]
16 str lr, [sp]
17 str r5, [sp, #16]
22 str r1, [sp, #20]
27 strd r2, [sp, #8]
29 str lr, [sp, #24]
44 ldrd r2, [sp, #8]
51 ldr lr, [sp, #2
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.general/
H A Dtuple.smartptr.pass.cpp19 std::tuple<std::shared_ptr<char>> sp; local
25 std::tuple<std::shared_ptr<char[]>> sp; local
31 std::tuple<std::shared_ptr<char[5]>> sp; local
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/detail/
H A Dbool_trait_def.hpp104 #define BOOST_TT_AUX_BOOL_TRAIT_SPEC1(trait,sp,C) \
105 template<> struct trait< sp > \
110 BOOST_MPL_AUX_LAMBDA_SUPPORT_SPEC(1,trait,(sp)) \
124 #define BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(trait,sp,C) \
125 template<> struct trait##_impl< sp > \
140 #define BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_1(param,trait,sp,C) \
141 template< param > struct trait< sp > \
149 #define BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_2(param1,param2,trait,sp,C) \
150 template< param1, param2 > struct trait< sp > \
186 # define BOOST_TT_AUX_BOOL_TRAIT_CV_SPEC1(trait,sp,valu
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/
H A Dweak_ptr.pass.cpp48 std::shared_ptr<A> sp(wp);
59 std::shared_ptr<A> sp(wp);
60 assert(sp.use_count() == 2);
61 assert(sp.get() == sp0.get());
71 std::shared_ptr<A> sp(wp);
/ndk/sources/host-tools/ndk-stack/regex/
H A Dengine.c296 char *sp; /* start of string matched by it */ local
307 sp = start;
329 sp++;
338 sp++;
349 rest = slow(m, sp, stp, ss, es);
357 assert(stp >= sp); /* it did work */
362 if (slow(m, sp, rest, ssub, esub) != NULL) {
363 if (dissect(m, sp, rest, ssub, esub) != rest) {
367 assert(sp == rest);
368 sp
479 char *sp; /* start of string matched by it */ local
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/output.streams/ostream.seeks/
H A Dseekp.pass.cpp32 seekpos(typename base::pos_type sp, std::ios_base::openmode which) argument
36 return sp;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/input.streams/istream.unformatted/
H A Dseekg.pass.cpp40 typename base::pos_type seekpos(typename base::pos_type sp, argument
44 return sp;
/ndk/tests/device/b8708181-Vector4/jni/
H A DVector4.cpp17 #define SP "sp"
23 #define SP "sp"
67 register void *sp __asm(SP);
68 printf("sp = %p\n", sp);
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/
H A Dis_pointer.hpp56 # define TT_AUX_BOOL_TRAIT_HELPER_PARTIAL_SPEC(helper,sp,result) \
57 template< typename T > struct helper<sp> \
/ndk/sources/cxx-stl/gabi++/src/
H A Dhelper_func_internal.h111 if (unwind_exception->barrier_cache.sp == _Unwind_GetGR(context, UNWIND_STACK_REG)) { \
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/smart_ptr/
H A Dshared_ptr.hpp658 boost::detail::spinlock & sp = boost::detail::spinlock_pool<2>::spinlock_for( p ); local
660 sp.lock();
662 sp.unlock();
674 boost::detail::spinlock & sp = boost::detail::spinlock_pool<2>::spinlock_for( p ); local
676 sp.lock();
682 sp.unlock();
690 sp.unlock();
/ndk/sources/cxx-stl/gabi++/include/
H A Dunwind-arm.h72 uint32_t sp; member in struct:_Unwind_Control_Block::__anon71

Completed in 6901 milliseconds

12