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:lo_bit_count
(Results
1 - 2
of
2
) sorted by relevance
/third_party/python/Modules/
H
A
D
sha256module.c
316
SHA_INT32
lo_bit_count
, hi_bit_count;
in sha_final()
local
318
lo_bit_count
= sha_info->count_lo;
in sha_final()
320
count = (int) ((
lo_bit_count
>> 3) & 0x3f);
in sha_final()
339
sha_info->data[60] = (
lo_bit_count
>> 24) & 0xff;
in sha_final()
340
sha_info->data[61] = (
lo_bit_count
>> 16) & 0xff;
in sha_final()
341
sha_info->data[62] = (
lo_bit_count
>> 8) & 0xff;
in sha_final()
342
sha_info->data[63] = (
lo_bit_count
>> 0) & 0xff;
in sha_final()
H
A
D
sha512module.c
320
SHA_INT32
lo_bit_count
, hi_bit_count;
in sha512_final()
local
322
lo_bit_count
= sha_info->count_lo;
in sha512_final()
324
count = (int) ((
lo_bit_count
>> 3) & 0x7f);
in sha512_final()
351
sha_info->data[124] = (
lo_bit_count
>> 24) & 0xff;
in sha512_final()
352
sha_info->data[125] = (
lo_bit_count
>> 16) & 0xff;
in sha512_final()
353
sha_info->data[126] = (
lo_bit_count
>> 8) & 0xff;
in sha512_final()
354
sha_info->data[127] = (
lo_bit_count
>> 0) & 0xff;
in sha512_final()
Completed in 8 milliseconds