Home
last modified time | relevance | path

Searched refs:toWrite (Results 1 – 6 of 6) sorted by relevance

/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/
DCharCache.java34 int toWrite = chars.length < available ? chars.length : available; in append()
35 System.arraycopy(chars, 0, cache, pos, toWrite); in append()
36 pos += toWrite; in append()
/external/srec/shared/src/
DCircularBuffer.c140 size_t toWrite = bufSize - nbWritten; in CircularBufferWrite() local
141 memcpy(bufferData + buffer->writeIdx, ((unsigned char*) data) + nbWritten, toWrite); in CircularBufferWrite()
142 buffer->size += toWrite; in CircularBufferWrite()
143 buffer->writeIdx += toWrite; in CircularBufferWrite()
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/write/
DBitstreamWriter.java57 int toWrite = (curByte[0] << 7) | (curByte[1] << 6) | (curByte[2] << 5) in writeCurByte() local
60 os.write(toWrite); in writeCurByte()
/external/apache-harmony/support/src/test/java/tests/support/
DSupport_HttpTests.java145 String toWrite = "abcdef"; in runTests() local
148 out.write(toWrite.getBytes("ISO8859_1")); in runTests()
161 Assert.assertTrue("Error sending data 1: " + result, toWrite in runTests()
170 String toWrite = "zyxwvuts"; in runTests() local
174 out.write(toWrite.getBytes("ISO8859_1")); in runTests()
187 Assert.assertEquals(toWrite, result); in runTests()
/external/srec/srec/EventLog/src/
DEventLogImpl.c462 const LCHAR* toWrite[5]; in logIt() local
464 toWrite[0] = header; in logIt()
465 toWrite[1] = bar; in logIt()
466 toWrite[2] = evtt; in logIt()
467 toWrite[3] = log_record; in logIt()
468 toWrite[4] = nl; in logIt()
494 len = LSTRLEN(toWrite[i]); in logIt()
495 if (pfwrite(toWrite[i], sizeof_LCHAR, len, impl->logFile)) in logIt()
/external/chromium_org/third_party/sqlite/src/src/
Dtclsqlite.c247 int toWrite, in incrblobOutput() argument
251 int nWrite = toWrite; /* Number of bytes to write */ in incrblobOutput()