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:bcdLong
(Results
1 - 8
of
8
) sorted by relevance
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/
H
A
D
DecimalQuantity_DualStorageBCD.java
26
private long
bcdLong
= 0L;
field in DecimalQuantity_DualStorageBCD
101
return (byte) ((
bcdLong
>>> (position * 4)) & 0xf);
in getDigitPos()
117
bcdLong
=
bcdLong
& ~(0xfL << shift) | ((long) value << shift);
in setDigitPos()
136
bcdLong
<<= (numDigits * 4);
in shiftLeft()
153
bcdLong
>>>= (numDigits * 4);
in shiftRight()
168
bcdLong
&= (1L << ((precision - numDigits) * 4)) - 1;
in popFromLeft()
179
bcdLong
= 0L;
in setBcdToZero()
198
bcdLong
= result >>> (i * 4);
in readIntToBcd()
223
bcdLong
in readLongToBcd()
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
H
A
D
DecimalQuantity_DualStorageBCD.java
25
private long
bcdLong
= 0L;
field in DecimalQuantity_DualStorageBCD
148
return (byte) ((
bcdLong
>>> (position * 4)) & 0xf);
in getDigitPos()
164
bcdLong
=
bcdLong
& ~(0xfL << shift) | ((long) value << shift);
in setDigitPos()
178
bcdLong
<<= (numDigits * 4);
in shiftLeft()
195
bcdLong
>>>= (numDigits * 4);
in shiftRight()
210
bcdLong
&= (1L << ((precision - numDigits) * 4)) - 1;
in popFromLeft()
221
bcdLong
= 0L;
in setBcdToZero()
240
bcdLong
= result >>> (i * 4);
in readIntToBcd()
265
bcdLong
in readLongToBcd()
[all...]
/third_party/icu/icu4c/source/i18n/
H
A
D
number_decimalquantity.cpp
1110
return (int8_t) ((fBCD.
bcdLong
>> (position * 4)) & 0xf);
in getDigitPos()
1125
fBCD.
bcdLong
= (fBCD.
bcdLong
& ~(0xfL << shift)) | ((long) value << shift);
in setDigitPos()
1138
fBCD.
bcdLong
<<= (numDigits * 4);
in shiftLeft()
1154
fBCD.
bcdLong
>>= (numDigits * 4);
in shiftRight()
1168
fBCD.
bcdLong
&= (static_cast<uint64_t>(1) << ((precision - numDigits) * 4)) - 1;
in popFromLeft()
1179
fBCD.
bcdLong
= 0L;
in setBcdToZero()
1197
fBCD.
bcdLong
= result >> (i * 4);
in readIntToBcd()
1221
fBCD.
bcdLong
= result >> (i * 4);
in readLongToBcd()
1239
fBCD.
bcdLong
in readDecNumberToBcd()
1339
uint64_t
bcdLong
= 0L;
switchStorage()
local
1351
uint64_t
bcdLong
= fBCD.
bcdLong
;
switchStorage()
local
[all...]
H
A
D
number_decimalquantity.h
429
uint64_t
bcdLong
;
member
/third_party/node/deps/icu-small/source/i18n/
H
A
D
number_decimalquantity.cpp
1110
return (int8_t) ((fBCD.
bcdLong
>> (position * 4)) & 0xf);
in getDigitPos()
1125
fBCD.
bcdLong
= (fBCD.
bcdLong
& ~(0xfL << shift)) | ((long) value << shift);
in setDigitPos()
1138
fBCD.
bcdLong
<<= (numDigits * 4);
in shiftLeft()
1154
fBCD.
bcdLong
>>= (numDigits * 4);
in shiftRight()
1168
fBCD.
bcdLong
&= (static_cast<uint64_t>(1) << ((precision - numDigits) * 4)) - 1;
in popFromLeft()
1179
fBCD.
bcdLong
= 0L;
in setBcdToZero()
1197
fBCD.
bcdLong
= result >> (i * 4);
in readIntToBcd()
1221
fBCD.
bcdLong
= result >> (i * 4);
in readLongToBcd()
1239
fBCD.
bcdLong
in readDecNumberToBcd()
1339
uint64_t
bcdLong
= 0L;
switchStorage()
local
1351
uint64_t
bcdLong
= fBCD.
bcdLong
;
switchStorage()
local
[all...]
H
A
D
number_decimalquantity.h
429
uint64_t
bcdLong
;
member
/third_party/skia/third_party/externals/icu/source/i18n/
H
A
D
number_decimalquantity.cpp
990
return (int8_t) ((fBCD.
bcdLong
>> (position * 4)) & 0xf);
in getDigitPos()
1005
fBCD.
bcdLong
= (fBCD.
bcdLong
& ~(0xfL << shift)) | ((long) value << shift);
in setDigitPos()
1018
fBCD.
bcdLong
<<= (numDigits * 4);
in shiftLeft()
1034
fBCD.
bcdLong
>>= (numDigits * 4);
in shiftRight()
1048
fBCD.
bcdLong
&= (static_cast<uint64_t>(1) << ((precision - numDigits) * 4)) - 1;
in popFromLeft()
1059
fBCD.
bcdLong
= 0L;
in setBcdToZero()
1077
fBCD.
bcdLong
= result >> (i * 4);
in readIntToBcd()
1101
fBCD.
bcdLong
= result >> (i * 4);
in readLongToBcd()
1119
fBCD.
bcdLong
in readDecNumberToBcd()
1219
uint64_t
bcdLong
= 0L;
switchStorage()
local
1231
uint64_t
bcdLong
= fBCD.
bcdLong
;
switchStorage()
local
[all...]
H
A
D
number_decimalquantity.h
406
uint64_t
bcdLong
;
member
Completed in 12 milliseconds