HomeSort by relevance Sort by last modified time
    Searched defs:__rfc1421alphabet (Results 1 - 2 of 2) sorted by null

  /external/jetty/src/java/org/eclipse/jetty/util/
B64Code.java 38 static final char[] __rfc1421alphabet= field in class:B64Code
54 __rfc1421nibbles[(byte)__rfc1421alphabet[b]]=b;
123 c[ci++]=__rfc1421alphabet[(b0>>>2)&0x3f];
124 c[ci++]=__rfc1421alphabet[(b0<<4)&0x3f|(b1>>>4)&0x0f];
125 c[ci++]=__rfc1421alphabet[(b1<<2)&0x3f|(b2>>>6)&0x03];
126 c[ci++]=__rfc1421alphabet[b2&077];
136 c[ci++]=__rfc1421alphabet[(b0>>>2)&0x3f];
137 c[ci++]=__rfc1421alphabet[(b0<<4)&0x3f|(b1>>>4)&0x0f];
138 c[ci++]=__rfc1421alphabet[(b1<<2)&0x3f];
144 c[ci++]=__rfc1421alphabet[(b0>>>2)&0x3f]
    [all...]
  /prebuilts/tools/common/m2/repository/org/eclipse/jetty/jetty-util/8.1.14.v20131031/
jetty-util-8.1.14.v20131031.jar 

Completed in 270 milliseconds