OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:this_packet_length
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/media/cast/net/rtcp/
test_rtcp_packet_builder.cc
205
int
this_packet_length
= (big_endian_writer_.ptr() - ptr_of_length_ - 2);
local
206
DCHECK_EQ(0,
this_packet_length
% 4)
208
*ptr_of_length_ =
this_packet_length
>> 10;
209
*(ptr_of_length_ + 1) = (
this_packet_length
>> 2) & 0xFF;
rtcp_builder.cc
158
int
this_packet_length
= (writer_.ptr() - ptr_of_length_ - 2);
local
159
DCHECK_EQ(0,
this_packet_length
% 4)
161
*ptr_of_length_ =
this_packet_length
>> 10;
162
*(ptr_of_length_ + 1) = (
this_packet_length
>> 2) & 0xFF;
Completed in 42 milliseconds