Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:unsigned_value
(Results
1 - 4
of
4
) sorted by relevance
/third_party/skia/third_party/externals/piex/src/binary_parse/
H
A
D
range_checked_byte_ptr.cc
299
const uint16
unsigned_value
= Get16u(input, big_endian, status);
in Get16s()
local
305
// Convert the two's-complement signed integer encoded in '
unsigned_value
'
in Get16s()
310
if (
unsigned_value
== 0x8000u) {
in Get16s()
312
} else if (
unsigned_value
> 0x8000u) {
in Get16s()
313
return -static_cast<int16>(0x10000u -
unsigned_value
);
in Get16s()
315
return static_cast<int16>(
unsigned_value
);
in Get16s()
337
const uint32
unsigned_value
= Get32u(input, big_endian, status);
in Get32s()
local
343
// Convert the two's-complement signed integer encoded in '
unsigned_value
'
in Get32s()
347
// casting
unsigned_value
to int32; the result of this is
in Get32s()
357
if (
unsigned_value
in Get32s()
[all...]
/third_party/protobuf/src/google/protobuf/
H
A
D
text_format.cc
1008
uint64
unsigned_value
;
in ConsumeSignedInteger()
local
1010
DO(ConsumeUnsignedInteger(&
unsigned_value
, max_value));
in ConsumeSignedInteger()
1013
if ((static_cast<uint64>(kint64max) + 1) ==
unsigned_value
) {
in ConsumeSignedInteger()
1016
*value = -static_cast<int64>(
unsigned_value
);
in ConsumeSignedInteger()
1019
*value = static_cast<int64>(
unsigned_value
);
in ConsumeSignedInteger()
/third_party/node/deps/v8/src/objects/
H
A
D
value-serializer.cc
1323
UnsignedT
unsigned_value
;
in ReadZigZag()
1324
if (!ReadVarint<UnsignedT>().To(&
unsigned_value
)) return Nothing<T>();
in ReadZigZag()
1325
return Just(static_cast<T>((
unsigned_value
>> 1) ^
in ReadZigZag()
1326
-static_cast<T>(
unsigned_value
& 1)));
in ReadZigZag()
/third_party/node/deps/v8/src/profiler/
H
A
D
heap-snapshot-generator.cc
2807
typename ToUnsigned<sizeof(value)>::Type
unsigned_value
= value;
in utoa()
local
2808
STATIC_ASSERT(sizeof(value) == sizeof(
unsigned_value
));
in utoa()
2809
return utoa_impl(
unsigned_value
, buffer, buffer_pos);
in utoa()
Completed in 14 milliseconds