Home
last modified time | relevance | path

Searched refs:CHUNK_SIZE (Results 1 – 2 of 2) sorted by relevance

/build/make/tools/product_config/src/com/android/build/config/
DCsvParser.java36 private static final int CHUNK_SIZE = 64 * 1024; field in CsvParser
116 char[] buf = new char[CHUNK_SIZE]; in parse()
202 buf = new char[old.length + CHUNK_SIZE]; in parse()
/build/make/tools/
Dcompare_builds.py509 CHUNK_SIZE = 32*1024
513 size = min(CHUNK_SIZE, remaining)
514 if first_file.read(CHUNK_SIZE) != second_file.read(CHUNK_SIZE):