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

1 2

  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
DigestInputStreamTest.java 63 private static final int CHUNK_SIZE = 32;
391 assertEquals(0, MY_MESSAGE_LEN % CHUNK_SIZE);
400 for (int i=0; i<MY_MESSAGE_LEN/CHUNK_SIZE; i++) {
403 dis.read(bArray, i*CHUNK_SIZE, CHUNK_SIZE) == CHUNK_SIZE);
436 assertTrue(MY_MESSAGE_LEN % (CHUNK_SIZE+1) != 0);
445 for (int i=0; i<MY_MESSAGE_LEN/(CHUNK_SIZE+1); i++) {
448 dis.read(bArray, i*(CHUNK_SIZE+1), CHUNK_SIZE+1) =
    [all...]
DigestOutputStreamTest.java 58 private static final int CHUNK_SIZE = 32;
315 assertEquals(0, MY_MESSAGE_LEN % CHUNK_SIZE);
324 for (int i=0; i<MY_MESSAGE_LEN/CHUNK_SIZE; i++) {
325 dos.write(myMessage, i*CHUNK_SIZE, CHUNK_SIZE);
352 assertTrue(MY_MESSAGE_LEN % (CHUNK_SIZE+1) != 0);
361 for (int i=0; i<MY_MESSAGE_LEN/(CHUNK_SIZE+1); i++) {
362 dos.write(myMessage, i*(CHUNK_SIZE+1), CHUNK_SIZE+1);
366 MY_MESSAGE_LEN/(CHUNK_SIZE+1)*(CHUNK_SIZE+1)
    [all...]
  /external/webkit/WebCore/bindings/v8/
DOMDataStore.h 53 template <class T, int CHUNK_SIZE, class Traits>
63 m_last = m_current + CHUNK_SIZE;
81 m_current = m_last = m_chunks ? m_chunks->m_entries + CHUNK_SIZE : 0;
99 clearEntries(previous->m_entries, previous->m_entries + CHUNK_SIZE);
105 m_last = m_current + CHUNK_SIZE;
115 visitEntries(chunk->m_entries, chunk->m_entries + CHUNK_SIZE, visitor);
122 T m_entries[CHUNK_SIZE];
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/BusAccess/Shm_Common/
shmBus.h 61 #define CHUNK_SIZE 512
117 UINT8 auFwTmpBuf [TNETWIF_WRITE_OFFSET_BYTES + CHUNK_SIZE];
shmFwCtrl.c     [all...]
  /external/apache-http/src/org/apache/commons/codec/binary/
Base64.java 46 static final int CHUNK_SIZE = 76;
254 (CHUNK_SEPARATOR.length == 0 ? 0 : (int) Math.ceil((float) encodedDataLength / CHUNK_SIZE));
265 int nextSeparatorIndex = CHUNK_SIZE;
301 // this assumes that CHUNK_SIZE % 4 == 0
311 (CHUNK_SIZE * (chunksSoFar + 1)) +
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audioquality/
Utils.java 210 final int CHUNK_SIZE = 10000;
212 byte[] buf = new byte[CHUNK_SIZE];
216 count = stream.read(buf, 0, CHUNK_SIZE);
  /external/bluetooth/glib/gio/
glocalfileenumerator.c 36 #define CHUNK_SIZE 1000
274 local->entries = g_new (DirEntry, CHUNK_SIZE + 1);
282 for (i = 0; i < CHUNK_SIZE; i++)
  /frameworks/base/core/tests/coretests/src/android/app/
DownloadManagerBaseTest.java 615 final int CHUNK_SIZE = 1000000; // copy random data in 1000000-char chunks
617 int nextChunkSize = CHUNK_SIZE;
623 if (remaining < CHUNK_SIZE) {
628 remaining -= CHUNK_SIZE;
    [all...]
  /packages/apps/Gallery3D/src/com/cooliris/media/
DiskCache.java 36 private static final int CHUNK_SIZE = 1048576; // 1MB.
150 if (offset + data.length > CHUNK_SIZE) {
  /external/chromium/third_party/icu/source/common/
ucnv.c 41 #define CHUNK_SIZE 1024
    [all...]
  /external/icu4c/common/
ucnv.c 41 #define CHUNK_SIZE 1024
    [all...]
  /system/core/adb/
adb.h 409 #define CHUNK_SIZE (64*1024)
adb.c 408 adb_socket_setbufsize(fd, CHUNK_SIZE);
    [all...]
  /external/chromium/third_party/icu/source/test/cintltst/
ccapitst.c     [all...]
  /external/icu4c/test/cintltst/
ccapitst.c     [all...]
  /external/quake/src/com/android/quake/
DownloaderActivity.java     [all...]
  /external/libxml2/
xmlreader.c 87 #define CHUNK_SIZE 512
821 if (inbuf->use < reader->cur + CHUNK_SIZE) {
849 * parse by block of CHUNK_SIZE bytes, various tests show that
852 if (inbuf->use >= reader->cur + CHUNK_SIZE) {
855 CHUNK_SIZE, 0);
856 reader->cur += CHUNK_SIZE;
877 (inbuf->use - reader->cur <= CHUNK_SIZE)) {
    [all...]
  /packages/apps/Email/src/com/android/exchange/
EasSyncService.java 121 static private final int CHUNK_SIZE = 16*1024;
    [all...]
  /system/core/libacc/
acc.cpp     [all...]
  /external/jdiff/
xerces.jar 
  /prebuilt/darwin-x86/swt/
swt.jar 
  /prebuilt/darwin-x86_64/swt/
swt.jar 
  /prebuilt/linux-x86/swt/
swt.jar 
  /prebuilt/linux-x86_64/swt/
swt.jar 

Completed in 701 milliseconds

1 2