OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:HWCAP_IDIVA
(Results
1 - 7
of
7
) sorted by null
/bionic/libc/kernel/uapi/asm-arm/asm/
hwcap.h
38
#define
HWCAP_IDIVA
(1 << 17)
41
#define HWCAP_IDIV (
HWCAP_IDIVA
| HWCAP_IDIVT)
/external/kernel-headers/original/uapi/asm-arm/asm/
hwcap.h
25
#define
HWCAP_IDIVA
(1 << 17)
28
#define HWCAP_IDIV (
HWCAP_IDIVA
| HWCAP_IDIVT)
/cts/common/device-side/util/src/com/android/compatibility/common/util/
CpuFeatures.java
39
public static final int
HWCAP_IDIVA
= (1 << 17);
/cts/common/device-side/util-axt/src/com/android/compatibility/common/util/
CpuFeatures.java
39
public static final int
HWCAP_IDIVA
= (1 << 17);
/cts/tests/tests/os/src/android/os/cts/
CpuFeaturesTest.java
53
assertHwCap("IDIVA", hwcaps, CpuFeatures.
HWCAP_IDIVA
);
/external/v8/src/base/
cpu.cc
105
#define
HWCAP_IDIVA
(1 << 17)
108
#define HWCAP_IDIV (
HWCAP_IDIVA
| HWCAP_IDIVT)
512
has_idiva_ = (hwcaps &
HWCAP_IDIVA
) != 0;
/art/runtime/arch/arm/
instruction_set_features_arm.cc
200
CHECK_NE(hwcaps &
HWCAP_IDIVA
, 0U);
Completed in 98 milliseconds