Searched defs:f2 (Results 1 - 25 of 467) sorted by last modified time

1234567891011>>

/external/yaffs2/yaffs2/direct/
H A Ddtest.c256 sprintf(fn,"%s/%s",path,"f2");
343 sprintf(fn[2],"%s/%s",path,"f2");
1434 int f2; local
1476 int f2; local
1497 f2 = yaffs_freespace(mountpt);
1505 printf("%d\n%d\n%d\n%d\n",f0, f1,f2,f3);
/external/wpa_supplicant_8/hostapd/
H A Dhlr_auc_gw.c534 FILE *f, *f2; local
547 f2 = fopen(buf, "w");
548 if (f2 == NULL) {
585 fprintf(f2, "%s", buf);
588 fclose(f2);
/external/valgrind/main/none/tests/s390x/
H A Dbfp-1.c7 volatile float f1, f2; variable
32 register float r2 asm("f2") = f2;
37 printf("%f + %f = %f\n", f1, f2, r1);
43 register float r2 asm("f2") = f2;
48 printf("%f - %f = %f\n", f1, f2, r1);
54 register float r2 asm("f2") = f2;
59 printf("%f * %f = %f\n", f1, f2, r
[all...]
H A Dbfp-4.c39 float f1, f2; local
44 f2 = f1;
45 cebr(f1, f2);
46 f2 = f1 + 10.;
47 cebr(f1, f2);
48 f2 = f1 - 100.;
49 cebr(f1, f2);
/external/valgrind/main/perf/
H A Dtinycc.c11096 long double f1, f2;
11106 f2 = v2->c.f;
11109 f2 = v2->c.d;
11112 f2 = v2->c.ld;
11117 if (!ieee_finite(f1) || !ieee_finite(f2))
11121 case '+': f1 += f2; break;
11122 case '-': f1 -= f2; break;
11123 case '*': f1 *= f2; break;
11125 if (f2 == 0.0) {
11130 f1 /= f2;
11094 long double f1, f2; local
[all...]
/external/valgrind/main/VEX/priv/
H A Dhost_arm64_defs.c3453 static inline UInt X_8_19_1_4 ( UInt f1, UInt f2, UInt f3, UInt f4 ) { argument
3456 vassert(f2 < (1<<19));
3461 w = (w << 19) | f2;
3469 static inline UInt X_3_6_2_16_5 ( UInt f1, UInt f2, argument
3473 vassert(f2 < (1<<6));
3479 w = (w << 6) | f2;
3488 static inline UInt X_2_6_2_12_5_5 ( UInt f1, UInt f2, UInt f3, argument
3492 vassert(f2 < (1<<6));
3499 w = (w << 6) | f2;
3507 static inline UInt X_3_8_5_6_5_5 ( UInt f1, UInt f2, UIn argument
3526 X_3_5_8_6_5_5( UInt f1, UInt f2, UInt f3, UInt f4, UInt f5, UInt f6 ) argument
3545 X_3_6_7_6_5_5( UInt f1, UInt f2, UInt f3, UInt f4, UInt f5, UInt f6 ) argument
3566 X_2_6_3_9_2_5_5( UInt f1, UInt f2, UInt f3, UInt f4, UInt f5, UInt f6, UInt f7 ) argument
3587 X_3_6_1_6_6_5_5( UInt f1, UInt f2, UInt f3, UInt f4, UInt f5, UInt f6, UInt f7 ) argument
3608 X_9_1_6_4_6_1_1_4( UInt f1, UInt f2, UInt f3, UInt f4, UInt f5, UInt f6, UInt f7, UInt f8) argument
[all...]
H A Dhost_ppc_defs.c3203 static UChar* mkFormXL ( UChar* p, UInt opc1, UInt f1, UInt f2, argument
3209 vassert(f2 < 0x20);
3213 theInstr = ((opc1<<26) | (f1<<21) | (f2<<16) |
3219 static UChar* mkFormXFX ( UChar* p, UInt r1, UInt f2, UInt opc2 ) argument
3223 vassert(f2 < 0x20);
3227 vassert(f2 < 0x100);
3228 f2 = f2 << 1;
3233 vassert(f2 < 0x400);
3235 f2
[all...]
H A Dhost_s390_isel.c2079 HReg f0, f2, f4, r1; /* real registers used by PFPO */ local
2094 f2 = make_fpr(2); /* destination */
2101 addInstr(env, s390_insn_fp128_convert(16, fpconv, f0, f2,
2103 /* (f0, f2) --> destination */
2107 addInstr(env, s390_insn_move(8, *dst_lo, f2));
2117 HReg f0, f2, f4, f6, r1; /* real registers used by PFPO */ local
2122 f2 = make_fpr(2); /* destination */
2132 addInstr(env, s390_insn_fp128_convert(16, S390_FP_D128_TO_F128, f0, f2,
2134 /* (f0, f2) --> destination */
2138 addInstr(env, s390_insn_move(8, *dst_lo, f2));
2793 HReg f0, f2, f4, r1; /* real registers used by PFPO */ local
2831 HReg f0, f2, f4, f6, r1; /* real registers used by PFPO */ local
[all...]
/external/valgrind/main/coregrind/m_debuginfo/
H A Dreadpdb.c1811 const FPO_DATA* f2 = f2V; local
1812 if (f1->ulOffStart < f2->ulOffStart) return -1;
1813 if (f1->ulOffStart > f2->ulOffStart) return 1;
1814 if (f1->cbProcSize < f2->cbProcSize) return -1;
1815 if (f1->cbProcSize > f2->cbProcSize) return 1;
/external/valgrind/main/coregrind/
H A Dm_vki.c108 vki_sigaction_fromK_t f2; local
113 vg_assert(sizeof(f1.sa_handler) == sizeof(f2.ksa_handler));
114 vg_assert(sizeof(f1.sa_mask) == sizeof(f2.sa_mask));
115 vg_assert(sizeof(f1.sa_flags) == sizeof(f2.sa_flags));
121 vg_assert(offsetof(f1.sa_handler) == offsetof(f2.ksa_handler));
122 vg_assert(offsetof(f1.sa_mask) == offsetof(f2.sa_mask));
123 vg_assert(offsetof(f1.sa_flags) == offsetof(f2.sa_flags));
/external/valgrind/main/drd/tests/
H A Dtsan_unittest.cpp282 MyThreadArray(F f1, F f2 = NULL, F f3 = NULL, F f4 = NULL, F f5 = NULL) {
284 ar_[1] = f2 ? new MyThread(f2) : NULL;
5341 void f2() { function in namespace:test111
5348 void f0() { f2(); }
5353 f2();
5906 void TestTwoSizes(F f1, F f2) { argument
5907 // first f1, then f2
5910 MyThreadArray t1(f1, f2);
5916 MyThreadArray t2(f2, f
[all...]
/external/valgrind/main/memcheck/tests/
H A Ddeep-backtrace.c2 int f2(int *p) { return f1(p); } function
3 int f3(int *p) { return f2(p); }
/external/tcpdump/
H A Dprint-smb.c179 const char *f1 = NULL, *f2 = NULL; local
217 f2 = fn->descript.req_f2;
223 f2 = fn->descript.rep_f2;
233 smb_fdata(data, f2 ? f2 : "Data=\n", data + dcnt, unicodestr);
339 const char *f1, *f2, *f3, *f4; local
351 f2 = "|Name=[S]\n";
361 f2 = "|Unknown ";
373 smb_fdata(data1 + 2, f2, maxbuf - (paramlen + datalen), unicodestr);
401 const char *f1 = NULL, *f2 local
442 const char *f1 = NULL, *f2 = NULL; local
487 const char *f1 = NULL, *f2 = NULL; local
841 const char *f1, *f2; local
[all...]
/external/stlport/test/unit/
H A Dmfunptr_test.cpp44 int f2(S1&, S2&);
79 ptr_fun(f2)(s1, s2);
134 int f2(S1&, S2&) function
/external/strace/tests/
H A Dstack-fcall-2.c3 int f2(int i) function
/external/speex/libspeex/
H A Dresample_sse.h108 __m128d f2 = _mm_cvtps_pd(_mm_movehl_ps(f,f)); local
121 sum2 = _mm_mul_pd(f2, sum2);
/external/sqlite/dist/orig/
H A Dsqlite3.c65498 int f1, f2; local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c65518 int f1, f2; local
[all...]
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dfloat-weight.h159 float f1 = w1.Value(), f2 = w2.Value(); local
162 else if (f2 == kPosInfinity)
165 return TropicalWeight(f1 + f2);
171 float f1 = w1.Value(), f2 = w2.Value(); local
172 if (f2 == kPosInfinity)
177 return TropicalWeight(f1 - f2);
220 float f1 = w1.Value(), f2 = w2.Value(); local
223 else if (f2 == kPosInfinity)
225 else if (f1 > f2)
226 return LogWeight(f2
232 float f1 = w1.Value(), f2 = w2.Value(); local
244 float f1 = w1.Value(), f2 = w2.Value(); local
[all...]
/external/srtp/crypto/hash/
H A Dsha1.c62 #define f2(B,C,D) ((B & C) | (B & D) | (C & D)) macro
168 TEMP = S5(A) + f2(B,C,D) + E + W[t] + SHA_K2;
323 TEMP = S5(A) + f2(B,C,D) + E + W[t] + SHA_K2;
376 TEMP = S5(A) + f2(B,C,D) + E + W[t] + SHA_K2;
/external/skia/src/core/
H A DSkVertState.h21 int f0, f1, f2; member in struct:VertState
/external/skia/tests/
H A DPathTest.cpp1533 SkPoint f2[] = {{0, 0}, {1, 1}, {0, 1}, {1, 0}}; // diagonal local
1578 { f2, SK_ARRAY_COUNT(f2), true, false },
1726 SkPoint f2[] = {{0, 0}, {1, 1}, {0, 1}, {1, 0}}; // diagonal local
1761 { f2, SK_ARRAY_COUNT(f2), SkPath::kUnknown_Direction, true, false },
/external/skia/experimental/Intersection/
H A DCubicParameterization.cpp446 double e2, f2, g2, h2; local
448 alt_set_abcd(&two[0].y, e2, f2, g2, h2);
450 set_abcd(&two[0].y, e2, f2, g2, h2);
467 double f2 = two[1].y; local
470 calc_ABCD(a2, b2, c2, d2, e2, f2, g2, h2, p2);
479 calc_bc(h2, f2, g2);
485 p2[index] = (*calc_proc[procIndex])(a2, b2, c2, d2, e2, f2, g2, h2);
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
H A Dsqlite-jdbc-3.7.2.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/org. ...

Completed in 5606 milliseconds

1234567891011>>