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:hwcaps
(Results
1 - 3
of
3
) sorted by relevance
/third_party/skia/src/core/
H
A
D
SkCpu.cpp
84
uint32_t
hwcaps
= getauxval(AT_HWCAP);
in read_cpu_features()
local
85
if (
hwcaps
& kHWCAP_CRC32 ) { features |= SkCpu::CRC32; }
in read_cpu_features()
86
if (
hwcaps
& kHWCAP_ASIMDHP) { features |= SkCpu::ASIMDHP; }
in read_cpu_features()
129
uint32_t
hwcaps
= getauxval(AT_HWCAP);
in read_cpu_features()
local
130
if (
hwcaps
& kHWCAP_NEON ) {
in read_cpu_features()
132
if (
hwcaps
& kHWCAP_VFPv4) { features |= SkCpu::NEON_FMA|SkCpu::VFP_FP16; }
in read_cpu_features()
/third_party/node/deps/v8/src/base/
H
A
D
cpu.cc
666
// Try to extract the list of CPU features from ELF
hwcaps
.
in CPU()
667
uint32_t
hwcaps
= ReadELFHWCaps();
in CPU()
local
668
if (
hwcaps
!= 0) {
in CPU()
669
has_idiva_ = (
hwcaps
& HWCAP_IDIVA) != 0;
in CPU()
670
has_neon_ = (
hwcaps
& HWCAP_NEON) != 0;
in CPU()
671
has_vfp_ = (
hwcaps
& HWCAP_VFP) != 0;
in CPU()
672
has_vfp3_ = (
hwcaps
& (HWCAP_VFPv3 | HWCAP_VFPv3D16 | HWCAP_VFPv4)) != 0;
in CPU()
673
has_vfp3_d32_ = (has_vfp3_ && ((
hwcaps
& HWCAP_VFPv3D16) == 0 ||
in CPU()
674
(
hwcaps
& HWCAP_VFPD32) != 0));
in CPU()
777
// Try to extract the list of CPU features from ELF
hwcaps
in CPU()
778
uint32_t
hwcaps
= ReadELFHWCaps();
CPU()
local
[all...]
/third_party/elfutils/backends/
H
A
D
sparc_attrs.c
44
static const char *
hwcaps
[32] =
in sparc_check_object_attribute()
local
81
caps =
hwcaps
;
in sparc_check_object_attribute()
Completed in 3 milliseconds