/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/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...] |
iolog.c | 483 struct fio_file *ff; local 511 for_each_file(td, ff, i) 512 log_file(td, ff, FIO_LOG_ADD_FILE);
|
/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");
|
/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
|
/bionic/tests/ |
math_test.cpp | 1296 float ff = modff(123.75f, &fi); local 1298 ASSERT_FLOAT_EQ(0.75f, ff); [all...] |
/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;
|
/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
|
/external/compiler-rt/lib/asan/ |
asan_fake_stack.cc | 140 FakeFrame *ff = reinterpret_cast<FakeFrame *>( local 142 if (ff->real_stack < real_stack) { 157 FakeFrame *ff = reinterpret_cast<FakeFrame *>( local 159 uptr begin = reinterpret_cast<uptr>(ff); 196 FakeFrame *ff = fs->Allocate(fs->stack_size_log(), class_id, real_stack); 197 if (!ff) 199 uptr ptr = reinterpret_cast<uptr>(ff);
|
/external/apache-xml/src/main/java/org/apache/xpath/ |
NodeSet.java | 912 int ff = m_firstFree; local 914 if ((ff + 1) >= m_mapSize) 927 System.arraycopy(m_map, 0, newMap, 0, ff + 1); 933 m_map[ff] = value; 935 ff++; 937 m_firstFree = ff; [all...] |
/external/clang/test/CodeGen/ |
struct.c | 31 F *ff; member in struct:__sf2 35 if (c->ff->c >= 0)
|
/external/clang/test/SemaCXX/ |
conditional-expr.cpp | 286 fa, fb, fc, fd, fe, ff enumerator in enum:test1::A::Foo
|
cxx1y-variable-templates_top_level.cpp | 354 float ff = *arr<float>; local
|
/external/clang/test/SemaTemplate/ |
dependent-names.cpp | 330 TS<> ff; member in struct:rdar11242625::Sub
|
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/x86/ |
vp9_loopfilter_intrin_avx2.c | 48 __m128i abs_p1q1, abs_p0q0, abs_q1q0, fe, ff, work; local 53 ff = _mm_cmpeq_epi8(abs_p1p0, abs_p1p0); 60 hev = _mm_xor_si128(_mm_cmpeq_epi8(hev, zero), ff); 65 mask = _mm_xor_si128(_mm_cmpeq_epi8(mask, zero), ff); 429 const __m128i ff = _mm_cmpeq_epi8(abs_p1p0, abs_p1p0); local 437 hev = _mm_xor_si128(_mm_cmpeq_epi8(hev, zero), ff); 442 mask = _mm_xor_si128(_mm_cmpeq_epi8(mask, zero), ff); [all...] |