Searched refs:MAX_CHUNK (Results 1 - 5 of 5) sorted by relevance

/external/apache-http/src/org/apache/http/impl/io/
H A DAbstractSessionOutputBuffer.java61 private static final int MAX_CHUNK = 256; field in class:AbstractSessionOutputBuffer
108 // if the byte array is larger then MAX_CHUNK
110 if (len > MAX_CHUNK || len > this.buffer.capacity()) {
/external/robolectric/lib/main/
H A Dhttpcore-4.0.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/protocol/ ...
H A Dsqlite-jdbc-3.7.2.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/org. ...
/external/chromium_org/tools/win/split_link/viz.js/
H A Dviz.js636 var MAX_CHUNK = 1024; // split up into chunks, because .apply on a huge string can overflow the stack
639 curr = String.fromCharCode.apply(String, HEAPU8.subarray(ptr, ptr + Math.min(length, MAX_CHUNK)));
641 ptr += MAX_CHUNK;
642 length -= MAX_CHUNK;
[all...]
/external/chromium_org/v8/tools/profviz/
H A Dgnuplot-4.6.3-emscripten.js698 var MAX_CHUNK = 1024; // split up into chunks, because .apply on a huge string can overflow the stack
701 curr = String.fromCharCode.apply(String, HEAPU8.subarray(ptr, ptr + Math.min(length, MAX_CHUNK)));
703 ptr += MAX_CHUNK;
704 length -= MAX_CHUNK;
[all...]

Completed in 343 milliseconds