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:bit7
(Results
1 - 5
of
5
) sorted by relevance
/third_party/node/deps/v8/src/codegen/arm64/
H
A
D
instructions-arm64.h
185
uint32_t
bit7
= (bits >> 7) & 0x1;
in Imm8ToFP32()
local
188
uint32_t result = (
bit7
<< 31) | ((32 - bit6) << 25) | (bit5_to_0 << 19);
in Imm8ToFP32()
199
uint64_t
bit7
= (bits >> 7) & 0x1;
in Imm8ToFP64()
local
202
uint64_t result = (
bit7
<< 63) | ((256 - bit6) << 54) | (bit5_to_0 << 48);
in Imm8ToFP64()
H
A
D
assembler-arm64.cc
3574
//
bit7
: a000.0000
in FPToImm8()
3575
uint64_t
bit7
= ((bits >> 63) & 0x1) << 7;
in FPToImm8()
local
3581
return static_cast<uint32_t>(
bit7
| bit6 | bit5_to_0);
in FPToImm8()
/third_party/vixl/src/aarch64/
H
A
D
instructions-aarch64.cc
777
uint16_t
bit7
= (bits >> 7) & 0x1;
in Imm8ToFloat16()
local
780
uint16_t result = (
bit7
<< 15) | ((4 - bit6) << 12) | (bit5_to_0 << 6);
in Imm8ToFloat16()
790
uint32_t
bit7
= (bits >> 7) & 0x1;
in Imm8ToFP32()
local
793
uint32_t result = (
bit7
<< 31) | ((32 - bit6) << 25) | (bit5_to_0 << 19);
in Imm8ToFP32()
811
uint64_t
bit7
= (bits >> 7) & 0x1;
in Imm8ToFP64()
local
814
uint64_t result = (
bit7
<< 63) | ((256 - bit6) << 54) | (bit5_to_0 << 48);
in Imm8ToFP64()
H
A
D
assembler-aarch64.cc
5835
//
bit7
: a000.0000
5836
uint16_t
bit7
= ((bits >> 15) & 0x1) << 7;
5841
uint32_t result = static_cast<uint32_t>(
bit7
| bit6 | bit5_to_0);
5855
//
bit7
: a000.0000
5856
uint32_t
bit7
= ((bits >> 31) & 0x1) << 7;
5862
return
bit7
| bit6 | bit5_to_0;
5874
//
bit7
: a000.0000
5875
uint64_t
bit7
= ((bits >> 63) & 0x1) << 7;
5881
return static_cast<uint32_t>(
bit7
| bit6 | bit5_to_0);
/third_party/vixl/src/
H
A
D
utils-vixl.h
839
//
bit7
: a000.0000
840
uint32_t
bit7
= ((bits >> 31) & 0x1) << 7;
845
return static_cast<uint32_t>(
bit7
| bit6 | bit5_to_0);
851
//
bit7
: a000.0000
852
uint64_t
bit7
= ((bits >> 63) & 0x1) << 7;
858
return static_cast<uint32_t>(
bit7
| bit6 | bit5_to_0);
865
uint32_t
bit7
= (bits >> 7) & 0x1;
868
uint32_t result = (
bit7
<< 31) | ((32 - bit6) << 25) | (bit5_to_0 << 19);
878
uint64_t
bit7
= (bits >> 7) & 0x1;
881
uint64_t result = (
bit7
<< 6
[all...]
Completed in 22 milliseconds