/ndk/tests/build/issue20862-libpng-O0/jni/ |
D | pngrtran.c | 2392 png_bytep sp = row + (png_size_t)((row_width - 1) >> 3); in png_do_unpack() local 2397 *dp = (png_byte)((*sp >> shift) & 0x01); in png_do_unpack() 2402 sp--; in png_do_unpack() 2416 png_bytep sp = row + (png_size_t)((row_width - 1) >> 2); in png_do_unpack() local 2421 *dp = (png_byte)((*sp >> shift) & 0x03); in png_do_unpack() 2426 sp--; in png_do_unpack() 2439 png_bytep sp = row + (png_size_t)((row_width - 1) >> 1); in png_do_unpack() local 2444 *dp = (png_byte)((*sp >> shift) & 0x0f); in png_do_unpack() 2449 sp--; in png_do_unpack() 2622 png_bytep sp = row; /* source */ in png_do_scale_16_to_8() local [all …]
|
/ndk/sources/host-tools/make-3.81/ |
D | strcache.c | 61 struct strcache *sp; in add_string() local 73 for (sp = strcache; sp != NULL; sp = sp->next) in add_string() 74 if (sp->bytesfree > len && (!best || best->bytesfree > sp->bytesfree)) in add_string() 75 best = sp; in add_string() 137 struct strcache *sp; in strcache_iscached() local 139 for (sp = strcache; sp != 0; sp = sp->next) in strcache_iscached() 140 if (str >= sp->buffer && str < sp->end) in strcache_iscached() 188 const struct strcache *sp; in strcache_print_stats() local 190 for (sp = strcache; sp != NULL; sp = sp->next) in strcache_print_stats() 192 int bf = sp->bytesfree; in strcache_print_stats() [all …]
|
D | ABOUT-NLS | 302 sp | [] | 439 sp | [] () | 576 sp | | 713 sp | [] | 3
|
/ndk/tests/build/ssax-instructions/jni/ |
D | test.S | 12 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, #24] 53 ldrd r6, [sp] [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/test/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.obs/ |
D | lock.pass.cpp | 34 std::shared_ptr<A> sp = wp.lock(); in main() local 35 assert(sp.use_count() == 0); in main() 36 assert(sp.get() == 0); in main() 42 std::shared_ptr<A> sp = wp.lock(); in main() local 43 assert(sp.use_count() == 2); in main() 44 assert(sp.get() == sp0.get()); in main() 52 std::shared_ptr<A> sp = wp.lock(); in main() local 53 assert(sp.use_count() == 0); in main() 54 assert(sp.get() == 0); in main()
|
/ndk/sources/host-tools/ndk-stack/regex/ |
D | engine.c | 296 char *sp; /* start of string matched by it */ in dissect() local 307 sp = start; in dissect() 329 sp++; in dissect() 338 sp++; in dissect() 349 rest = slow(m, sp, stp, ss, es); in dissect() 357 assert(stp >= sp); /* it did work */ in dissect() 362 if (slow(m, sp, rest, ssub, esub) != NULL) { in dissect() 363 if (dissect(m, sp, rest, ssub, esub) != rest) { in dissect() 367 assert(sp == rest); in dissect() 368 sp = rest; in dissect() [all …]
|
D | regcomp.c | 769 char *sp = p->next; in p_b_cclass() local 777 len = p->next - sp; in p_b_cclass() 779 if (strncmp(cp->name, sp, len) == 0 && cp->name[len] == '\0') in p_b_cclass() 833 char *sp = p->next; in p_b_coll_elem() local 843 len = p->next - sp; in p_b_coll_elem() 845 if (strncmp(cp->name, sp, len) == 0 && cp->name[len] == '\0') in p_b_coll_elem() 848 return(*sp); /* single character */ in p_b_coll_elem() 1374 sop *sp; in enlarge() local 1379 sp = (sop *)realloc(p->strip, size*sizeof(sop)); in enlarge() 1380 if (sp == NULL) { in enlarge() [all …]
|
/ndk/tests/device/test-stlport_shared-exception/jni/ |
D | arraynew.cpp | 53 size_t *sp = ((size_t *) a) - 1; in check_cookie() local 54 if (*sp != 11) in check_cookie() 58 sp = ((size_t *) a) - 2; in check_cookie() 59 if (*sp != sizeof (T)) in check_cookie() 83 size_t *sp = ((size_t *) a) - 1; in check_placement_cookie() local 84 if (*sp != 11) in check_placement_cookie() 88 sp = ((size_t *) a) - 2; in check_placement_cookie() 89 if (*sp != sizeof (T)) in check_placement_cookie()
|
D | omit-frame-pointer2.cpp | 7 void *sp = __builtin_alloca (0); in step() local
|
/ndk/tests/device/test-stlport_static-exception/jni/ |
D | arraynew.cpp | 53 size_t *sp = ((size_t *) a) - 1; in check_cookie() local 54 if (*sp != 11) in check_cookie() 58 sp = ((size_t *) a) - 2; in check_cookie() 59 if (*sp != sizeof (T)) in check_cookie() 83 size_t *sp = ((size_t *) a) - 1; in check_placement_cookie() local 84 if (*sp != 11) in check_placement_cookie() 88 sp = ((size_t *) a) - 2; in check_placement_cookie() 89 if (*sp != sizeof (T)) in check_placement_cookie()
|
D | omit-frame-pointer2.cpp | 7 void *sp = __builtin_alloca (0); in step() local
|
/ndk/sources/cxx-stl/llvm-libc++/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/ |
D | weak_ptr.pass.cpp | 48 std::shared_ptr<A> sp(wp); in main() local 59 std::shared_ptr<A> sp(wp); in main() local 60 assert(sp.use_count() == 2); in main() 61 assert(sp.get() == sp0.get()); in main() 71 std::shared_ptr<A> sp(wp); in main() local
|
/ndk/sources/cxx-stl/llvm-libc++/test/input.output/iostream.format/output.streams/ostream.seeks/ |
D | seekp.pass.cpp | 32 seekpos(typename base::pos_type sp, std::ios_base::openmode which) in seekpos() 36 return sp; in seekpos()
|
/ndk/sources/cxx-stl/llvm-libc++/test/input.output/iostream.format/input.streams/istream.unformatted/ |
D | seekg.pass.cpp | 40 typename base::pos_type seekpos(typename base::pos_type sp, in seekpos() 44 return sp; in seekpos()
|
/ndk/sources/cxx-stl/gabi++/src/ |
D | helper_func_internal.h | 100 if (unwind_exception->barrier_cache.sp == _Unwind_GetGR(context, UNWIND_STACK_REG)) { \
|
D | helper_func_internal.cc | 370 exc->barrier_cache.sp = _Unwind_GetGR(ctx, UNWIND_STACK_REG); in saveDataToBarrierCache()
|
/ndk/sources/cxx-stl/gabi++/include/ |
D | unwind-arm.h | 72 uint32_t sp; member
|
/ndk/sources/host-tools/sed-4.2.1/ |
D | ABOUT-NLS | 342 sp | [] | 520 sp | [] | 698 sp | () | 876 sp | | 1054 sp | [] | 3
|
/ndk/sources/host-tools/sed-4.2.1/po/ |
D | fr.po | 191 "impossible de sp�cifier des modifieurs sur une expression\n" 296 " sp�cifier la longueur de coupure de ligne d�sir�e pour la\n" 368 "d'entr�e; si aucun fichier d'entr�e n'est sp�cifi�e, l'entr�e standard\n"
|
D | sk.po | 471 msgstr "Neplatný spätný odkaz"
|
D | ga.po | 236 " stop priontáil uathoibríoch den spás patrúin\n"
|
D | cs.po | 446 msgstr "Úspěch"
|
/ndk/sources/cxx-stl/llvm-libc++/include/ |
D | streambuf | 41 pos_type pubseekpos(pos_type sp, 89 virtual pos_type seekpos(pos_type sp,
|
D | strstream | 48 virtual pos_type seekpos(pos_type sp,
|
D | sstream | 51 virtual pos_type seekpos(pos_type sp,
|