OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GetUint8
(Results
1 - 3
of
3
) sorted by null
/external/webrtc/talk/media/base/
rtputils.cc
40
bool
GetUint8
(const void* data, size_t offset, int* value) {
93
return
GetUint8
(data, kRtpFlagsOffset, value);
100
if (!
GetUint8
(data, kRtpPayloadTypeOffset, value)) {
157
return
GetUint8
(data, kRtcpPayloadTypeOffset, value);
/external/flatbuffers/go/
encode.go
23
return byte(
GetUint8
(buf))
31
//
GetUint8
decodes a little-endian uint8 from a byte slice.
32
func
GetUint8
(buf []byte) (n uint8) {
table.go
77
//
GetUint8
retrieves a uint8 at the given offset.
78
func (t *Table)
GetUint8
(off UOffsetT) uint8 {
79
return
GetUint8
(t.Bytes[off:])
187
return t.
GetUint8
(t.Pos + UOffsetT(off))
Completed in 8800 milliseconds