HomeSort by relevance Sort by last modified time
    Searched refs:off (Results 301 - 325 of 3992) sorted by null

<<11121314151617181920>>

  /external/python/cpython2/PC/VS8.0/
build_ssl.bat 1 @echo off
idle.bat 1 @echo off
  /external/python/cpython2/PC/VS9.0/
build_ssl.bat 1 @echo off
idle.bat 1 @echo off
  /external/python/cpython2/PCbuild/
idle.bat 1 @echo off
  /external/python/cpython3/Lib/venv/scripts/nt/
deactivate.bat 1 @echo off
  /external/python/cpython3/PCbuild/
prepare_ssl.bat 1 @echo off
  /external/scapy/
run_scapy_py2.bat 1 @echo off
run_scapy_py3.bat 1 @echo off
  /external/scapy/test/
run_tests_py2.bat 1 @echo off
  /external/sfntly/cpp/src/sfntly/data/
font_output_stream.h 55 virtual void Write(ByteVector* b, int32_t off, int32_t len);
56 virtual void Write(byte_t* b, int32_t off, int32_t len);
  /external/smali/util/src/main/java/org/jf/util/
RandomAccessFileOutputStream.java 60 @Override public void write(byte[] b, int off, int len) throws IOException {
63 raf.write(b, off, len);
  /hardware/interfaces/vibrator/1.0/
IVibrator.hal 24 * was canceled (through off()).
31 * Turn off vibrator
36 off() generates (Status vibratorOffRet);
59 * Fire off a predefined haptic event.
  /libcore/ojluni/src/main/java/java/io/
BufferedInputStream.java 278 private int read1(byte[] b, int off, int len) throws IOException {
286 return getInIfOpen().read(b, off, len);
293 System.arraycopy(getBufIfOpen(), pos, b, off, cnt); local
327 * @param off offset at which to start storing bytes.
335 public synchronized int read(byte b[], int off, int len)
339 if ((off | len | (off + len) | (b.length - (off + len))) < 0) {
347 int nread = read1(b, off + n, len - n);
FilterInputStream.java 116 * This method simply performs <code>in.read(b, off, len)</code>
120 * @param off the start offset in the destination array <code>b</code>
126 * @exception IndexOutOfBoundsException If <code>off</code> is negative,
128 * <code>b.length - off</code>
132 public int read(byte b[], int off, int len) throws IOException {
133 return in.read(b, off, len);
PipedInputStream.java 222 * @param off the start offset of the data
228 synchronized void receive(byte b[], int off, int len) throws IOException {
249 System.arraycopy(b, off, buffer, in, nextTransferAmount);
251 off += nextTransferAmount;
361 * @param off the start offset in the destination array <code>b</code>
367 * @exception IndexOutOfBoundsException If <code>off</code> is negative,
369 * <code>b.length - off</code>
374 public synchronized int read(byte b[], int off, int len) throws IOException {
377 } else if (off < 0 || len < 0 || len > b.length - off) {
    [all...]
  /libcore/ojluni/src/main/java/java/util/zip/
ZipOutputStream.java 312 * @param off the start offset in the data
317 public synchronized void write(byte[] b, int off, int len)
321 if (off < 0 || len < 0 || off > b.length - len) {
333 super.write(b, off, len);
341 out.write(b, off, len);
346 crc.update(b, off, len);
369 long off = written; local
372 writeEND(off, written - off);
659 int off = 0; local
683 int off = 0; local
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/input/
AutoCloseInputStream.java 105 * @param off start offset within the buffer
110 public int read(byte[] b, int off, int len) throws IOException {
111 int n = in.read(b, off, len);
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
CountingOutputStream.java 64 * @param off the start offset in the buffer
69 public void write(byte[] b, int off, int len) throws IOException {
71 super.write(b, off, len);
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/util/
PartialInputStream.java 50 public int read(byte b[], int off, int len) throws IOException {
52 return super.read(b, off, len); //To change body of overridden methods use File | Settings | File Templates.
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/input.output/iostream.format/output.streams/ostream.seeks/
tellp.pass.cpp 32 seekoff(typename base::off_type off, std::ios_base::seekdir way, std::ios_base::openmode which)
34 assert(off == 0);
  /toolchain/binutils/binutils-2.27/gas/config/
obj-coff-seh.c 497 seh_x64_make_prologue_element (int code, int info, offsetT off)
514 n->off = off;
609 offsetT off;
620 off = get_absolute_expression ();
625 if (off < 0)
633 if ((off & (scale - 1)) == 0 && off <= (offsetT) (0xffff * scale))
636 off /= scale;
638 else if (off < (offsetT) 0xffffffff
607 offsetT off; local
652 offsetT off; local
690 offsetT off; local
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arc/
nps400-2.s 15 hwschd.off r10
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mmix/
greg9.d 6 Idx Name Size VMA LMA File off Algn
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/nios2/
warn_nobreak.s 1 .set nobreak , 2 # This should not cause warning for ba, bt to be turned off
4 .set nobreak # this should turn the warnings off

Completed in 474 milliseconds

<<11121314151617181920>>