Searched refs:COMP_CTX (Results 1 - 19 of 19) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/include/openssl/
H A Dcomp.h11 typedef struct comp_ctx_st COMP_CTX; typedef in typeref:struct:comp_ctx_st
17 int (*init)(COMP_CTX *ctx);
18 void (*finish)(COMP_CTX *ctx);
19 int (*compress)(COMP_CTX *ctx,
22 int (*expand)(COMP_CTX *ctx,
42 COMP_CTX *COMP_CTX_new(COMP_METHOD *meth);
43 void COMP_CTX_free(COMP_CTX *ctx);
44 int COMP_compress_block(COMP_CTX *ctx, unsigned char *out, int olen,
46 int COMP_expand_block(COMP_CTX *ctx, unsigned char *out, int olen,
H A Dssl.h913 COMP_CTX *expand; /* uncompress */
921 COMP_CTX *compress; /* compression */
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/comp/
H A Dcomp.h11 typedef struct comp_ctx_st COMP_CTX; typedef in typeref:struct:comp_ctx_st
17 int (*init)(COMP_CTX *ctx);
18 void (*finish)(COMP_CTX *ctx);
19 int (*compress)(COMP_CTX *ctx,
22 int (*expand)(COMP_CTX *ctx,
42 COMP_CTX *COMP_CTX_new(COMP_METHOD *meth);
43 void COMP_CTX_free(COMP_CTX *ctx);
44 int COMP_compress_block(COMP_CTX *ctx, unsigned char *out, int olen,
46 int COMP_expand_block(COMP_CTX *ctx, unsigned char *out, int olen,
H A Dcomp_lib.c7 COMP_CTX *COMP_CTX_new(COMP_METHOD *meth)
9 COMP_CTX *ret;
11 if ((ret=(COMP_CTX *)OPENSSL_malloc(sizeof(COMP_CTX))) == NULL)
16 memset(ret,0,sizeof(COMP_CTX));
26 void COMP_CTX_free(COMP_CTX *ctx)
37 int COMP_compress_block(COMP_CTX *ctx, unsigned char *out, int olen,
55 int COMP_expand_block(COMP_CTX *ctx, unsigned char *out, int olen,
H A Dc_rle.c7 static int rle_compress_block(COMP_CTX *ctx, unsigned char *out,
9 static int rle_expand_block(COMP_CTX *ctx, unsigned char *out,
28 static int rle_compress_block(COMP_CTX *ctx, unsigned char *out,
44 static int rle_expand_block(COMP_CTX *ctx, unsigned char *out,
H A Dc_zlib.c27 static int zlib_stateful_init(COMP_CTX *ctx);
28 static void zlib_stateful_finish(COMP_CTX *ctx);
29 static int zlib_stateful_compress_block(COMP_CTX *ctx, unsigned char *out,
31 static int zlib_stateful_expand_block(COMP_CTX *ctx, unsigned char *out,
53 static int zlib_compress_block(COMP_CTX *ctx, unsigned char *out,
55 static int zlib_expand_block(COMP_CTX *ctx, unsigned char *out,
145 static int zlib_stateful_init(COMP_CTX *ctx)
186 static void zlib_stateful_finish(COMP_CTX *ctx)
191 static int zlib_stateful_compress_block(COMP_CTX *ctx, unsigned char *out,
218 static int zlib_stateful_expand_block(COMP_CTX *ct
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/comp/
H A Dcomp.h15 typedef struct comp_ctx_st COMP_CTX; typedef in typeref:struct:comp_ctx_st
20 int (*init) (COMP_CTX *ctx);
21 void (*finish) (COMP_CTX *ctx);
22 int (*compress) (COMP_CTX *ctx,
25 int (*expand) (COMP_CTX *ctx,
44 COMP_CTX *COMP_CTX_new(COMP_METHOD *meth);
45 void COMP_CTX_free(COMP_CTX *ctx);
46 int COMP_compress_block(COMP_CTX *ctx, unsigned char *out, int olen,
48 int COMP_expand_block(COMP_CTX *ctx, unsigned char *out, int olen,
H A Dcomp_lib.c7 COMP_CTX *COMP_CTX_new(COMP_METHOD *meth)
9 COMP_CTX *ret;
11 if ((ret = (COMP_CTX *)OPENSSL_malloc(sizeof(COMP_CTX))) == NULL) {
15 memset(ret, 0, sizeof(COMP_CTX));
24 void COMP_CTX_free(COMP_CTX *ctx)
35 int COMP_compress_block(COMP_CTX *ctx, unsigned char *out, int olen,
51 int COMP_expand_block(COMP_CTX *ctx, unsigned char *out, int olen,
H A Dc_rle.c7 static int rle_compress_block(COMP_CTX *ctx, unsigned char *out,
10 static int rle_expand_block(COMP_CTX *ctx, unsigned char *out,
30 static int rle_compress_block(COMP_CTX *ctx, unsigned char *out,
46 static int rle_expand_block(COMP_CTX *ctx, unsigned char *out,
H A Dc_zlib.c27 static int zlib_stateful_init(COMP_CTX *ctx);
28 static void zlib_stateful_finish(COMP_CTX *ctx);
29 static int zlib_stateful_compress_block(COMP_CTX *ctx, unsigned char *out,
32 static int zlib_stateful_expand_block(COMP_CTX *ctx, unsigned char *out,
53 static int zlib_compress_block(COMP_CTX *ctx, unsigned char *out,
56 static int zlib_expand_block(COMP_CTX *ctx, unsigned char *out,
141 static int zlib_stateful_init(COMP_CTX *ctx)
182 static void zlib_stateful_finish(COMP_CTX *ctx)
193 static int zlib_stateful_compress_block(COMP_CTX *ctx, unsigned char *out,
221 static int zlib_stateful_expand_block(COMP_CTX *ct
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/comp/
H A Dcomp.h15 typedef struct comp_ctx_st COMP_CTX; typedef in typeref:struct:comp_ctx_st
20 int (*init) (COMP_CTX *ctx);
21 void (*finish) (COMP_CTX *ctx);
22 int (*compress) (COMP_CTX *ctx,
25 int (*expand) (COMP_CTX *ctx,
44 COMP_CTX *COMP_CTX_new(COMP_METHOD *meth);
45 void COMP_CTX_free(COMP_CTX *ctx);
46 int COMP_compress_block(COMP_CTX *ctx, unsigned char *out, int olen,
48 int COMP_expand_block(COMP_CTX *ctx, unsigned char *out, int olen,
H A Dcomp_lib.c7 COMP_CTX *COMP_CTX_new(COMP_METHOD *meth)
9 COMP_CTX *ret;
11 if ((ret = (COMP_CTX *)OPENSSL_malloc(sizeof(COMP_CTX))) == NULL) {
15 memset(ret, 0, sizeof(COMP_CTX));
24 void COMP_CTX_free(COMP_CTX *ctx)
35 int COMP_compress_block(COMP_CTX *ctx, unsigned char *out, int olen,
51 int COMP_expand_block(COMP_CTX *ctx, unsigned char *out, int olen,
H A Dc_rle.c7 static int rle_compress_block(COMP_CTX *ctx, unsigned char *out,
10 static int rle_expand_block(COMP_CTX *ctx, unsigned char *out,
30 static int rle_compress_block(COMP_CTX *ctx, unsigned char *out,
46 static int rle_expand_block(COMP_CTX *ctx, unsigned char *out,
H A Dc_zlib.c27 static int zlib_stateful_init(COMP_CTX *ctx);
28 static void zlib_stateful_finish(COMP_CTX *ctx);
29 static int zlib_stateful_compress_block(COMP_CTX *ctx, unsigned char *out,
32 static int zlib_stateful_expand_block(COMP_CTX *ctx, unsigned char *out,
53 static int zlib_compress_block(COMP_CTX *ctx, unsigned char *out,
56 static int zlib_expand_block(COMP_CTX *ctx, unsigned char *out,
141 static int zlib_stateful_init(COMP_CTX *ctx)
182 static void zlib_stateful_finish(COMP_CTX *ctx)
193 static int zlib_stateful_compress_block(COMP_CTX *ctx, unsigned char *out,
221 static int zlib_stateful_expand_block(COMP_CTX *ct
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/ssl/
H A Ddtls1.h139 COMP_CTX *compress; /* compression */
H A Dssl.h1517 COMP_CTX *expand; /* uncompress */
1524 COMP_CTX *compress; /* compression */
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/ssl/
H A Ddtls1.h139 COMP_CTX *compress; /* compression */
H A Dssl.h1517 COMP_CTX *expand; /* uncompress */
1524 COMP_CTX *compress; /* compression */
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/ssl/
H A Dssl.h913 COMP_CTX *expand; /* uncompress */
921 COMP_CTX *compress; /* compression */

Completed in 233 milliseconds