HomeSort by relevance Sort by last modified time
    Searched refs:cmpBuf (Results 1 - 7 of 7) sorted by null

  /external/lz4/examples/
blockStreaming_lineByLine.c 45 char* const cmpBuf = (char*) malloc(cmpBufBytes);
68 lz4Stream, inpPtr, cmpBuf, inpBytes, cmpBufBytes, 1);
71 write_bin(outFp, cmpBuf, cmpBytes);
81 free(cmpBuf);
93 char* const cmpBuf = (char*) malloc(LZ4_COMPRESSBOUND(messageMaxBytes));
103 if (read_bin(inpFp, cmpBuf, cmpBytes) != cmpBytes) break;
108 lz4StreamDecode, cmpBuf, decPtr, cmpBytes, (int) messageMaxBytes);
119 free(cmpBuf);
blockStreaming_doubleBuffer.c 57 char cmpBuf[LZ4_COMPRESSBOUND(BLOCK_BYTES)];
59 lz4Stream, inpPtr, cmpBuf, inpBytes, sizeof(cmpBuf), 1);
64 write_bin(outFp, cmpBuf, (size_t) cmpBytes);
85 char cmpBuf[LZ4_COMPRESSBOUND(BLOCK_BYTES)];
94 const size_t readCount1 = read_bin(inpFp, cmpBuf, (size_t) cmpBytes);
103 lz4StreamDecode, cmpBuf, decPtr, cmpBytes, BLOCK_BYTES);
HCStreaming_ringBuffer.c 70 { char cmpBuf[CMPBUFSIZE];
71 const int cmpBytes = LZ4_compress_HC_continue(lz4Stream, inpPtr, cmpBuf, inpBytes, CMPBUFSIZE);
75 write_bin(outFp, cmpBuf, cmpBytes);
98 char cmpBuf[CMPBUFSIZE];
105 r1 = read_bin(inpFp, cmpBuf, cmpBytes);
112 lz4StreamDecode, cmpBuf, decPtr, cmpBytes, MESSAGE_MAX_BYTES);
blockStreaming_ringBuffer.c 68 char cmpBuf[CMPBUFSIZE];
69 const int cmpBytes = LZ4_compress_fast_continue(lz4Stream, inpPtr, cmpBuf, inpBytes, CMPBUFSIZE, 0);
72 write_bin(outFp, cmpBuf, cmpBytes);
94 char cmpBuf[CMPBUFSIZE];
100 const size_t r1 = read_bin(inpFp, cmpBuf, cmpBytes);
107 lz4StreamDecode, cmpBuf, decPtr, cmpBytes, MESSAGE_MAX_BYTES);
dictionaryRandomAccess.c 83 char cmpBuf[LZ4_COMPRESSBOUND(BLOCK_BYTES)];
85 lz4Stream, inpBuf, cmpBuf, inpBytes, sizeof(cmpBuf), 1);
87 write_bin(outFp, cmpBuf, (size_t)cmpBytes);
147 char cmpBuf[LZ4_COMPRESSBOUND(BLOCK_BYTES)];
151 const size_t read = read_bin(inpFp, cmpBuf, (size_t)cmpBytes);
159 lz4StreamDecode, cmpBuf, decBuf, cmpBytes, BLOCK_BYTES);
  /prebuilts/tools/common/m2/repository/net/sourceforge/htmlunit/htmlunit-core-js/2.14/
htmlunit-core-js-2.14.jar 
  /prebuilts/tools/common/m2/repository/org/mozilla/rhino/1.7R3/
rhino-1.7R3.jar 

Completed in 176 milliseconds