OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:btFsel
(Results
1 - 3
of
3
) sorted by null
/external/libgdx/extensions/gdx-bullet/jni/swig-src/linearmath/com/badlogic/gdx/physics/bullet/linearmath/
LinearMath.java
146
public static float
btFsel
(float a, float b, float c) {
147
return LinearMathJNI.
btFsel
(a, b, c);
LinearMathJNI.java
40
public final static native float
btFsel
(float jarg1, float jarg2, float jarg3);
[
all
...]
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/LinearMath/
btScalar.h
72
#define
btFsel
(a,b,c) __fsel((a),(b),(c))
538
#ifndef
btFsel
539
SIMD_FORCE_INLINE btScalar
btFsel
(btScalar a, btScalar b, btScalar c)
544
#define btFsels(a,b,c) (btScalar)
btFsel
(a,b,c)
580
return (float)
btFsel
((btScalar)condition - btScalar(1.0f), valueIfConditionNonZero, valueIfConditionZero);
Completed in 40 milliseconds