OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:pem_array
(Results
1 - 3
of
3
) sorted by null
/libcore/ojluni/src/main/java/sun/misc/
BASE64Encoder.java
64
private final static char
pem_array
[] = {
field in class:BASE64Encoder
90
outStream.write(
pem_array
[(a >>> 2) & 0x3F]);
91
outStream.write(
pem_array
[((a << 4) & 0x30) + ((b >>> 4) & 0xf)]);
98
outStream.write(
pem_array
[(a >>> 2) & 0x3F]);
99
outStream.write(
pem_array
[((a << 4) & 0x30) + ((b >>> 4) & 0xf)]);
100
outStream.write(
pem_array
[((b << 2) & 0x3c) + ((c >>> 6) & 0x3)]);
106
outStream.write(
pem_array
[(a >>> 2) & 0x3F]);
107
outStream.write(
pem_array
[((a << 4) & 0x30) + ((b >>> 4) & 0xf)]);
108
outStream.write(
pem_array
[((b << 2) & 0x3c) + ((c >>> 6) & 0x3)]);
109
outStream.write(
pem_array
[c & 0x3F])
[
all
...]
BASE64Decoder.java
77
private final static char
pem_array
[] = {
field in class:BASE64Decoder
95
for (int i = 0; i <
pem_array
.length; i++) {
96
pem_convert_array[
pem_array
[i]] = (byte) i;
/prebuilts/tools/common/m2/repository/org/jvnet/staxex/stax-ex/1.7.7/
stax-ex-1.7.7.jar
Completed in 98 milliseconds