replace every call to toupper with one to our own tolower_ascii
authorDavid Kalnischkies <kalnischkies@gmail.com>
Tue, 30 Mar 2010 10:38:38 +0000 (12:38 +0200)
committerDavid Kalnischkies <kalnischkies@gmail.com>
Tue, 30 Mar 2010 10:38:38 +0000 (12:38 +0200)
commit6dc60370a750334cb701386cfa4ef9719db9078a
treeda472df5380711af32eefa61c6220ed2520ade6d
parentb569b4650c647c3aef5341c40d208a37211b57aa
replace every call to toupper with one to our own tolower_ascii

This sounds like a premature optimization and since Mr. Knuth we all
know that they are the root of all evil - but, and here it starts to be
interesting: As the tolower_ascii method is by far the most called
method we have (~60 Mio. times) and as we compare only strings containing
ascii characters (package names, configuration options) using our own
method reduces execution time of APT by 4% plus it avoids that the
locale settings can influence us.
apt-pkg/contrib/error.h
apt-pkg/contrib/macros.h
apt-pkg/contrib/strutl.cc
apt-pkg/contrib/strutl.h
debian/changelog