OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:float2int
(Results
1 - 16
of
16
) sorted by null
/external/llvm/test/Transforms/Float2Int/
float2int-optnone.ll
1
; RUN: opt < %s -
float2int
-S | FileCheck %s
3
; Verify that pass
float2int
is not run on optnone functions.
toolarge.ll
1
; RUN: opt < %s -
float2int
-
float2int
-max-integer-bw=256 -S | FileCheck %s
basic.ll
1
; RUN: opt < %s -
float2int
-S | FileCheck %s
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/numeric/conversion/detail/
int_float_mixture.hpp
55
template<class IntFloatMixture, class Int2Int, class Int2Float, class
Float2Int
, class Float2Float>
61
,Int2Int , Int2Float ,
Float2Int
, Float2Float
is_subranged.hpp
173
typedef subranged_Float2Int <T,S>
Float2Int
;
177
typedef mpl::identity<
Float2Int
> Float2IntQ ;
/external/libopus/celt/
float_cast.h
80
#define
float2int
(x) lrintf(x)
macro
91
#define
float2int
(x) lrint(x)
macro
96
__inline long int
float2int
(float value)
function
108
float2int
(float flt)
function
127
#define
float2int
(flt) ((int)(floor(.5+flt)))
macro
136
return (opus_int16)
float2int
(x);
/external/llvm/lib/Transforms/Scalar/
Float2Int.cpp
1
//===-
Float2Int
.cpp - Demote floating point ops to work on integers ------===//
10
// This file implements the
Float2Int
pass, which aims to demote floating
15
#define DEBUG_TYPE "
float2int
"
51
MaxIntegerBW("
float2int
-max-integer-bw", cl::init(64), cl::Hidden,
52
cl::desc("Max integer bitwidth to consider in
float2int
"
56
struct
Float2Int
: public FunctionPass {
58
Float2Int
() : FunctionPass(ID) {
87
char
Float2Int
::ID = 0;
88
INITIALIZE_PASS_BEGIN(
Float2Int
, "
float2int
", "Float to int", false, false
[
all
...]
CMakeLists.txt
12
Float2Int
.cpp
Android.mk
14
Float2Int
.cpp \
/external/libopus/silk/float/
SigProc_FLP.h
165
return (opus_int32)
float2int
( x );
177
out[k] = silk_SAT16( (opus_int32)
float2int
( in[k] ) );
/dalvik/docs/
porting-proto.c.txt
89
s4
float2int
(float x) { return (s4) x; }
/toolchain/binutils/binutils-2.25/opcodes/
aarch64-tbl.h
[
all
...]
/external/llvm/lib/Transforms/IPO/
PassManagerBuilder.cpp
70
cl::desc("Run the
float2int
(float demotion) pass"));
367
// Thus both
Float2Int
and LoopRotate have to preserve AliasAnalysis for
/art/compiler/dex/quick/
dex_file_method_inliner.cc
116
static_assert(kIntrinsicIsStatic[kIntrinsicFloat2Int], "
Float2Int
must be static");
[
all
...]
/toolchain/binutils/binutils-2.25/include/opcode/
aarch64.h
324
float2int
,
323
float2int
,
enumerator in enum:aarch64_insn_class
/external/llvm/include/llvm/Transforms/
Scalar.h
474
//
Float2Int
- Demote floats to ints where possible.
Completed in 1886 milliseconds