jetty-9 minor optimisations
This commit is contained in:
parent
69b9856998
commit
b1bd23e3cb
|
@ -119,7 +119,7 @@ public class Trie<V>
|
||||||
{
|
{
|
||||||
char c=s.charAt(k);
|
char c=s.charAt(k);
|
||||||
|
|
||||||
int index=c>=0&&c<0x7f?__lookup[c]:-1;
|
int index=__lookup[c&0x7f];
|
||||||
if (index>=0)
|
if (index>=0)
|
||||||
{
|
{
|
||||||
int idx=t*ROW_SIZE+index;
|
int idx=t*ROW_SIZE+index;
|
||||||
|
@ -173,7 +173,7 @@ public class Trie<V>
|
||||||
for(int i=0; i < len; i++)
|
for(int i=0; i < len; i++)
|
||||||
{
|
{
|
||||||
char c=s.charAt(i);
|
char c=s.charAt(i);
|
||||||
int index=c>=0&&c<0x7f?__lookup[c]:-1;
|
int index=__lookup[c&0x7f];
|
||||||
if (index>=0)
|
if (index>=0)
|
||||||
{
|
{
|
||||||
int idx=t*ROW_SIZE+index;
|
int idx=t*ROW_SIZE+index;
|
||||||
|
@ -207,7 +207,7 @@ public class Trie<V>
|
||||||
for(int i=0; i < len; i++)
|
for(int i=0; i < len; i++)
|
||||||
{
|
{
|
||||||
byte c=b.get(offset+i);
|
byte c=b.get(offset+i);
|
||||||
int index=c>=0&&c<0x7f?__lookup[c]:-1;
|
int index=__lookup[c&0x7f];
|
||||||
if (index>=0)
|
if (index>=0)
|
||||||
{
|
{
|
||||||
int idx=t*ROW_SIZE+index;
|
int idx=t*ROW_SIZE+index;
|
||||||
|
@ -246,7 +246,7 @@ public class Trie<V>
|
||||||
for(int i=0; i < len; i++)
|
for(int i=0; i < len; i++)
|
||||||
{
|
{
|
||||||
byte c=b[offset+i];
|
byte c=b[offset+i];
|
||||||
int index=c>=0&&c<0x7f?__lookup[c]:-1;
|
int index=__lookup[c&0x7f];
|
||||||
if (index>=0)
|
if (index>=0)
|
||||||
{
|
{
|
||||||
int idx=t*ROW_SIZE+index;
|
int idx=t*ROW_SIZE+index;
|
||||||
|
@ -298,7 +298,7 @@ public class Trie<V>
|
||||||
for(int i=0; i < len; i++)
|
for(int i=0; i < len; i++)
|
||||||
{
|
{
|
||||||
byte c=b.get(pos++);
|
byte c=b.get(pos++);
|
||||||
int index=c>=0&&c<0x7f?__lookup[c]:-1;
|
int index=__lookup[c&0x7f];
|
||||||
if (index>=0)
|
if (index>=0)
|
||||||
{
|
{
|
||||||
int idx=t*ROW_SIZE+index;
|
int idx=t*ROW_SIZE+index;
|
||||||
|
|
|
@ -532,7 +532,7 @@ public class StdErrLog extends AbstractLogger
|
||||||
{
|
{
|
||||||
long now = System.currentTimeMillis();
|
long now = System.currentTimeMillis();
|
||||||
int ms=(int)(now%1000);
|
int ms=(int)(now%1000);
|
||||||
String d = _dateCache.format(now);
|
String d = _dateCache.now();
|
||||||
tag(buffer,d,ms,level);
|
tag(buffer,d,ms,level);
|
||||||
format(buffer,msg,args);
|
format(buffer,msg,args);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue