Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Sable/axml
/ u8length
Method
u8length
src/pxb/android/StringItems.java:74–80 ·
view source on GitHub ↗
(ByteBuffer in)
Source
from the content-addressed store, hash-verified
72
}
73
74
static
int
u8length(ByteBuffer in) {
75
int
len = in.get() & 0xFF;
76
if
((len & 0x80) != 0) {
77
len = ((len & 0x7F) << 8) | (in.get() & 0xFF);
78
}
79
return
len;
80
}
81
82
byte[] stringData;
83
Callers
1
read
Method · 0.95
Calls
no outgoing calls
Tested by
no test coverage detected