OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:thisbyte
(Results
1 - 4
of
4
) sorted by null
/external/bouncycastle/src/main/java/org/bouncycastle/math/ec/
IntArray.java
197
byte
thisByte
= (byte) (highestInt >>> (8 * j));
198
if (trailingZeroBytesDone || (
thisByte
!= 0))
201
temp[barrI++] =
thisByte
;
/libcore/luni/src/main/java/java/nio/
ShortBuffer.java
151
short
thisByte
, otherByte;
153
thisByte
= get(thisPos);
155
if (
thisByte
!= otherByte) {
156
return
thisByte
< otherByte ? -1 : 1;
CharBuffer.java
217
char
thisByte
, otherByte;
219
thisByte
= get(thisPos);
221
if (
thisByte
!= otherByte) {
222
return
thisByte
< otherByte ? -1 : 1;
ByteBuffer.java
299
byte
thisByte
, otherByte;
301
thisByte
= get(thisPos);
303
if (
thisByte
!= otherByte) {
304
return
thisByte
< otherByte ? -1 : 1;
[
all
...]
Completed in 187 milliseconds