Home
last modified time | relevance | path

Searched refs:fib (Results 1 – 25 of 29) sorted by relevance

12

/external/swiftshader/third_party/LLVM/test/Feature/
Dindirectcall.ll7 define i64 @fib(i64 %n) {
17 %f2 = call i64 @fib( i64 %n2 ) ; <i64> [#uses=1]
18 %f1 = call i64 @fib( i64 %n1 ) ; <i64> [#uses=1]
35 %F = call i64 @fib( i64 %N ) ; <i64> [#uses=1]
45 %Result = call i64 @trampoline( i64 10, i64 (i64)* @fib ) ; <i64> [#uses=1]
Dindirectcall2.ll9 define i64 @fib(i64 %n) {
/external/llvm/test/Feature/
Dindirectcall.ll7 define i64 @fib(i64 %n) {
17 %f2 = call i64 @fib( i64 %n2 ) ; <i64> [#uses=1]
18 %f1 = call i64 @fib( i64 %n1 ) ; <i64> [#uses=1]
35 %F = call i64 @fib( i64 %N ) ; <i64> [#uses=1]
45 %Result = call i64 @trampoline( i64 10, i64 (i64)* @fib ) ; <i64> [#uses=1]
Dindirectcall2.ll9 define i64 @fib(i64 %n) {
/external/swiftshader/third_party/LLVM/test/Transforms/TailCallElim/
Ddup_tail.ll4 define i32 @fib(i32 %n) nounwind ssp {
14 %call = call i32 @fib(i32 %sub)
16 %call4 = call i32 @fib(i32 %sub3)
/external/llvm/test/Transforms/TailCallElim/
Ddup_tail.ll7 define i32 @fib(i32 %n) nounwind ssp {
17 %call = call i32 @fib(i32 %sub)
19 %call4 = call i32 @fib(i32 %sub3)
/external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/examples/
DFibonacciMaker.java40 MethodId<?, Integer> fib = fibonacci.getMethod(TypeId.INT, "fib", TypeId.INT); in main() local
41 Code code = dexMaker.declare(fib, Modifier.PUBLIC | Modifier.STATIC); in main()
58 code.invokeStatic(fib, c, a); in main()
59 code.invokeStatic(fib, d, b); in main()
/external/swiftshader/third_party/subzero/tests_lit/reader_tests/
Dcall.ll9 define internal i32 @fib(i32 %n) {
16 %call = tail call i32 @fib(i32 %sub)
18 %call2 = tail call i32 @fib(i32 %sub1)
26 ; CHECK: define internal i32 @fib(i32 %n) {
32 ; CHECK-NEXT: %call = call i32 @fib(i32 %sub)
34 ; CHECK-NEXT: %call2 = call i32 @fib(i32 %sub1)
/external/llvm/test/Transforms/Inline/
Dnoinline-recursive-fn.ll78 define i32 @fib(i32 %i) {
95 %f1 = call i32 @fib(i32 %i1)
97 %f2 = call i32 @fib(i32 %i2)
106 %f1 = call i32 @fib(i32 0)
107 %f2 = call i32 @fib(i32 1)
/external/llvm/docs/tutorial/
DLangImpl07.rst280 # Recursive fib, we could do this before.
281 def fib(x)
285 fib(x-1)+fib(x-2);
287 # Iterative fib.
449 for our recursive fib function. Before the optimization:
453 define double @fib(double %x) {
469 %calltmp = call double @fib(double %subtmp)
472 %calltmp6 = call double @fib(double %subtmp5)
494 define double @fib(double %x) {
506 %calltmp = call double @fib(double %subtmp)
[all …]
DLangImpl09.rst40 def fib(x)
44 fib(x-1)+fib(x-2);
46 fib(10)
152 Kaleidoscope-Ch9 < fib.ks | & clang -x ir -
162 construct one for our fib.ks file.
211 dwarf::DW_LANG_C, "fib.ks", ".", "Kaleidoscope Compiler", 0, "", 0);
219 debugger and have them execute. Secondly, you'll see the "fib.ks" in the
DOCamlLangImpl7.rst280 # Recursive fib, we could do this before.
281 def fib(x)
285 fib(x-1)+fib(x-2);
287 # Iterative fib.
466 for our recursive fib function. Before the optimization:
470 define double @fib(double %x) {
486 %calltmp = call double @fib(double %subtmp)
489 %calltmp6 = call double @fib(double %subtmp5)
511 define double @fib(double %x) {
523 %calltmp = call double @fib(double %subtmp)
[all …]
DOCamlLangImpl1.rst118 def fib(x)
122 fib(x-1)+fib(x-2)
125 fib(40)
DLangImpl01.rst128 def fib(x)
132 fib(x-1)+fib(x-2)
135 fib(40)
DLangImpl05.rst36 def fib(x)
40 fib(x-1)+fib(x-2);
DOCamlLangImpl5.rst36 def fib(x)
40 fib(x-1)+fib(x-2);
/external/python/cpython2/Doc/tutorial/
Dmodules.rst30 def fib(n): # write Fibonacci series up to n
53 >>> fibo.fib(1000)
62 >>> fib = fibo.fib
63 >>> fib(500)
92 >>> from fibo import fib, fib2
93 >>> fib(500)
102 >>> fib(500)
134 fib(int(sys.argv[1]))
287 ['__name__', 'fib', 'fib2']
309 >>> fib = fibo.fib
[all …]
Dcontrolflow.rst218 >>> def fib(n): # write Fibonacci series up to n
226 ... fib(2000)
267 >>> fib
268 <function fib at 10042ed0>
269 >>> f = fib
273 Coming from other languages, you might object that ``fib`` is not a function but
280 >>> fib(0)
281 >>> print fib(0)
/external/swiftshader/third_party/LLVM/test/Other/
D2002-02-24-InlineBrokePHINodes.ll11 define i64 @fib(i64 %n) {
/external/llvm/test/Other/
D2002-02-24-InlineBrokePHINodes.ll11 define i64 @fib(i64 %n) {
/external/libnl/src/
D.gitignore12 nl-fib-lookup
/external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/
DDexMakerTest.java1322 Method fib = getMethod(); in testRecursion() local
1323 assertEquals(0, fib.invoke(null, 0)); in testRecursion()
1324 assertEquals(1, fib.invoke(null, 1)); in testRecursion()
1325 assertEquals(1, fib.invoke(null, 2)); in testRecursion()
1326 assertEquals(2, fib.invoke(null, 3)); in testRecursion()
1327 assertEquals(3, fib.invoke(null, 4)); in testRecursion()
1328 assertEquals(5, fib.invoke(null, 5)); in testRecursion()
1329 assertEquals(8, fib.invoke(null, 6)); in testRecursion()
/external/clang/test/SemaCXX/
Dconstant-expression-cxx11.cpp158 constexpr int fib(int n) { return n > 1 ? fib(n-1) + fib(n-2) : n; } in fib() function
159 static_assert(fib(11) == 89, "");
/external/deqp/data/gles3/shaders/
Dfunctions.test4166 float fib (float x)
4171 return fib(x-2.0) + fib(x-1.0);
4176 ${POSITION_FRAG_COLOR} = vec4(fib(5.0));
/external/libnl/
DChangeLog102 o netlink fib lookup support

12