LCOV - code coverage report
Current view: top level - comp - c_rle.c (source / functions) Hit Total Coverage
Test: lcov_coverage_final.info Lines: 0 13 0.0 %
Date: 2014-08-02 Functions: 0 3 0.0 %
Branches: 0 8 0.0 %

           Branch data     Line data    Source code
       1                 :            : #include <stdio.h>
       2                 :            : #include <stdlib.h>
       3                 :            : #include <string.h>
       4                 :            : #include <openssl/objects.h>
       5                 :            : #include <openssl/comp.h>
       6                 :            : 
       7                 :            : static int rle_compress_block(COMP_CTX *ctx, unsigned char *out,
       8                 :            :         unsigned int olen, unsigned char *in, unsigned int ilen);
       9                 :            : static int rle_expand_block(COMP_CTX *ctx, unsigned char *out,
      10                 :            :         unsigned int olen, unsigned char *in, unsigned int ilen);
      11                 :            : 
      12                 :            : static COMP_METHOD rle_method={
      13                 :            :         NID_rle_compression,
      14                 :            :         LN_rle_compression,
      15                 :            :         NULL,
      16                 :            :         NULL,
      17                 :            :         rle_compress_block,
      18                 :            :         rle_expand_block,
      19                 :            :         NULL,
      20                 :            :         NULL,
      21                 :            :         };
      22                 :            : 
      23                 :          0 : COMP_METHOD *COMP_rle(void)
      24                 :            :         {
      25                 :          0 :         return(&rle_method);
      26                 :            :         }
      27                 :            : 
      28                 :          0 : static int rle_compress_block(COMP_CTX *ctx, unsigned char *out,
      29                 :            :              unsigned int olen, unsigned char *in, unsigned int ilen)
      30                 :            :         {
      31                 :            :         /* int i; */
      32                 :            : 
      33         [ #  # ]:          0 :         if (olen < (ilen+1))
      34                 :            :                 {
      35                 :            :                 /* ZZZZZZZZZZZZZZZZZZZZZZ */
      36                 :            :                 return(-1);
      37                 :            :                 }
      38                 :            : 
      39                 :          0 :         *(out++)=0;
      40                 :          0 :         memcpy(out,in,ilen);
      41                 :          0 :         return(ilen+1);
      42                 :            :         }
      43                 :            : 
      44                 :          0 : static int rle_expand_block(COMP_CTX *ctx, unsigned char *out,
      45                 :            :              unsigned int olen, unsigned char *in, unsigned int ilen)
      46                 :            :         {
      47                 :            :         int i;
      48                 :            : 
      49 [ #  # ][ #  # ]:          0 :         if (ilen == 0 || olen < (ilen-1))
      50                 :            :                 {
      51                 :            :                 /* ZZZZZZZZZZZZZZZZZZZZZZ */
      52                 :            :                 return(-1);
      53                 :            :                 }
      54                 :            : 
      55                 :          0 :         i= *(in++);
      56         [ #  # ]:          0 :         if (i == 0)
      57                 :            :                 {
      58                 :          0 :                 memcpy(out,in,ilen-1);
      59                 :            :                 }
      60                 :          0 :         return(ilen-1);
      61                 :            :         }

Generated by: LCOV version 1.9