OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getFP32Imm
(Results
1 - 7
of
7
) sorted by null
/external/llvm/lib/Target/ARM/MCTargetDesc/
ARMAddressingModes.h
653
///
getFP32Imm
- Return an 8-bit floating-point version of the 32-bit
656
static inline int
getFP32Imm
(const APInt &Imm) {
677
static inline int
getFP32Imm
(const APFloat &FPImm) {
678
return
getFP32Imm
(FPImm.bitcastToAPInt());
/external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64AddressingModes.h
393
///
getFP32Imm
- Return an 8-bit floating-point version of the 32-bit
396
static inline int
getFP32Imm
(const APInt &Imm) {
417
static inline int
getFP32Imm
(const APFloat &FPImm) {
418
return
getFP32Imm
(FPImm.bitcastToAPInt());
/external/llvm/lib/Target/ARM/
ARMFastISel.cpp
479
Imm = ARM_AM::
getFP32Imm
(Val);
[
all
...]
ARMISelLowering.cpp
[
all
...]
/external/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp
706
int Val = ARM_AM::
getFP32Imm
(APInt(32, CE->getValue()));
[
all
...]
/external/llvm/lib/Target/AArch64/
AArch64FastISel.cpp
368
Is64Bit ? AArch64_AM::getFP64Imm(Val) : AArch64_AM::
getFP32Imm
(Val);
[
all
...]
AArch64ISelLowering.cpp
[
all
...]
Completed in 899 milliseconds