OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:fastpow
(Results
1 - 6
of
6
) sorted by null
/external/vulkan-validation-layers/libs/glm/gtx/
fast_exponential.inl
12
//
fastPow
:
14
GLM_FUNC_QUALIFIER genType
fastPow
(genType const & x, genType const & y)
19
VECTORIZE_VEC_VEC(
fastPow
)
22
GLM_FUNC_QUALIFIER T
fastPow
(const T x, int y)
31
GLM_FUNC_QUALIFIER detail::tvec2<T, P>
fastPow
(
36
fastPow
(x.x, y.x),
37
fastPow
(x.y, y.y));
41
GLM_FUNC_QUALIFIER detail::tvec3<T, P>
fastPow
(
46
fastPow
(x.x, y.x),
47
fastPow
(x.y, y.y)
[
all
...]
fast_exponential.hpp
57
GLM_FUNC_DECL genType
fastPow
(
64
GLM_FUNC_DECL genTypeT
fastPow
(
/external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/common/
PlatformMathUtils.java
31
public static final float
fastPow
(float a, float b) {
MathUtils.java
261
return
fastPow
(a, b);
/external/opencv3/modules/features2d/src/kaze/
utils.h
83
inline int
fastpow
(int base, int exp) {
function
AKAZEFeatures.cpp
194
float ratio = (float)
fastpow
(2, evolution[i].octave);
303
ratio = (float)
fastpow
(2, point.octave);
405
ratio = (float)
fastpow
(2, kpts[i].octave);
441
int power =
fastpow
(2, evolution_[kpts[i].class_id].octave);
[
all
...]
Completed in 2312 milliseconds