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

1 2 3 4

  /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);
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1229.js 82 function ff(x) { } function
85 ff(local_z);
87 ff(local_y);
93 ff(local_z);
95 ff(local_y);
101 ff(local_z);
103 ff(local_y);
105 ff(local_x);
  /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/valgrind/main/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/chromium_org/third_party/skia/tests/
ClampRangeTest.cpp 64 #define ff(x) SkIntToFixed(x) macro
71 test_range(-ff(2), 0, 20);
72 test_range( ff(2), 0, 20);
79 test_range(ff(1), ff(16384), 100);
80 test_range(ff(-1), ff(-16384), 100);
81 test_range(ff(1)/2, ff(16384), 100);
83 //test_range(ff(1)/2, ff(-16384), 100)
    [all...]
  /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/fio/
filelock.c 58 struct fio_filelock *ff; local
61 ff = flist_entry(entry, struct fio_filelock, list);
62 if (ff->hash == hash)
63 return ff;
71 struct fio_filelock *ff; local
73 ff = fio_hash_find(hash);
74 if (!ff) {
75 ff = smalloc(sizeof(*ff));
76 ff->hash = hash
87 struct fio_filelock *ff; local
123 struct fio_filelock *ff; local
138 struct fio_filelock *ff; local
    [all...]
  /external/skia/tests/
ClampRangeTest.cpp 64 #define ff(x) SkIntToFixed(x) macro
71 test_range(-ff(2), 0, 20);
72 test_range( ff(2), 0, 20);
79 test_range(ff(1), ff(16384), 100);
80 test_range(ff(-1), ff(-16384), 100);
81 test_range(ff(1)/2, ff(16384), 100);
83 //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;
  /bionic/tests/
math_test.cpp 1259 float ff = modff(123.75f, &fi); local
1261 ASSERT_FLOAT_EQ(0.75f, ff);
  /external/chromium_org/v8/test/webkit/
ToNumber.js 33 var ff = String.fromCharCode(0xC); variable
101 shouldBe("+ff", "0");
125 shouldBe("+(ff + '1')", "1");
149 shouldBe("+('1' + ff)", "1");
173 shouldBe("+('1' + ff + '1')", "NaN");
parseFloat.js 31 var ff = String.fromCharCode(0xC); variable
77 shouldBe("parseFloat(ff + '1')", "1");
  /external/tcpdump/
print-ntp.c 209 register float ff; local
213 ff = f / 65536.0; /* shift radix point by 16 bits */
214 f = ff * 1000000.0; /* Treat fraction as parts per million */
226 register float ff; local
230 ff = uf;
231 if (ff < 0.0) /* some compilers are buggy */
232 ff += FMAXINT;
233 ff = ff / FMAXINT; /* shift radix point by 32 bits */
234 f = ff * 1000000000.0; /* treat fraction as parts per billion *
262 register float ff; local
    [all...]
  /art/test/003-omnibus-opcodes/src/
FloatMath.java 303 static void jlmTests(float ff, double dd) {
306 Main.assertTrue(approxEqual(Math.abs(ff), ff, 0.001f)); local
307 Main.assertTrue(approxEqual(Math.abs(-ff), ff, 0.001f));
308 Main.assertTrue(approxEqual(Math.min(ff, -5.0f), -5.0f, 0.001f));
309 Main.assertTrue(approxEqual(Math.max(ff, -5.0f), ff, 0.001f)); local
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
dct_inline.h 357 register int32 ff = (int32)k5; local
384 "r"(ff),
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/
KSBuilder_ImplTest.java 77 File ff = File.createTempFile("KSBuilder_ImplTest", "keystore"); local
78 ff.deleteOnExit();
82 fos = new FileOutputStream(ff);
93 return ff;
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
KeyStoreBuilderTest.java 497 File ff = File.createTempFile("KSBuilder_ImplTest", "keystore"); local
498 ff.deleteOnExit();
502 fos = new FileOutputStream(ff);
513 return ff;
  /external/apache-xml/src/main/java/org/apache/xml/utils/
NodeVector.java 151 int ff = m_firstFree; local
153 if ((ff + 1) >= m_mapSize)
166 System.arraycopy(m_map, 0, newMap, 0, ff + 1);
172 m_map[ff] = value;
174 ff++;
176 m_firstFree = ff;
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
fft.c 73 int16_t dd, ee, ff, gg, hh, ii; local
208 ff = 0;
212 ff = ff+4;
214 ee = ff + (int16_t)WEBRTC_SPL_MUL_16_16(hh, ff);
312 ff = 0;
314 ff = ff+dd;
315 ee = ff+60
    [all...]
  /external/chromium_org/v8/test/webkit/fast/js/kde/
md5-2.js 61 function ff(a, b, c, d, x, s, t)
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/clang/test/CodeGenCXX/
constructor-init.cpp 51 float ff; member in struct:N

Completed in 1617 milliseconds

1 2 3 4