/ndk/sources/cxx-stl/stlport/src/ |
D | strstream.cpp | 192 strstreambuf::seekoff(off_type off, in seekoff() argument 229 off += newoff; in seekoff() 230 if (off < 0 || off > seekhigh - seeklow) in seekoff() 234 if (seeklow + __STATIC_CAST(ptrdiff_t, off) < pbase()) { in seekoff() 236 pbump((int)off); in seekoff() 240 pbump((int)(off - (pbase() - seeklow))); in seekoff() 244 if (off <= egptr() - seeklow) in seekoff() 245 setg(seeklow, seeklow + __STATIC_CAST(ptrdiff_t, off), egptr()); in seekoff() 246 else if (off <= pptr() - seeklow) in seekoff() 247 setg(seeklow, seeklow + __STATIC_CAST(ptrdiff_t, off), pptr()); in seekoff() [all …]
|
D | stdio_streambuf.cpp | 76 stdio_streambuf_base::seekoff(off_type off, ios_base::seekdir dir, in seekoff() argument 93 if (off <= numeric_limits<off_type>::max() && FSEEK(_M_file, off, whence) == 0) { in seekoff()
|
/ndk/tests/device/asan-smoke/jni/ |
D | asan_oob_test.cc | 56 NOINLINE void oob_test(int size, int off) { in oob_test() argument 60 asan_write((T*)(p + off)); in oob_test() 81 int off = i >= size ? (i - size) : 0; in OOBTest() local 84 sprintf(expected_str, str, off); in OOBTest()
|
/ndk/sources/host-tools/make-3.81/tests/scripts/features/ |
D | vpathgpath | 41 $off = -500; 46 &utouch($off, $f); 47 $off += 10;
|
D | vpathplus | 58 $off = -500; 62 &utouch($off, $_); 63 $off += 10;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/output.streams/ostream.seeks/ |
D | tellp.pass.cpp | 32 seekoff(typename base::off_type off, std::ios_base::seekdir way, std::ios_base::openmode which) in seekoff() 34 assert(off == 0); in seekoff()
|
D | seekp2.pass.cpp | 32 seekoff(typename base::off_type off, std::ios_base::seekdir way, in seekoff() 38 return off; in seekoff()
|
/ndk/sources/android/support/src/wcstox/ |
D | shgetc.c | 31 int off = f->rpos - f->rstart; in shlim() local 32 if (off > lim) in shlim()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/input.streams/istream.unformatted/ |
D | tellg.pass.cpp | 40 typename base::pos_type seekoff(typename base::off_type off, in seekoff() 44 assert(off == 0); in seekoff()
|
D | seekg_off.pass.cpp | 42 typename base::pos_type seekoff(typename base::off_type off, in seekoff() 48 return off; in seekoff()
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/ |
D | config.hpp | 25 #pragma parse_func_templ off
|
/ndk/ |
D | ndk-gdb.cmd | 1 @echo off
|
/ndk/build/ |
D | ndk-build.cmd | 1 @echo off
|
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/ |
D | UnwindLevel1-gcc-ext.c | 157 size_t off, len; in _Unwind_Backtrace() local 158 unwindInfo = decode_eht_entry(unwindInfo, &off, &len); in _Unwind_Backtrace() 163 result = _Unwind_VRS_Interpret(context, unwindInfo, off, len); in _Unwind_Backtrace()
|
D | Unwind-EHABI.cpp | 173 size_t off = 0; in unwindOneFrame() local 174 unwindingData = decode_eht_entry(unwindingData, &off, &len); in unwindOneFrame() 190 return _Unwind_VRS_Interpret(context, unwindingData, off, len); in unwindOneFrame() 216 decode_eht_entry(const uint32_t* data, size_t* off, size_t* len) { in decode_eht_entry() argument 228 *off = 1; in decode_eht_entry() 233 *off = 2; in decode_eht_entry()
|
/ndk/sources/cxx-stl/system/include/ |
D | new | 26 // these next two are not really required, since exceptions are off
|
/ndk/tests/device/test-gnustl-full/unit/ |
D | fstream_test.cpp | 491 streamoff off = pos; in seek() local 492 CPPUNIT_ASSERT( off >= chars_read ); in seek() 493 off = s.rdbuf()->pubseekoff(-off, ios_base::cur); in seek() 494 CPPUNIT_ASSERT( off == -1 ); in seek() 495 off = s.rdbuf()->pubseekoff(0, ios_base::beg); in seek() 496 CPPUNIT_ASSERT( off == 0 ); in seek()
|
/ndk/tests/device/test-stlport/unit/ |
D | fstream_test.cpp | 491 streamoff off = pos; in seek() local 492 CPPUNIT_ASSERT( off >= chars_read ); in seek() 493 off = s.rdbuf()->pubseekoff(-off, ios_base::cur); in seek() 494 CPPUNIT_ASSERT( off == -1 ); in seek() 495 off = s.rdbuf()->pubseekoff(0, ios_base::beg); in seek() 496 CPPUNIT_ASSERT( off == 0 ); in seek()
|
/ndk/sources/cxx-stl/gabi++/src/ |
D | dynamic_cast.cc | 45 adjust_pointer(const void* p, std::ptrdiff_t off) in adjust_pointer() argument 48 const char *cp = reinterpret_cast<const char*>(p) + off; in adjust_pointer()
|
/ndk/sources/host-tools/make-3.81/ |
D | subproc.bat | 1 @echo off
|
D | dosbuild.bat | 1 @echo off 51 @echo off
|
D | README.OS2 | 23 Note: - Points 3 and 4 can be turned off at compile time by adding 34 - At compile time you can turn off that cmd is used as default shell 39 - At compile time you can set CPPFLAGS="-DNO_CHDIR2" to turn off that
|
/ndk/tests/build/b9193874-neon/jni/ |
D | b9193874-neon.c | 246 int off = ((16 * block + 1) + i) * 4; in UpsampleRgbaLinePairNEON() local 285 vst4_u8(top_dst + off, r_g_b_v255); in UpsampleRgbaLinePairNEON() 294 int off = ((16 * block + 1) + i) * 4; in UpsampleRgbaLinePairNEON() local 333 vst4_u8(bottom_dst + off, r_g_b_v255); in UpsampleRgbaLinePairNEON()
|
/ndk/sources/host-tools/make-3.81/tests/ |
D | test_driver.pl | 912 local ($off) = shift; 919 utime($s[8]+$off, $s[9]+$off, @_);
|
/ndk/sources/host-tools/make-3.81/glob/ |
D | configure.bat | 1 @echo off
|