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

  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/
CharCache.java 34 int toWrite = chars.length < available ? chars.length : available;
35 System.arraycopy(chars, 0, cache, pos, toWrite);
36 pos += toWrite;
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
ClusterChainDirectory.java 93 final int toWrite = data.remaining();
98 if (trueSize > toWrite) {
99 final int rest = (int) (trueSize - toWrite);
101 chain.writeData(toWrite, fill);
  /libcore/luni/src/test/java/libcore/java/io/
OldAndroidPipedStreamTest.java 79 int toWrite = fib.next();
80 out.write(toWrite);
159 int toWrite = fib.next();
160 writeBytes[0] = (byte) (toWrite >> 24);
161 writeBytes[1] = (byte) (toWrite >> 16);
162 writeBytes[2] = (byte) (toWrite >> 8);
163 writeBytes[3] = (byte) (toWrite);
230 int toWrite = fib.next();
231 writeBytes[i ] = (byte) (toWrite >> 24);
232 writeBytes[i + 1] = (byte) (toWrite >> 16)
    [all...]
  /libcore/benchmarks/src/benchmarks/
BufferedZipFileBenchmark.java 47 int toWrite = Math.min(compressedSize - written, data.length);
48 out.write(data, 0, toWrite);
49 written += toWrite;
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/util/
FileDisk.java 131 int toWrite = src.remaining();
133 if ((devOffset + toWrite) > getSize()) throw new IOException(
136 while (toWrite > 0) {
139 toWrite -= written;
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/write/
BitstreamWriter.java 57 int toWrite = (curByte[0] << 7) | (curByte[1] << 6) | (curByte[2] << 5)
60 os.write(toWrite);
  /external/srec/shared/src/
CircularBuffer.c 140 size_t toWrite = bufSize - nbWritten;
141 memcpy(bufferData + buffer->writeIdx, ((unsigned char*) data) + nbWritten, toWrite);
142 buffer->size += toWrite;
143 buffer->writeIdx += toWrite;
  /hardware/invensense/60xx/mlsdk/mllite/
mldl.c 940 unsigned short toWrite;
949 toWrite = length;
950 if (toWrite > MAX_LOAD_WRITE_SIZE)
951 toWrite = MAX_LOAD_WRITE_SIZE;
954 inv_set_mpu_memory_one_bank(memAddr >> 8, memAddr & 0xff, toWrite,
961 buffer += toWrite;
962 memAddr += toWrite;
963 length -= toWrite;
    [all...]
  /external/apache-harmony/support/src/test/java/tests/support/
Support_HttpTests.java 145 String toWrite = "abcdef";
148 out.write(toWrite.getBytes("ISO8859_1"));
161 Assert.assertTrue("Error sending data 1: " + result, toWrite
170 String toWrite = "zyxwvuts";
174 out.write(toWrite.getBytes("ISO8859_1"));
187 Assert.assertEquals(toWrite, result);
  /external/srec/srec/EventLog/src/
EventLogImpl.c 462 const LCHAR* toWrite[5];
464 toWrite[0] = header;
465 toWrite[1] = bar;
466 toWrite[2] = evtt;
467 toWrite[3] = log_record;
468 toWrite[4] = nl;
494 len = LSTRLEN(toWrite[i]);
495 if (pfwrite(toWrite[i], sizeof_LCHAR, len, impl->logFile))
  /frameworks/base/core/tests/coretests/src/com/android/internal/os/
LoggingPrintStreamTest.java 174 String toWrite = a + "\n" + b + "\n" + c;
175 out.write(toWrite.getBytes());
  /frameworks/av/media/libmedia/
AudioTrack.cpp     [all...]
  /frameworks/opt/net/voip/src/jni/rtp/
AudioGroup.cpp 876 int toWrite = sampleCount;
880 while (--chances > 0 && (toWrite > 0 || toRead > 0)) {
881 if (toWrite > 0) {
883 buffer.frameCount = toWrite;
887 int offset = sampleCount - toWrite;
889 toWrite -= buffer.frameCount;
  /libcore/luni/src/main/java/java/io/
ObjectOutputStream.java 388 int toWrite = written.length - offset > 1024 ? 1024
390 if (toWrite < 256) {
392 output.writeByte((byte) toWrite);
395 output.writeInt(toWrite);
399 output.write(written, offset, toWrite);
400 offset += toWrite;
    [all...]
  /cts/tools/vm-tests-tf/src/util/build/
BuildDalvikSuite.java 191 File toWrite = new File(curJunitFileName);
192 String absPath = toWrite.getAbsolutePath();
197 writeToFileMkdir(toWrite, curJunitFileData);
  /frameworks/base/libs/androidfw/
BackupHelpers.cpp 682 off64_t toWrite = s.st_size;
683 while (toWrite > 0) {
684 size_t toRead = (toWrite < BUFSIZE) ? toWrite : BUFSIZE;
692 ALOGE("EOF but expect %lld more bytes in [%s]", (long long) toWrite,
708 toWrite -= nRead;
    [all...]
  /prebuilts/devtools/tools/lib/
jobb.jar 
fat32lib.jar 
sdk-common.jar 
  /dalvik/dx/src/com/android/dx/merge/
DexMerger.java 272 T toWrite = null;
274 toWrite = a;
280 toWrite = b;
285 if (toWrite == null) {
288 write(toWrite);
    [all...]
  /hardware/ril/libril/
ril.cpp     [all...]
  /external/chromium_org/third_party/sqlite/src/src/
tclsqlite.c 247 int toWrite,
251 int nWrite = toWrite; /* Number of bytes to write */
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant.jar 
  /prebuilts/tools/common/ant/
ant.jar 
  /prebuilts/tools/common/m2/internal/org/apache/ant/ant/1.8.0/
ant-1.8.0.jar 

Completed in 463 milliseconds