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

<<11121314151617181920>>

  /external/fsck_msdos/
fat.c 76 off_t off; local
83 off = boot->ResSectors;
84 off *= boot->BytesPerSec;
92 if (lseek(fs, off, SEEK_SET) != off) {
171 off_t off; local
182 off = boot->ResSectors + no * boot->FATsecs;
183 off *= boot->BytesPerSec;
185 if (lseek(fs, off, SEEK_SET) != off) {
559 off_t off; local
    [all...]
  /external/tcpdump/
print-ip.c 369 u_int len, off; member in struct:ip_print_demux_state
429 ipds->off & (IP_MF|IP_OFFMASK));
435 ipds->off & (IP_MF|IP_OFFMASK));
441 ipds->off & (IP_MF|IP_OFFMASK));
543 ipd.off = 0;
610 * Cut off the snapshot length to the end of the IP payload.
618 ipds->off = EXTRACT_16BITS(&ipds->ip->ip_off);
647 (ipds->off & 0x1fff) * 8,
648 bittok2str(ip_frag_values, "none", ipds->off&0xe000),
676 if ((ipds->off & 0x1fff) == 0)
    [all...]
  /frameworks/rs/cpp/
Allocation.cpp 169 void Allocation::copy1DRangeFrom(uint32_t off, size_t count, const void *data) {
175 if((off + count) > mCurrentCount) {
176 ALOGE("Overflow, Available count %zu, got %zu at offset %zu.", mCurrentCount, count, off);
180 rsAllocation1DData(mRS->getContext(), getIDSafe(), off, mSelectedLOD, count, data,
184 void Allocation::copy1DRangeTo(uint32_t off, size_t count, void *data) {
189 if((off + count) > mCurrentCount) {
190 ALOGE("Overflow, Available count %zu, got %zu at offset %zu.", mCurrentCount, count, off);
194 rsAllocation1DRead(mRS->getContext(), getIDSafe(), off, mSelectedLOD, count, data,
198 void Allocation::copy1DRangeFrom(uint32_t off, size_t count, sp<const Allocation> data,
201 rsAllocationCopy2DRange(mRS->getContext(), getIDSafe(), off, 0
    [all...]
  /external/guava/guava/src/com/google/common/io/
ByteStreams.java 70 * @param off the offset in the buffer of the first byte to read
75 final byte[] b, final int off, final int len) {
79 return new ByteArrayInputStream(b, off, len);
299 @Override public void readFully(byte b[], int off, int len) {
301 input.readFully(b, off, len);
468 @Override public void write(byte[] b, int off, int len) {
470 output.write(b, off, len);
647 * starting at {@code off}, with the same behavior as
653 * @param off an int specifying the offset into the data.
659 public static void readFully(InputStream in, byte[] b, int off, int len
    [all...]
FileBackedOutputStream.java 174 @Override public synchronized void write(byte[] b, int off, int len)
177 out.write(b, off, len);
LittleEndianDataInputStream.java 70 public void readFully(byte[] b, int off, int len) throws IOException {
71 ByteStreams.readFully(this, b, off, len);
LittleEndianDataOutputStream.java 55 @Override public void write(byte[] b, int off, int len) throws IOException {
57 out.write(b, off, len);
  /external/qemu/slirp/
tcp_output.c 71 int off, flags, error; local
97 off = tp->snd_nxt - tp->snd_una;
128 if (off < so->so_snd.sb_cc)
137 len = min(so->so_snd.sb_cc, win) - off;
180 len + off >= so->so_snd.sb_cc)
361 sbcopy(&so->so_snd, off, (int) len, mtod(m, caddr_t) + hdrlen);
365 * m->m_next = m_copy(so->so_snd.sb_mb, off, (int) len);
376 if (off + len == so->so_snd.sb_cc)
  /external/qemu/slirp-android/
tcp_output.c 71 int off, flags, error; local
97 off = tp->snd_nxt - tp->snd_una;
128 if (off < so->so_snd.sb_cc)
137 len = min(so->so_snd.sb_cc, win) - off;
180 len + off >= so->so_snd.sb_cc)
361 sbcopy(&so->so_snd, off, (int) len, mtod(m, caddr_t) + hdrlen);
365 * m->m_next = m_copy(so->so_snd.sb_mb, off, (int) len);
376 if (off + len == so->so_snd.sb_cc)
  /external/qemu/elff/
dwarf_die.cc 210 Elf_Word off = attr.value()->u32; local
213 while (elf_file()->get_range<Elf_Xword>(off, &low, &high) &&
217 off += 16;
221 while (elf_file()->get_range<Elf_Word>(off, &low, &high) &&
225 off += 8;
  /ndk/sources/host-tools/ndk-stack/elff/
dwarf_die.cc 212 Elf_Word off = attr.value()->u32; local
215 while (elf_file()->get_range<Elf_Xword>(off, &low, &high) &&
219 off += 16;
223 while (elf_file()->get_range<Elf_Word>(off, &low, &high) &&
227 off += 8;
  /frameworks/base/graphics/java/android/renderscript/
Allocation.java 722 private void data1DChecks(int off, int count, int len, int dataSize) {
724 if(off < 0) {
730 if((off + count) > mCurrentCount) {
732 ", got " + count + " at offset " + off + ".");
757 * @param off The offset of the first element to be copied.
761 public void copy1DRangeFromUnchecked(int off, int count, int[] d) {
763 data1DChecks(off, count, d.length * 4, dataSize);
764 mRS.nAllocationData1D(getIDSafe(), off, mSelectedLOD, count, d, dataSize); local
770 * @param off The offset of the first element to be copied.
774 public void copy1DRangeFromUnchecked(int off, int count, short[] d)
777 mRS.nAllocationData1D(getIDSafe(), off, mSelectedLOD, count, d, dataSize); local
790 mRS.nAllocationData1D(getIDSafe(), off, mSelectedLOD, count, d, dataSize); local
803 mRS.nAllocationData1D(getIDSafe(), off, mSelectedLOD, count, d, dataSize); local
872 mRS.nAllocationData2D(getIDSafe(), off, 0, local
    [all...]
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/
PacketKexInit.java 44 public PacketKexInit(byte payload[], int off, int len) throws IOException
47 System.arraycopy(payload, off, this.payload, 0, len);
49 TypesReader tr = new TypesReader(payload, off, len);
  /external/nist-sip/java/gov/nist/javax/sip/message/
MultipartMimeContentImpl.java 115 int off = 4; local
118 off = 2;
122 String rest = nextPart.substring(position + off);
  /external/stlport/src/
stdio_streambuf.cpp 76 stdio_streambuf_base::seekoff(off_type off, ios_base::seekdir dir,
93 if (off <= numeric_limits<off_type>::max() && FSEEK(_M_file, off, whence) == 0) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
NotificationPanelView.java 98 final int off = (int) (getHeight() - mHandleBarHeight - getPaddingBottom()); local
99 canvas.translate(0, off);
102 canvas.translate(0, -off);
SettingsPanelView.java 147 final int off = (int) (getHeight() - mHandleBarHeight - getPaddingBottom()); local
148 canvas.translate(0, off);
151 canvas.translate(0, -off);
  /ndk/sources/cxx-stl/stlport/src/
stdio_streambuf.cpp 76 stdio_streambuf_base::seekoff(off_type off, ios_base::seekdir dir,
93 if (off <= numeric_limits<off_type>::max() && FSEEK(_M_file, off, whence) == 0) {
  /frameworks/base/services/java/com/android/server/pm/
Installer.java 88 int off = 0, count; local
91 while (off != len) {
93 count = mIn.read(buffer, off, len - off);
98 off += count;
107 if (off == len)
  /dalvik/vm/mterp/armv5te/
zcmp.S 22 bne common_updateProfile @ test for JIT off at target
  /dalvik/vm/mterp/mips/
zcmp.S 26 bnez a0, common_updateProfile # test for JIT off at target
  /external/apache-http/src/org/apache/http/impl/io/
ChunkedInputStream.java 137 * @param off The offset into the byte array at which bytes will start to be
145 public int read (byte[] b, int off, int len) throws IOException {
161 int count = in.read(b, off, len);
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/jcajce/
JcaContentSignerBuilder.java 115 public void write(byte[] bytes, int off, int len)
120 sig.update(bytes, off, len);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1OutputStream.java 58 void write(byte[] bytes, int off, int len)
61 os.write(bytes, off, len);
  /external/guava/guava/src/com/google/common/hash/
AbstractCompositeHashFunction.java 50 @Override public Hasher putBytes(byte[] bytes, int off, int len) {
52 hasher.putBytes(bytes, off, len);

Completed in 961 milliseconds

<<11121314151617181920>>