OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:unsigned_value
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/courgette/
streams.cc
150
uint32
unsigned_value
;
local
151
if (!ReadVarint32(&
unsigned_value
))
153
if (
unsigned_value
& 1)
154
*output_value = ~static_cast<int32>(
unsigned_value
>> 1);
156
*output_value = (
unsigned_value
>> 1);
/external/protobuf/src/google/protobuf/
text_format.cc
520
uint64
unsigned_value
;
local
522
DO(ConsumeUnsignedInteger(&
unsigned_value
, max_value));
524
*value = static_cast<int64>(
unsigned_value
);
[
all
...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/
text_format.cc
782
uint64
unsigned_value
;
local
784
DO(ConsumeUnsignedInteger(&
unsigned_value
, max_value));
786
*value = static_cast<int64>(
unsigned_value
);
[
all
...]
Completed in 50 milliseconds