Searched refs:bp (Results 1 - 21 of 21) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/specialized.algorithms/uninitialized.fill/
H A Duninitialized_fill.pass.cpp35 B* bp = (B*)pool; local
38 std::uninitialized_fill(bp, bp+N, B());
44 assert(bp[i].data_ == 0);
47 std::uninitialized_fill(bp, bp+2, B());
49 assert(bp[i].data_ == 1);
/ndk/tests/device/test-stlport_shared-exception/jni/
H A Dref9.cpp11 basic *bp; member in struct:ex
12 ex() : bp(0) { }
23 inline ex::~ex() { if (--bp->refcount == 0) delete bp; }
26 bp = tmpex.bp;
27 bp->refcount++;
H A Dnew3.cpp35 B *bp = new B; local
37 return ap || bp ;
/ndk/tests/device/test-stlport_static-exception/jni/
H A Dref9.cpp11 basic *bp; member in struct:ex
12 ex() : bp(0) { }
23 inline ex::~ex() { if (--bp->refcount == 0) delete bp; }
26 bp = tmpex.bp;
27 bp->refcount++;
H A Dnew3.cpp35 B *bp = new B; local
37 return ap || bp ;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/specialized.algorithms/uninitialized.copy/
H A Duninitialized_copy_n.pass.cpp35 B* bp = (B*)pool; local
39 std::uninitialized_copy_n(b, 5, bp);
45 assert(bp[i].data_ == 0);
48 std::uninitialized_copy_n(b, 2, bp);
50 assert(bp[i].data_ == 1);
H A Duninitialized_copy.pass.cpp35 B* bp = (B*)pool; local
39 std::uninitialized_copy(b, b+N, bp);
45 assert(bp[i].data_ == 0);
48 std::uninitialized_copy(b, b+2, bp);
50 assert(bp[i].data_ == 1);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/specialized.algorithms/uninitialized.fill.n/
H A Duninitialized_fill_n.pass.cpp34 B* bp = (B*)pool; local
37 std::uninitialized_fill_n(bp, 5, B());
43 assert(bp[i].data_ == 0);
46 B* r = std::uninitialized_fill_n(bp, 2, B());
47 assert(r == bp + 2);
49 assert(bp[i].data_ == 1);
/ndk/sources/cxx-stl/gabi++/tests/
H A Dtest_aux_runtime.cpp28 B *bp = NULL; local
29 try {bool b = typeid(*bp) == typeid (A); }
44 B *bp = (B*)&d; // cast needed to break protection local
45 try { D &dr = dynamic_cast<D&> (*bp); }
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/test/
H A Dtest_aux_runtime.cpp28 B *bp = NULL; local
29 try {bool b = typeid(*bp) == typeid (A); }
44 B *bp = (B*)&d; // cast needed to break protection local
45 try { D &dr = dynamic_cast<D&> (*bp); }
/ndk/sources/host-tools/nawk-20071023/
H A Dlex.c106 char *bp = buf; local
116 *bp++ = c;
119 if (bp-buf >= sz)
120 if (!adjbuf(&buf, &sz, bp-buf+2, 100, &bp, "gettok"))
123 *bp++ = c;
125 *bp = 0;
130 *bp = 0;
136 if (bp-buf >= sz)
137 if (!adjbuf(&buf, &sz, bp
360 char *s, *bp; local
509 char *bp; local
[all...]
H A Db.c292 uschar *op, *bp; local
299 bp = buf;
303 } else if (c == '-' && i > 0 && bp[-1] != 0) {
305 c = bp[-1];
310 bp--;
315 if (!adjbuf((char **) &buf, &bufsz, bp-buf+2, 100, (char **) &bp, "cclenter1"))
317 *bp++ = ++c;
323 if (!adjbuf((char **) &buf, &bufsz, bp-buf+2, 100, (char **) &bp, "cclenter
772 uschar *bp; local
[all...]
H A Dtran.c415 uschar *buf, *bp; local
419 for (bp = buf; (c = *s) != delim; s++) {
423 *bp++ = c;
427 *bp++ = '\\';
431 case '\\': *bp++ = '\\'; break;
432 case 'n': *bp++ = '\n'; break;
433 case 't': *bp++ = '\t'; break;
434 case 'b': *bp++ = '\b'; break;
435 case 'f': *bp++ = '\f'; break;
436 case 'r': *bp
[all...]
/ndk/sources/host-tools/make-3.81/
H A Dansi2knr.c570 char **bp; local
587 bp = breaks;
595 if ( bp >= btop )
602 *bp++ = p;
675 { *bp++ = "va_alist";
680 if ( bp == breaks + 1 ) /* sole argument */
683 writeblanks(bp[-1] - 1, p);
684 bp--;
689 *bp++ = p+1;
694 *bp
[all...]
H A Dcommands.c147 char *bp;
215 bp = bar_value;
233 bcopy (c, bp, len);
234 bp += len;
235 *bp++ = FILE_LIST_SEPARATOR;
259 bp[bp > bar_value ? -1 : 0] = '\0';
146 char *bp; local
/ndk/sources/cxx-stl/stlport/src/
H A Dnum_put_float.cpp487 static size_t __format_float_scientific( __iostring& buf, const char *bp, argument
498 buf += *bp++;
511 while (*bp != 0 && precision--)
512 buf += *bp++;
550 static size_t __format_float_fixed( __iostring &buf, const char *bp, argument
554 if ( sign && (decpt > -precision) && (*bp != 0) )
562 buf += (nnn <= 0 || *bp == 0) ? '0' : *bp++;
574 while ( *bp != 0 && --precision >= 0 ) {
575 buf += (++decpt <= 0) ? '0' : *bp
651 __format_float(__iostring &buf, const char * bp, int decpt, int sign, bool is_zero, ios_base::fmtflags flags, int precision) argument
861 char * bp; local
[all...]
/ndk/sources/host-tools/sed-4.2.1/lib/
H A Dmemchr.c43 # include <bp-sym.h>
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/
H A DCompactUnwinder.hpp240 typename A::pint_t bp = registers.getEBP(); local
242 registers.setEBP(addressSpace.get32(bp));
244 registers.setSP((uint32_t)bp + 8);
246 registers.setIP(addressSpace.get32(bp + 4));
/ndk/tests/build/issue20862-libpng-O0/jni/
H A Dpngrtran.c2540 png_bytep bp = row; local
2541 png_bytep bp_end = bp + row_info->rowbytes;
2543 while (bp < bp_end)
2545 int b = (*bp >> 1) & 0x55;
2546 *bp++ = (png_byte)b;
2555 png_bytep bp = row; local
2556 png_bytep bp_end = bp + row_info->rowbytes;
2562 while (bp < bp_end)
2564 int b = (*bp >> gray_shift) & mask;
2565 *bp
2573 png_bytep bp = row; local
2591 png_bytep bp = row; local
[all...]
/ndk/sources/android/support/src/stdio/
H A Dstrtod.c3212 gethex( CONST char **sp, CONST FPI *fpi, Long *exp, Bigint **bp, int sign, locale_t loc) argument
3244 *bp = 0;
3365 *bp = b = Balloc(k);
3507 *bp = b;
3571 *bp = b;
/ndk/sources/host-tools/sed-4.2.1/
H A Dconfigure10414 for ac_header in bp-sym.h
10682 for ac_header in bp-sym.h

Completed in 1411 milliseconds