/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/ |
D | DigestInputStreamTest.java | 56 private static final int CHUNK_SIZE = 32; field in DigestInputStreamTest 333 assertEquals(0, MY_MESSAGE_LEN % CHUNK_SIZE); in testReadbyteArrayintint02() 342 for (int i = 0; i < MY_MESSAGE_LEN / CHUNK_SIZE; i++) { in testReadbyteArrayintint02() 345 dis.read(bArray, i * CHUNK_SIZE, CHUNK_SIZE) == CHUNK_SIZE); in testReadbyteArrayintint02() 373 assertTrue(MY_MESSAGE_LEN % (CHUNK_SIZE + 1) != 0); in testReadbyteArrayintint03() 382 for (int i = 0; i < MY_MESSAGE_LEN / (CHUNK_SIZE + 1); i++) { in testReadbyteArrayintint03() 385 dis.read(bArray, i * (CHUNK_SIZE + 1), CHUNK_SIZE + 1) == in testReadbyteArrayintint03() 386 CHUNK_SIZE + 1); in testReadbyteArrayintint03() 393 MY_MESSAGE_LEN / (CHUNK_SIZE + 1) * (CHUNK_SIZE + 1), in testReadbyteArrayintint03() 394 MY_MESSAGE_LEN % (CHUNK_SIZE + 1)) == in testReadbyteArrayintint03() [all …]
|
D | DigestOutputStreamTest.java | 56 private static final int CHUNK_SIZE = 32; field in DigestOutputStreamTest 321 assertEquals(0, MY_MESSAGE_LEN % CHUNK_SIZE); in testWritebyteArrayintint02() 330 for (int i = 0; i < MY_MESSAGE_LEN / CHUNK_SIZE; i++) { in testWritebyteArrayintint02() 331 dos.write(myMessage, i * CHUNK_SIZE, CHUNK_SIZE); in testWritebyteArrayintint02() 358 assertTrue(MY_MESSAGE_LEN % (CHUNK_SIZE + 1) != 0); in testWritebyteArrayintint03() 367 for (int i = 0; i < MY_MESSAGE_LEN / (CHUNK_SIZE + 1); i++) { in testWritebyteArrayintint03() 368 dos.write(myMessage, i * (CHUNK_SIZE + 1), CHUNK_SIZE + 1); in testWritebyteArrayintint03() 372 MY_MESSAGE_LEN / (CHUNK_SIZE + 1) * (CHUNK_SIZE + 1), in testWritebyteArrayintint03() 373 MY_MESSAGE_LEN % (CHUNK_SIZE + 1)); in testWritebyteArrayintint03() 399 assertEquals(0, MY_MESSAGE_LEN % CHUNK_SIZE); in testWritebyteArrayintint04() [all …]
|
/external/guava/guava/src/com/google/common/hash/ |
D | Murmur3_128HashFunction.java | 79 private static final int CHUNK_SIZE = 16; field in Murmur3_128HashFunction.Murmur3_128Hasher 87 super(CHUNK_SIZE); in Murmur3_128Hasher() 97 length += CHUNK_SIZE; in process() 172 .wrap(new byte[CHUNK_SIZE]) in makeHash()
|
D | SipHashFunction.java | 95 private static final int CHUNK_SIZE = 8; field in SipHashFunction.SipHasher 119 super(CHUNK_SIZE); in SipHasher() 129 b += CHUNK_SIZE; in process()
|
D | Murmur3_32HashFunction.java | 151 private static final int CHUNK_SIZE = 4; field in Murmur3_32HashFunction.Murmur3_32Hasher 156 super(CHUNK_SIZE); in Murmur3_32Hasher() 164 length += CHUNK_SIZE; in process()
|
/external/apache-http/src/org/apache/commons/codec/binary/ |
D | Base64.java | 51 static final int CHUNK_SIZE = 76; field in Base64 259 … (CHUNK_SEPARATOR.length == 0 ? 0 : (int) Math.ceil((float) encodedDataLength / CHUNK_SIZE)); in encodeBase64() 270 int nextSeparatorIndex = CHUNK_SIZE; in encodeBase64() 316 (CHUNK_SIZE * (chunksSoFar + 1)) + in encodeBase64()
|
/external/pcre/dist/sljit/ |
D | sljitExecAllocator.c | 69 #define CHUNK_SIZE 0x10000 macro 125 #define CHUNK_MASK (~(CHUNK_SIZE - 1)) 212 chunk_size = (size + sizeof(struct block_header) + CHUNK_SIZE - 1) & CHUNK_MASK; in sljit_malloc_exec()
|
/external/icu/icu4c/source/common/ |
D | ucnv.c | 43 #define CHUNK_SIZE 1024 macro 2061 UChar pivotBuffer[CHUNK_SIZE]; in ucnv_convertEx() 2114 pivotLimit=pivotBuffer+CHUNK_SIZE; in ucnv_convertEx() 2417 UChar pivotBuffer[CHUNK_SIZE]; in ucnv_internalConvert() 2447 pivotBuffer, &pivot, &pivot2, pivotBuffer+CHUNK_SIZE, in ucnv_internalConvert() 2461 char targetBuffer[CHUNK_SIZE]; in ucnv_internalConvert() 2463 targetLimit=targetBuffer+CHUNK_SIZE; in ucnv_internalConvert() 2470 pivotBuffer, &pivot, &pivot2, pivotBuffer+CHUNK_SIZE, in ucnv_internalConvert()
|
/external/icu/icu4c/source/test/cintltst/ |
D | ccapitst.c | 1923 #define CHUNK_SIZE 1024 macro 1956 char char_in[CHUNK_SIZE+32]; in bug1() 1957 char char_out[CHUNK_SIZE*2]; in bug1() 1977 memcpy(char_in + (CHUNK_SIZE - i), test_seq, test_seq_len); in bug1() 2076 char char_in[CHUNK_SIZE*4]; in bug3() 2140 UChar pivotBuffer[CHUNK_SIZE]; in convertExStreaming() 2144 char targetBuffer[CHUNK_SIZE]; in convertExStreaming() 2155 if(chunkSize>CHUNK_SIZE) { in convertExStreaming() 2156 chunkSize=CHUNK_SIZE; in convertExStreaming()
|
/external/webp/src/dec/ |
D | idec.c | 25 #define CHUNK_SIZE 4096 macro 179 const uint64_t extra_size = (new_size + CHUNK_SIZE - 1) & ~(CHUNK_SIZE - 1); in AppendToMemBuffer()
|
/external/libxml2/ |
D | xmlreader.c | 93 #define CHUNK_SIZE 512 macro 839 if (xmlBufUse(inbuf) < reader->cur + CHUNK_SIZE) { in xmlTextReaderPushData() 870 if (xmlBufUse(inbuf) >= reader->cur + CHUNK_SIZE) { in xmlTextReaderPushData() 873 CHUNK_SIZE, 0); in xmlTextReaderPushData() 874 reader->cur += CHUNK_SIZE; in xmlTextReaderPushData() 897 (xmlBufUse(inbuf) - reader->cur <= CHUNK_SIZE)) { in xmlTextReaderPushData()
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
D | org.apache.commons.codec_1.3.0.v20100518-1140.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
D | org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
D | org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
D | org.eclipse.jdt.core_3.6.2.v_A76_R36x.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
/external/owasp/sanitizer/lib/commons-codec-1.4/ |
D | commons-codec-1.4.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/apache/
org/ ... |