Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/apache/trafficserver
/ EncodeToUtf32BE
Function
EncodeToUtf32BE
lib/yamlcpp/test/integration/encoding_test.cpp:67–70 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
65
}
66
67
void EncodeToUtf32BE(std::ostream& stream, int ch) {
68
stream << Byte((ch >> 24) & 0xFF) << Byte((ch >> 16) & 0xFF)
69
<< Byte((ch >> 8) & 0xFF) << Byte(ch & 0xFF);
70
}
71
72
class EncodingTest : public HandlerTest {
73
protected:
Callers
nothing calls this directly
Calls
1
Byte
Function · 0.85
Tested by
no test coverage detected