HomeSort by relevance Sort by last modified time
    Searched refs:chunk (Results 326 - 350 of 476) sorted by null

<<11121314151617181920

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
httplib.py 359 self.chunk_left = _UNKNOWN # bytes left to read in current chunk
587 raise LineTooLong("chunk size")
590 line = line[:i] # strip chunk-extensions
608 self._safe_read(2) # toss the CRLF at the end of the chunk
615 # we read the whole chunk, get another
616 self._safe_read(2) # toss the CRLF at the end of the chunk
658 chunk = self.fp.read(min(amt, MAXAMOUNT))
659 if not chunk:
661 s.append(chunk)
662 amt -= len(chunk)
    [all...]
zipfile.py 513 PATTERN = re.compile(r'^(?P<chunk>[^\r\n]+)|(?P<newline>\n|\r\n?)')
581 # The pattern returns either a line chunk or a newline, but not
596 chunk = match.group('chunk')
598 chunk = chunk[: limit - len(line)]
600 self._offset += len(chunk)
601 line += chunk
608 chunk = self.read(n)
609 self._offset -= len(chunk)
    [all...]
plistlib.py 361 chunk = s[i : i + maxbinsize]
362 pieces.append(binascii.b2a_base64(chunk))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
pool.py 268 return (item for chunk in result for item in chunk)
286 return (item for chunk in result for item in chunk)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
httplib.py 359 self.chunk_left = _UNKNOWN # bytes left to read in current chunk
587 raise LineTooLong("chunk size")
590 line = line[:i] # strip chunk-extensions
608 self._safe_read(2) # toss the CRLF at the end of the chunk
615 # we read the whole chunk, get another
616 self._safe_read(2) # toss the CRLF at the end of the chunk
658 chunk = self.fp.read(min(amt, MAXAMOUNT))
659 if not chunk:
661 s.append(chunk)
662 amt -= len(chunk)
    [all...]
zipfile.py 513 PATTERN = re.compile(r'^(?P<chunk>[^\r\n]+)|(?P<newline>\n|\r\n?)')
581 # The pattern returns either a line chunk or a newline, but not
596 chunk = match.group('chunk')
598 chunk = chunk[: limit - len(line)]
600 self._offset += len(chunk)
601 line += chunk
608 chunk = self.read(n)
609 self._offset -= len(chunk)
    [all...]
plistlib.py 361 chunk = s[i : i + maxbinsize]
362 pieces.append(binascii.b2a_base64(chunk))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
pool.py 268 return (item for chunk in result for item in chunk)
286 return (item for chunk in result for item in chunk)
  /external/v8/src/
hydrogen.h     [all...]
deoptimizer.cc 1161 MemoryChunk* chunk = local
    [all...]
  /external/elfutils/src/
elflint.c 3185 unsigned const char *chunk = q; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/image-decoders/webp/
WEBPImageDecoder.cpp 238 // This is because ANIM chunk always precedes ANMF chunks.
371 const char* profileData = reinterpret_cast<const char*>(chunkIterator.chunk.bytes);
372 size_t profileSize = chunkIterator.chunk.size;
  /external/chromium_org/v8/src/
mark-compact.h 963 explicit MarkBitCellIterator(MemoryChunk* chunk)
964 : chunk_(chunk) {
  /external/libvorbis/doc/
08-residue.tex 26 classifies each chunk, encodes the chunk classifications and finally
53 in a classification chunk are built into a single scalar that
54 represents the classification numbers in that chunk. In the below
  /frameworks/base/graphics/java/android/graphics/
Bitmap.java 273 * Sets the nine patch chunk.
275 * @param chunk The definition of the nine patch
279 public void setNinePatchChunk(byte[] chunk) {
280 mNinePatchChunk = chunk;
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/lib/html/parser/
HtmlTree.java 262 // Don't forget the last chunk!
276 for (String chunk : chunks) {
277 debug.append("\nChunk:\n").append(chunk);
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
HtmlTree.java 295 // Don't forget the last chunk!
309 for (String chunk : chunks) {
310 debug.append("\nChunk:\n").append(chunk);
  /external/chromium/net/spdy/
spdy_proxy_client_socket_unittest.cc 580 scoped_ptr<spdy::SpdyFrame> chunk(ConstructBodyFrame(chunk_data.data(),
584 CreateMockWrite(*chunk, 2, false),
585 CreateMockWrite(*chunk, 3, false),
586 CreateMockWrite(*chunk, 4, false)
    [all...]
  /external/chromium_org/chrome/installer/mac/
pkg-dmg     [all...]
  /external/chromium_org/net/spdy/
spdy_proxy_client_socket_unittest.cc 667 scoped_ptr<SpdyFrame> chunk(ConstructBodyFrame(chunk_data.data(),
671 CreateMockWrite(*chunk, 2, SYNCHRONOUS),
672 CreateMockWrite(*chunk, 3, SYNCHRONOUS),
673 CreateMockWrite(*chunk, 4, SYNCHRONOUS)
    [all...]
  /external/chromium_org/third_party/openssl/openssl/ssl/
t1_enc.c 161 int chunk; local
169 chunk=EVP_MD_size(md);
170 OPENSSL_assert(chunk >= 0);
218 if (olen > chunk)
    [all...]
  /external/clang/include/clang/Sema/
DeclSpec.h     [all...]
  /external/libpng/
pngset.c 209 png_warning(png_ptr, "Insufficient memory for hIST chunk data.");
611 png_warning(png_ptr, "Insufficient memory to process iCCP chunk.");
747 png_warning(png_ptr, "iTXt chunk not supported.");
822 png_debug1(3, "transferred text chunk %d", info_ptr->num_text);
881 "tRNS chunk has out-of-range samples for bit_depth");
944 "Out of memory while processing sPLT chunk");
953 "Out of memory while processing sPLT chunk");
990 "Out of memory while processing unknown chunk.");
1020 "Out of memory while processing unknown chunk.");
1036 int chunk, int location
    [all...]
  /external/openssl/ssl/
t1_enc.c 161 int chunk; local
169 chunk=EVP_MD_size(md);
170 OPENSSL_assert(chunk >= 0);
218 if (olen > chunk)
    [all...]
  /external/qemu/distrib/libpng-1.2.19/
pngset.c 242 png_warning(png_ptr, "Insufficient memory for hIST chunk data.");
690 png_warning(png_ptr, "Insufficient memory to process iCCP chunk.");
811 png_warning(png_ptr, "iTXt chunk not supported.");
883 png_debug1(3, "transferred text chunk %d\n", info_ptr->num_text);
980 "Out of memory while processing sPLT chunk");
992 "Out of memory while processing sPLT chunk");
1026 "Out of memory while processing unknown chunk.");
    [all...]

Completed in 1572 milliseconds

<<11121314151617181920