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

  /external/lz4/lib/
lz4frame.h 254 * `prefsPtr` is optional : you can provide NULL as argument, all preferences will then be set to default.
260 const LZ4F_preferences_t* prefsPtr);
265 * prefsPtr is optional : when NULL is provided, preferences will be set to cover worst case scenario.
270 * Result is always the same for a srcSize and prefsPtr, so it can be trusted to size reusable buffers.
273 LZ4FLIB_API size_t LZ4F_compressBound(size_t srcSize, const LZ4F_preferences_t* prefsPtr);
515 * `prefsPtr` is optional : you may provide NULL as argument,
523 const LZ4F_preferences_t* prefsPtr);
lz4frame.c 303 * prefsPtr is optional : if NULL is provided, preferences will be set to cover worst case scenario.
304 * @return is always the same for a srcSize and prefsPtr, so it can be relied upon to size reusable buffers.
314 { const LZ4F_preferences_t* const prefsPtr = (preferencesPtr==NULL) ? &prefsNull : preferencesPtr;
315 U32 const flush = prefsPtr->autoFlush | (srcSize==0);
316 LZ4F_blockSizeID_t const blockID = prefsPtr->frameInfo.blockSizeID;
327 size_t const blockCRCSize = 4 * prefsPtr->frameInfo.blockChecksumFlag;
328 size_t const frameEnd = 4 + (prefsPtr->frameInfo.contentChecksumFlag*4);
    [all...]
  /external/lz4/tests/
frametest.c     [all...]

Completed in 171 milliseconds