HomeSort by relevance Sort by last modified time
    Searched full:exp2 (Results 1 - 25 of 572) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/glsl/builtins/ir/
exp2.ir 1 ((function exp2
5 ((return (expression float exp2 (var_ref arg0)))))
10 ((return (expression vec2 exp2 (var_ref arg0)))))
15 ((return (expression vec3 exp2 (var_ref arg0)))))
20 ((return (expression vec4 exp2 (var_ref arg0)))))
  /external/llvm/test/CodeGen/ARM/
log2_not_readnone.ll 3 ; Log2 and exp2 are string-matched to intrinsics. If they are not declared
7 declare double @exp2(double)
12 ; CHECK: bl exp2
13 %2 = call double @exp2(double 0.000000e+00)
2009-08-21-PostRAKill3.ll 19 %exp2 = call double @ldexp(double 1.000000e+00, i32 %level) nounwind ; <double> [#uses=1]
20 %.c = fptosi double %exp2 to i32 ; <i32> [#uses=1]
  /external/llvm/test/CodeGen/X86/
log2_not_readnone.ll 3 ; Log2 and exp2 are string-matched to intrinsics. If they are not declared
7 declare double @exp2(double)
12 ; CHECK: calll exp2
13 %2 = call double @exp2(double 0.000000e+00)
limited-prec.ll 20 %0 = call float @llvm.exp2.f32(float %x) ; <float> [#uses=1]
24 declare float @llvm.exp2.f32(float) nounwind readonly
  /external/clang/test/CodeGen/
libcalls-d.c 4 // RUN: %clang_cc1 %s -emit-llvm -fno-math-errno -o - | grep {call.*exp2\\.f64}
5 // RUN: %clang_cc1 %s -emit-llvm -fmath-errno -o - | grep {call.*exp2}
7 // RUN: %clang_cc1 %s -emit-llvm -O3 -fno-builtin -o - | grep {call.*exp2}
12 double exp2(double);
15 return exp2(x);
avx512er-builtins.c 277 // CHECK: @llvm.x86.avx512.exp2.pd
283 // check: @llvm.x86.avx512.exp2.pd
289 // check: @llvm.x86.avx512.exp2.pd
295 // CHECK: @llvm.x86.avx512.exp2.pd
301 // check: @llvm.x86.avx512.exp2.pd
307 // check: @llvm.x86.avx512.exp2.pd
313 // CHECK: @llvm.x86.avx512.exp2.ps
319 // CHECK: @llvm.x86.avx512.exp2.ps
325 // CHECK: @llvm.x86.avx512.exp2.ps
331 // CHECK: @llvm.x86.avx512.exp2.p
    [all...]
  /external/llvm/test/Transforms/InstCombine/
exp2-2.ll 1 ; Test that the exp2 library call simplifier works correctly.
7 declare float @exp2(double)
9 ; Check that exp2 functions with the wrong prototype aren't simplified.
14 %ret = call float @exp2(double %conv)
15 ; CHECK: call float @exp2(double %conv)
exp2-1.ll 1 ; Test that the exp2 library call simplifier works correctly.
8 declare double @exp2(double)
11 ; Check exp2(sitofp(x)) -> ldexp(1.0, sext(x)).
16 %ret = call double @exp2(double %conv)
24 %ret = call double @exp2(double %conv)
32 %ret = call double @exp2(double %conv)
45 ; Check exp2(uitofp(x)) -> ldexp(1.0, zext(x)).
50 %ret = call double @exp2(double %conv)
51 ; CHECK: call double @exp2
58 %ret = call double @exp2(double %conv
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/generated/
TestExp2.rs 24 return exp2(inV);
28 return exp2(inV);
32 return exp2(inV);
36 return exp2(inV);
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
voicefac.c 37 Word16 tmp, exp, ener1, exp1, ener2, exp2; local
53 ener2 = extract_h(Dot_product12_asm(code, code, L_subfr, &exp2));
55 ener2 = extract_h(Dot_product12(code, code, L_subfr, &exp2));
62 exp2 = exp2 - (exp + exp);
64 i = exp1 - exp2;
  /external/e2fsprogs/tests/
run_e2fsck 33 if [ "$EXP2"x = x ]; then
35 EXP2=$test_name.2.tmp
36 gunzip < $test_dir/expect.2.gz > $EXP2
38 EXP2=$test_dir/expect.2
71 cmp -s $OUT2 $EXP2
101 diff $DIFF_OPTS $EXP2 $OUT2 >> $test_name.failed
108 unset IMAGE FSCK_OPT SECOND_FSCK_OPT OUT1 OUT2 EXP1 EXP2
  /external/e2fsprogs/tests/f_dup_de/
script 9 EXP2=$test_dir/expect-nohtree.2
  /external/jmonkeyengine/engine/src/core-effects/Common/MatDefs/Post/
Fog.frag 17 float fogFactor = exp2( -m_FogDensity * m_FogDensity * depth * depth * LOG2 );
Fog15.frag 20 float fogFactor = exp2( -m_FogDensity * m_FogDensity * depth * depth * LOG2 );
  /external/mesa3d/src/gallium/auxiliary/gallivm/
f.cpp 14 * for fast exp2/log2.
34 * - For example, to compute exp2 5th order polynomial between [0, 1] do:
62 boost::math::ntl::RR exp2(const boost::math::ntl::RR& x) function
77 return exp2(x);
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_exp2f.c 77 * Thus we have exp2f(x) = 2**k * exp2(y).
81 * Thus we have exp2(y) = exp2(i/TBLSIZE) * exp2(z),
84 * We compute exp2(i/TBLSIZE) via table lookup and exp2(z) via a
130 /* Compute r = exp2(y) = exp2ft[i0] * p(z). */
  /external/llvm/test/CodeGen/XCore/
float-intrinsics.ll 4 declare double @llvm.exp2.f64(double)
45 define double @exp2(double %F) {
46 ; CHECK-LABEL: exp2:
47 ; CHECK: bl exp2
48 %result = call double @llvm.exp2.f64(double %F)
52 declare float @llvm.exp2.f32(float)
57 %result = call float @llvm.exp2.f32(float %F)
  /frameworks/av/media/libeffects/testlibs/
EffectsMath.c 97 uint32_t exp2 = Effects_exp2(nGain); local
99 if (exp2 > 32767) exp2 = 32767;
101 return (int16_t)exp2;
  /external/jmonkeyengine/engine/src/core-data/Common/ShaderLib/
Hdr.glsllib 18 return exp2((Le - 127.0) / 2.0);
45 Xp_Y_XYZp.y = exp2((Le - 127.0) / 2.0);
  /external/llvm/test/CodeGen/R600/
input-mods.ll 16 %r3 = call float @llvm.exp2.f32(float %r2)
22 declare float @llvm.exp2.f32(float) readnone
llvm.exp2.ll 16 %0 = call float @llvm.exp2.f32(float %in)
39 %0 = call <2 x float> @llvm.exp2.v2f32(<2 x float> %in)
73 %0 = call <4 x float> @llvm.exp2.v4f32(<4 x float> %in)
78 declare float @llvm.exp2.f32(float) readnone
79 declare <2 x float> @llvm.exp2.v2f32(<2 x float>) readnone
80 declare <4 x float> @llvm.exp2.v4f32(<4 x float>) readnone
  /external/valgrind/memcheck/tests/linux/
Makefile.am 8 capget.vgtest capget.stderr.exp capget.stderr.exp2 \
15 stack_changes.stdout.exp2 stack_changes.vgtest \
  /external/llvm/test/Transforms/InstSimplify/
floating-point-compare.ll 11 declare double @llvm.exp2.f64(double)
41 %a = call double @llvm.exp2.f64(double %0)
  /prebuilts/ndk/6/platforms/android-9/arch-x86/usr/lib/
libm.so 

Completed in 1855 milliseconds

1 2 3 4 5 6 7 8 91011>>