OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:MASK_8BITS
(Results
1 - 2
of
2
) sorted by null
/external/sl4a/Common/src/org/apache/commons/codec/binary/
Base64Codec.java
138
private static final int
MASK_8BITS
= 0xff;
560
buffer[pos++] = (byte) ((x >> 16) &
MASK_8BITS
);
561
buffer[pos++] = (byte) ((x >> 8) &
MASK_8BITS
);
562
buffer[pos++] = (byte) (x &
MASK_8BITS
);
577
buffer[pos++] = (byte) ((x >> 16) &
MASK_8BITS
);
580
buffer[pos++] = (byte) ((x >> 16) &
MASK_8BITS
);
581
buffer[pos++] = (byte) ((x >> 8) &
MASK_8BITS
);
[
all
...]
/external/owasp/sanitizer/lib/commons-codec-1.4/
commons-codec-1.4.jar
Completed in 103 milliseconds