OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:srcByteCount
(Results
1 - 2
of
2
) sorted by null
/packages/apps/Settings/src/com/android/settings/bluetooth/
Utf8ByteLengthFilter.java
49
int
srcByteCount
= 0;
53
srcByteCount
+= (c < (char) 0x0080) ? 1 : (c < (char) 0x0800 ? 2 : 3);
67
} else if (keepBytes >=
srcByteCount
) {
/libcore/luni/src/main/java/java/nio/
ByteBuffer.java
767
int
srcByteCount
= src.remaining();
768
if (
srcByteCount
> remaining()) {
785
Memory.memmove(dstObject, dstOffset, srcObject, srcOffset,
srcByteCount
);
787
dst.position(dst.position() +
srcByteCount
);
[
all
...]
Completed in 203 milliseconds