HomeSort by relevance Sort by last modified time
    Searched defs:ff (Results 1 - 25 of 107) sorted by null

1 2 3 4 5

  /external/clang/test/Modules/Inputs/merge-decl-context/
a.h 20 inline A<int> ff(int i) { function
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-sh/
sub2l.s 12 .global ff
13 ff: label
26 .long ff+4
  /external/clang/test/CXX/drs/
dr7xx.cpp 10 void ff() { f(); } function in namespace:dr777
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug372.go 19 func ff() string { return "ff" } func
23 tt.m = ff
25 if tt.m() != "ff" {
26 println(tt.m(), "!= \"ff\"")
bug255.go 18 func ff() string func
20 var i [len([1]string{ff()})]int // ERROR "non-constant array bound|not constant"
  /prebuilts/go/linux-x86/test/fixedbugs/
bug372.go 19 func ff() string { return "ff" } func
23 tt.m = ff
25 if tt.m() != "ff" {
26 println(tt.m(), "!= \"ff\"")
bug255.go 18 func ff() string func
20 var i [len([1]string{ff()})]int // ERROR "non-constant array bound|not constant"
  /external/clang/test/Lexer/
multiple-include.c 14 typedef void ff(); typedef
15 typedef struct { ff *a;} S;
  /external/e2fsprogs/util/
libecho.c 40 long ff; local
63 ff = _findfirst(f, &fdt);
65 if (ff < 0) {
73 if (_findnext(ff, &fdt) < 0)
77 _findclose(ff);
  /prebuilts/go/darwin-x86/test/
closure.go 114 ff(1)
121 func ff(x int) { func
reorder2.go 61 func ff(x, y string) { func
64 log += "ff(" + x + ", " + y + ")"
123 if ff(g("1"), g("2")); log != "g(1)g(2)ff(1, 2)" {
124 println("expecting g(1)g(2)ff..., got ", log)
129 if ff(g("1"), h("2")); log != "g(1)h(2)ff(1, 2)" {
130 println("expecting g(1)h(2)ff..., got ", log)
135 if ff(h("1"), g("2")); log != "h(1)g(2)ff(1, 2)"
    [all...]
blank.go 187 func ff() { func
  /prebuilts/go/linux-x86/test/
closure.go 114 ff(1)
121 func ff(x int) { func
reorder2.go 61 func ff(x, y string) { func
64 log += "ff(" + x + ", " + y + ")"
123 if ff(g("1"), g("2")); log != "g(1)g(2)ff(1, 2)" {
124 println("expecting g(1)g(2)ff..., got ", log)
129 if ff(g("1"), h("2")); log != "g(1)h(2)ff(1, 2)" {
130 println("expecting g(1)h(2)ff..., got ", log)
135 if ff(h("1"), g("2")); log != "h(1)g(2)ff(1, 2)"
    [all...]
blank.go 187 func ff() { func
  /external/clang/test/Misc/
reduced-diags-macros.cpp 36 node ff; variable
38 int r = APPLY(+,ff,1);
40 // CHECK-NEXT: int r = APPLY(+,ff,1);
  /external/fio/t/
axmap.c 26 uint64_t ff; local
61 ff = axmap_next_free(map, osize);
62 if (ff != (uint64_t) -1ULL) {
63 printf("axmap_next_free broken: got %llu\n", (unsigned long long) ff);
  /external/v8/test/webkit/fast/js/kde/
md5-2.js 61 function ff(a, b, c, d, x, s, t) function in function:safe_add
96 a = ff(a, b, c, d, x[i+ 0], 7 , -680876936)
97 d = ff(d, a, b, c, x[i+ 1], 12, -389564586)
98 c = ff(c, d, a, b, x[i+ 2], 17, 606105819)
99 b = ff(b, c, d, a, x[i+ 3], 22, -1044525330)
100 a = ff(a, b, c, d, x[i+ 4], 7 , -176418897)
101 d = ff(d, a, b, c, x[i+ 5], 12, 1200080426)
102 c = ff(c, d, a, b, x[i+ 6], 17, -1473231341)
103 b = ff(b, c, d, a, x[i+ 7], 22, -45705983)
104 a = ff(a, b, c, d, x[i+ 8], 7 , 1770035416
    [all...]
  /external/valgrind/memcheck/tests/amd64/
insn-pcmpistri.c 49 const unsigned char ff = 0xFF; local
54 (void)VALGRIND_SET_VBITS(&s_copy[i], &ff, 1);
59 (void)VALGRIND_SET_VBITS(&s_copy[len-1], &ff, 1);
  /ndk/tests/device/test-stlport_shared-exception/jni/
eh990323-1.cpp 17 template <class T> void ff(T);
19 template <class T> void ff(T) function
51 ff(A<double>());
  /ndk/tests/device/test-stlport_static-exception/jni/
eh990323-1.cpp 17 template <class T> void ff(T);
19 template <class T> void ff(T) function
51 ff(A<double>());
  /external/clang/test/Sema/
array-constraint.c 8 void ff() { function
  /external/compiler-rt/lib/asan/tests/
asan_fake_stack_test.cc 116 FakeFrame *ff = fs->Allocate(stack_size_log, cid, 0); local
117 uptr x = reinterpret_cast<uptr>(ff);
118 EXPECT_TRUE(s.insert(std::make_pair(ff, cid)).second);
137 FakeFrame *ff = fs->Allocate(fs->stack_size_log(), class_id, 0); local
142 fs->Deallocate(reinterpret_cast<uptr>(ff), class_id);
  /external/skia/tests/
ClampRangeTest.cpp 67 #define ff(x) SkIntToFixed(x) macro
74 test_range(-ff(2), 0, 20);
75 test_range( ff(2), 0, 20);
82 test_range(ff(1), ff(16384), 100);
83 test_range(ff(-1), ff(-16384), 100);
84 test_range(ff(1)/2, ff(16384), 100);
85 test_range(ff(1)/2, ff(-16384), 100)
    [all...]
  /frameworks/base/tools/aapt/tests/
CrunchCache_test.cpp 51 FileFinder* ff = new MockFileFinder(data); local
52 CrunchCache cc(source,dest,ff);
83 delete ff;

Completed in 1209 milliseconds

1 2 3 4 5