HomeSort by relevance Sort by last modified time
    Searched refs:byteCounts (Results 1 - 12 of 12) sorted by null

  /frameworks/av/media/img_utils/src/
TiffIfd.cpp 242 Vector<uint32_t> byteCounts;
246 byteCounts.add(lastChunkSize);
248 byteCounts.add(actualChunkSize);
254 static_cast<uint32_t>(numStrips), UNDEFINED_ENDIAN, byteCounts.array());
298 // Get old offsets and bytecounts
354 const uint32_t* byteCounts = stripByteCounts->getData<uint32_t>();
358 total += byteCounts[i];
  /libcore/luni/src/main/java/libcore/io/
BlockGuardOs.java 244 @Override public int readv(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException {
246 return os.readv(fd, buffers, offsets, byteCounts);
322 @Override public int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException {
324 return os.writev(fd, buffers, offsets, byteCounts);
Os.java 125 public int readv(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException;
171 public int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException;
ForwardingOs.java 132 public int readv(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException { return os.readv(fd, buffers, offsets, byteCounts); }
178 public int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException { return os.writev(fd, buffers, offsets, byteCounts); }
Posix.java 174 public native int readv(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException;
276 public native int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException;
  /libcore/luni/src/main/java/android/system/
Os.java 383 public static int readv(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException { return Libcore.os.readv(fd, buffers, offsets, byteCounts); }
576 public static int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException { return Libcore.os.writev(fd, buffers, offsets, byteCounts); }
  /libcore/luni/src/main/native/
libcore_io_Posix.cpp 287 ScopedIntArrayRO byteCounts(mEnv, javaByteCounts);
288 if (byteCounts.get() == NULL) {
302 iov.iov_len = byteCounts[i];
    [all...]
  /prebuilts/sdk/21/
android.jar 
  /prebuilts/sdk/22/
android.jar 
  /prebuilts/sdk/25/
android.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/system_current/
android.jar 

Completed in 1400 milliseconds