Home
last modified time | relevance | path

Searched refs:off (Results 1 – 25 of 72) sorted by relevance

123

/ndk/sources/cxx-stl/stlport/src/
Dstrstream.cpp192 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 …]
Dstdio_streambuf.cpp76 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/
Dasan_oob_test.cc56 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/
Dvpathgpath41 $off = -500;
46 &utouch($off, $f);
47 $off += 10;
Dvpathplus58 $off = -500;
62 &utouch($off, $_);
63 $off += 10;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/output.streams/ostream.seeks/
Dtellp.pass.cpp32 seekoff(typename base::off_type off, std::ios_base::seekdir way, std::ios_base::openmode which) in seekoff()
34 assert(off == 0); in seekoff()
Dseekp2.pass.cpp32 seekoff(typename base::off_type off, std::ios_base::seekdir way, in seekoff()
38 return off; in seekoff()
/ndk/sources/android/support/src/wcstox/
Dshgetc.c31 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/
Dtellg.pass.cpp40 typename base::pos_type seekoff(typename base::off_type off, in seekoff()
44 assert(off == 0); in seekoff()
Dseekg_off.pass.cpp42 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/
Dconfig.hpp25 #pragma parse_func_templ off
/ndk/
Dndk-gdb.cmd1 @echo off
/ndk/build/
Dndk-build.cmd1 @echo off
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/
DUnwindLevel1-gcc-ext.c157 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()
DUnwind-EHABI.cpp173 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/
Dnew26 // these next two are not really required, since exceptions are off
/ndk/tests/device/test-gnustl-full/unit/
Dfstream_test.cpp491 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/
Dfstream_test.cpp491 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/
Ddynamic_cast.cc45 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/
Dsubproc.bat1 @echo off
Ddosbuild.bat1 @echo off
51 @echo off
DREADME.OS223 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/
Db9193874-neon.c246 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/
Dtest_driver.pl912 local ($off) = shift;
919 utime($s[8]+$off, $s[9]+$off, @_);
/ndk/sources/host-tools/make-3.81/glob/
Dconfigure.bat1 @echo off

123