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:word_shift
(Results
1 - 1
of
1
) sorted by relevance
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
H
A
D
charconv_bigint.h
104
const int
word_shift
= count / 32;
in ShiftLeft()
local
105
if (
word_shift
>= max_words) {
in ShiftLeft()
109
size_ = (std::min)(size_ +
word_shift
, max_words);
in ShiftLeft()
112
std::copy_backward(words_, words_ + size_ -
word_shift
, words_ + size_);
in ShiftLeft()
114
for (int i = (std::min)(size_, max_words - 1); i >
word_shift
; --i) {
in ShiftLeft()
115
words_[i] = (words_[i -
word_shift
] << count) |
in ShiftLeft()
116
(words_[i -
word_shift
- 1] >> (32 - count));
in ShiftLeft()
118
words_[
word_shift
] = words_[0] << count;
in ShiftLeft()
124
std::fill(words_, words_ +
word_shift
, 0u);
in ShiftLeft()
Completed in 1 milliseconds