Skip to content
Snippets Groups Projects
Select Git revision
  • c43e8cadd02224b249156fd2ff3e44e8f71c7b88
  • master default protected
  • nt-tools
  • 8.0
  • 9.0
  • 7.8
  • 7.6
  • 7.4
  • 7.2
  • 7.0
  • 0.6
  • rosuav/latex-markdown-renderer
  • rxnpatch/rxnpatch
  • marcus/gobject-introspection
  • rxnpatch/8.0
  • rosuav/pre-listening-ports
  • rosuav/async-annotations
  • rosuav/pgsql-ssl
  • rxnpatch/rxnpatch-broken/2023-10-06T094250
  • grubba/fdlib
  • grubba/wip/sakura/8.0
  • v8.0.2016
  • v8.0.2014
  • v8.0.2012
  • v8.0.2008
  • v8.0.2006
  • v8.0.2004
  • v8.0.2002
  • v8.0.2000
  • v8.0.1998
  • v8.0.1996
  • v8.0.1994
  • v8.0.1992
  • v8.0.1990
  • v8.0.1988
  • v8.0.1986
  • rxnpatch/clusters/8.0/2025-04-29T124414
  • rxnpatch/2025-04-29T124414
  • v8.0.1984
  • v8.0.1982
  • v8.0.1980
41 results

hashtable.c

Blame
    • Arne Goedeke's avatar
      8ac43530
      hashtable.c: do not rechain in lookup · 8ac43530
      Arne Goedeke authored
      Reordering the bucket list during lookup is very expensive. Removing it
      makes cpp() about 10% faster on a file that only contains define and if
      defined() statements.
      Additionally, the const attribute on the hash table argument is correct now.
      8ac43530
      History
      hashtable.c: do not rechain in lookup
      Arne Goedeke authored
      Reordering the bucket list during lookup is very expensive. Removing it
      makes cpp() about 10% faster on a file that only contains define and if
      defined() statements.
      Additionally, the const attribute on the hash table argument is correct now.
    odbc.pike 244 B
    /*
     * $Id: odbc.pike,v 1.3 1999/06/14 23:08:38 grubba Exp $
     *
     * Glue for the ODBC-module
     */
    
    #if constant(Odbc.odbc)
    inherit Odbc.odbc;
    #else /* !constant(Odbc.odbc) */
    #error "ODBC support not available.\n"
    #endif /* constant(Odbc.odbc) */