HomeSort by relevance Sort by last modified time
    Searched refs:off (Results 376 - 400 of 3492) sorted by null

<<11121314151617181920>>

  /libcore/ojluni/src/main/java/java/io/
PipedInputStream.java 226 * @param off the start offset of the data
232 synchronized void receive(byte b[], int off, int len) throws IOException {
253 System.arraycopy(b, off, buffer, in, nextTransferAmount);
255 off += nextTransferAmount;
371 * @param off the start offset in the destination array <code>b</code>
377 * @exception IndexOutOfBoundsException If <code>off</code> is negative,
379 * <code>b.length - off</code>
384 public synchronized int read(byte b[], int off, int len) throws IOException {
387 } else if (off < 0 || len < 0 || len > b.length - off) {
    [all...]
  /ndk/build/
ndk-build.cmd 1 @echo off
  /ndk/sources/android/support/src/wcstox/
shgetc.c 31 int off = f->rpos - f->rstart; local
32 if (off > lim)
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/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);
  /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.
  /toolchain/binutils/binutils-2.25/gas/config/
obj-coff-seh.c 500 seh_x64_make_prologue_element (int code, int info, offsetT off)
517 n->off = off;
613 offsetT off;
624 off = get_absolute_expression ();
629 if (off < 0)
637 if ((off & (scale - 1)) == 0 && off <= (offsetT) (0xffff * scale))
640 off /= scale;
642 else if (off < (offsetT) 0xffffffff
611 offsetT off; local
656 offsetT off; local
694 offsetT off; local
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mmix/
greg9.d 6 Idx Name Size VMA LMA File off Algn
  /toolchain/binutils/binutils-2.25/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
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/pe/
peseh-x64-5.d 8 Idx Name Size VMA LMA File off Algn
peseh-x64-6.d 8 Idx Name Size VMA LMA File off Algn
section-align-1.d 9 Idx Name *Size *VMA *LMA *File off *Algn
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/ppc/
textalign-xcoff-001.d 8 Idx Name Size VMA LMA File off Algn
textalign-xcoff-002.d 8 Idx Name Size VMA LMA File off Algn
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic54x/
align.d 7 Idx Name Size VMA + LMA + File off Algn
  /toolchain/binutils/binutils-2.25/gold/
tls.h 53 section_size_type view_size, int off)
55 typename elfcpp::Elf_types<size>::Elf_Addr offset = rel_offset + off;
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-cris/
libdso-10.d 11 LOAD off 0x0+ vaddr 0x0+ paddr 0x0+ align 2\*\*13
13 LOAD off 0x0+144 vaddr 0x0+2144 paddr 0x0+2144 align 2\*\*13
15 DYNAMIC off 0x0+144 vaddr 0x0+2144 paddr 0x0+2144 align 2\*\*2
25 Idx Name Size VMA LMA File off Algn
tls-dso-tpoffgotcomm1.d 13 LOAD off 0x0+ vaddr 0x0+ paddr 0x0+ align 2\*\*13
15 LOAD off .*
17 DYNAMIC off .*
19 TLS off .* vaddr .* paddr .* align 2\*\*2
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-scripts/
align2a.d 7 Idx +Name +Size +VMA +LMA +File +off +Algn
align2b.d 7 Idx +Name +Size +VMA +LMA +File off +Algn
  /bionic/libc/arch-x86/atom/string/
ssse3-wcscat-atom.S 44 # define cfi_rel_offset(reg, off) .cfi_rel_offset reg, off
52 # define cfi_adjust_cfa_offset(off) .cfi_adjust_cfa_offset off
  /bionic/libc/kernel/uapi/linux/tc_act/
tc_pedit.h 37 __u32 off; member in struct:tc_pedit_key
  /development/ndk/platforms/android-21/include/linux/tc_act/
tc_pedit.h 37 __u32 off; member in struct:tc_pedit_key
  /development/perftests/panorama/feature_mos/src/mosaic/
Pyramid.cpp 115 int off, off2, height, h, w; local
119 off = pyr->border - left;
120 off2 = pyr->width + off + pyr->border - right - 1;
123 base = pyr->ptr[-h] - off;
152 int off = in->border / 2; local
155 for (j = -off; j < in->height + off; j++) {
172 for (i = -off; i < scr->width + off; i++) {
217 int off = scr->border - 2 local
    [all...]

Completed in 1423 milliseconds

<<11121314151617181920>>