Skip to content
Snippets Groups Projects
Select Git revision
  • f91e72100a42a125e6994532e0cd8733e44ca97a
  • master default protected
  • streebog
  • gost28147
  • master-updates
  • ed448
  • shake256
  • curve448
  • ecc-sqrt
  • gosthash94cp
  • cmac64
  • block16-refactor
  • siv-mode
  • cmac-layout
  • delete-des-compat
  • delete-rsa_blind
  • aes-struct-layout
  • release-3.4-fixes
  • struct-layout
  • attribute-deprecated
  • rename-data-symbols
  • nettle_3.5.1_release_20190627
  • nettle_3.5_release_20190626
  • nettle_3.5rc1
  • nettle_3.4.1_release_20181204
  • nettle_3.4.1rc1
  • nettle_3.4_release_20171119
  • nettle_3.4rc2
  • nettle_3.4rc1
  • nettle_3.3_release_20161001
  • nettle_3.2_release_20160128
  • nettle_3.1.1_release_20150424
  • nettle_3.1_release_20150407
  • nettle_3.1rc3
  • nettle_3.1rc2
  • nettle_3.1rc1
  • nettle_3.0_release_20140607
  • nettle_2.7.1_release_20130528
  • nettle_2.7_release_20130424
  • nettle_2.6_release_20130116
  • nettle_2.5_release_20120707
41 results

aes-decrypt-table.c

Blame
  • Forked from Nettle / nettle
    Source project has a limited visibility.
    dummy.c 1001 B
    /*
    || This file is part of Pike. For copyright information see COPYRIGHT.
    || Pike is distributed under GPL, LGPL and MPL. See the file COPYING
    || for more information.
    || $Id: dummy.c,v 1.11 2003/03/29 14:22:27 marcus Exp $
    */
    
    /*
     * Glue needed on Solaris if libgcc.a isn't compiled with -fpic.
     *
     * Henrik Grubbstrm 1997-03-06
     */
    
    #ifdef HAVE_CONFIG_H
    #include "config.h"
    #endif /* HAVE_CONFIG_H */
    
    #include "global.h"
    
    #ifdef HAVE_MYSQL
    
    typedef INT64 _ll_t;
    typedef unsigned INT64 _ull_t;
    
    _ll_t mysql_dummy_dum_dum(_ull_t a, _ull_t b, _ll_t c, _ll_t d) {
    #ifdef HAVE_LDIV
      ldiv(10, 3);
    #endif
    #ifdef HAVE_OPEN
      open(0, 0);
    #endif
    #ifdef HAVE_SOPEN
      sopen(0, 0, 0);
    #endif
    #ifdef HAVE_CLOSE
      close(0);
    #endif
    #ifdef HAVE_READ
      read(0, 0, 0);
    #endif
    #ifdef HAVE_FILENO
      fileno(0);
    #endif
    #ifdef HAVE_PUTS
      puts(0);
    #endif
    #ifdef HAVE_FGETS
      fgets(0, 0, 0);
    #endif
    
      return(a%b+(c%d)+(c/d)+(a/b));
    }
    
    #else
    static int place_holder;	/* Keep the compiler happy */
    #endif /* HAVE_MYSQL */