Server IP : 127.0.0.2 / Your IP : 3.17.68.195 Web Server : Apache/2.4.18 (Ubuntu) System : User : www-data ( ) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : disk_free_space,disk_total_space,diskfreespace,dl,exec,fpaththru,getmyuid,getmypid,highlight_file,ignore_user_abord,leak,listen,link,opcache_get_configuration,opcache_get_status,passthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,php_uname,phpinfo,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix,_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,pclose,popen,proc_open,proc_close,proc_get_status,proc_nice,proc_terminate,shell_exec,source,show_source,system,virtual MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /lib/modules/4.4.0-1084-aws/build/include/linux/ |
Upload File : |
#ifndef __LZ4_H__ #define __LZ4_H__ /* * LZ4 Kernel Interface * * Copyright (C) 2013, LG Electronics, Kyungsik Lee <kyungsik.lee@lge.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */ #define LZ4_MEM_COMPRESS (4096 * sizeof(unsigned char *)) #define LZ4HC_MEM_COMPRESS (65538 * sizeof(unsigned char *)) /* * lz4_compressbound() * Provides the maximum size that LZ4 may output in a "worst case" scenario * (input data not compressible) */ static inline size_t lz4_compressbound(size_t isize) { return isize + (isize / 255) + 16; } /* * lz4_compress() * src : source address of the original data * src_len : size of the original data * dst : output buffer address of the compressed data * This requires 'dst' of size LZ4_COMPRESSBOUND. * dst_len : is the output size, which is returned after compress done * workmem : address of the working memory. * This requires 'workmem' of size LZ4_MEM_COMPRESS. * return : Success if return 0 * Error if return (< 0) * note : Destination buffer and workmem must be already allocated with * the defined size. */ int lz4_compress(const unsigned char *src, size_t src_len, unsigned char *dst, size_t *dst_len, void *wrkmem); /* * lz4hc_compress() * src : source address of the original data * src_len : size of the original data * dst : output buffer address of the compressed data * This requires 'dst' of size LZ4_COMPRESSBOUND. * dst_len : is the output size, which is returned after compress done * workmem : address of the working memory. * This requires 'workmem' of size LZ4HC_MEM_COMPRESS. * return : Success if return 0 * Error if return (< 0) * note : Destination buffer and workmem must be already allocated with * the defined size. */ int lz4hc_compress(const unsigned char *src, size_t src_len, unsigned char *dst, size_t *dst_len, void *wrkmem); /* * lz4_decompress() * src : source address of the compressed data * src_len : is the input size, whcih is returned after decompress done * dest : output buffer address of the decompressed data * actual_dest_len: is the size of uncompressed data, supposing it's known * return : Success if return 0 * Error if return (< 0) * note : Destination buffer must be already allocated. * slightly faster than lz4_decompress_unknownoutputsize() */ int lz4_decompress(const unsigned char *src, size_t *src_len, unsigned char *dest, size_t actual_dest_len); /* * lz4_decompress_unknownoutputsize() * src : source address of the compressed data * src_len : is the input size, therefore the compressed size * dest : output buffer address of the decompressed data * dest_len: is the max size of the destination buffer, which is * returned with actual size of decompressed data after * decompress done * return : Success if return 0 * Error if return (< 0) * note : Destination buffer must be already allocated. */ int lz4_decompress_unknownoutputsize(const unsigned char *src, size_t src_len, unsigned char *dest, size_t *dest_len); #endif