HomeSort by relevance Sort by last modified time
    Searched refs:f2 (Results 251 - 275 of 709) sorted by null

<<11121314151617181920>>

  /ndk/sources/cxx-stl/llvm-libc++/test/input.output/iostreams.base/ios.base/ios.base.cons/
dtor.pass.cpp 48 void f2(std::ios_base::event ev, std::ios_base& stream, int index) function
80 b.register_callback(f2, 5);
  /ndk/sources/cxx-stl/llvm-libc++/test/thread/thread.condition/thread.condition.condvar/
notify_all.pass.cpp 38 void f2() function
51 std::thread t2(f2);
notify_one.pass.cpp 38 void f2() function
51 std::thread t2(f2);
  /ndk/sources/cxx-stl/llvm-libc++/test/thread/thread.condition/thread.condition.condvarany/
notify_all.pass.cpp 42 void f2() function
55 std::thread t2(f2);
notify_one.pass.cpp 42 void f2() function
55 std::thread t2(f2);
  /ndk/sources/cxx-stl/llvm-libc++/test/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.cons/
mutex_duration.pass.cpp 40 void f2()
61 std::thread t(f2);
mutex_time_point.pass.cpp 40 void f2()
61 std::thread t(f2);
  /ndk/sources/cxx-stl/llvm-libc++/test/thread/thread.mutex/thread.mutex.requirements/thread.timedmutex.requirements/thread.timedmutex.class/
try_lock_for.pass.cpp 40 void f2()
60 std::thread t(f2);
try_lock_until.pass.cpp 40 void f2()
60 std::thread t(f2);
  /ndk/sources/cxx-stl/llvm-libc++/test/thread/thread.mutex/thread.mutex.requirements/thread.timedmutex.requirements/thread.timedmutex.recursive/
try_lock_for.pass.cpp 42 void f2()
62 std::thread t(f2);
try_lock_until.pass.cpp 42 void f2()
62 std::thread t(f2);
  /external/v8/test/mjsunit/compiler/
optimized-function-calls.js 65 function f2(a, b) { function
78 return f4(f3(f2(f1(f0()),f0()),f1(f0()),f0()),f2(f1(f0()),f0()),f1(f0()),f0())
79 + f4(f0(),f1(f0()),f2(f1(f0()),f0()),f3(f2(f1(f0()),f0()),f1(f0()),f0()));
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
FloatTest.java 123 Float f2 = new Float(90.8f); local
124 assertTrue("Returned incorrect byte value", f.byteValue() == 0 && f2.byteValue() == 90);
141 float f2 = values[j]; local
142 assertTrue("compare() " + f1 + " should be less " + f2,
143 Float.compare(f1, f2) == -1);
144 assertTrue("compare() " + f2 + " should be greater " + f1, Float
145 .compare(f2, f1) == 1);
146 Float F2 = new Float(f2);
147 assertTrue("compareTo() " + f1 + " should be less " + f2,
195 Float f2 = new Float(-0.876f); local
235 Float f2 = new Float(90.8f); local
283 Float f2 = new Float(90.8f); local
804 Float f2 = new Float(90.8f); local
951 float f2 = values[j]; local
971 Float f2 = new Float(8765.4321f); local
    [all...]
  /external/opencv/cv/src/
cvfundam.cpp 686 double* f1, *f2; local
722 f2 = v + 8*9;
724 // f1, f2 is a basis => lambda*f1 + mu*f2 is an arbitrary f. matrix.
726 // so f ~ lambda*f1 + (1 - lambda)*f2.
727 // use the additional constraint det(f) = det(lambda*f1 + (1-lambda)*f2) to find lambda.
731 f1[i] -= f2[i];
733 t0 = f2[4]*f2[8] - f2[5]*f2[7]
    [all...]
  /external/openfst/src/include/fst/
float-weight.h 264 T f1 = w1.Value(), f2 = w2.Value();
267 else if (f2 == FloatLimits<T>::PosInfinity())
270 return TropicalWeightTpl<T>(f1 + f2);
289 T f1 = w1.Value(), f2 = w2.Value();
290 if (f2 == FloatLimits<T>::PosInfinity())
295 return TropicalWeightTpl<T>(f1 - f2);
373 T f1 = w1.Value(), f2 = w2.Value(); local
376 else if (f2 == FloatLimits<T>::PosInfinity())
378 else if (f1 > f2)
379 return LogWeightTpl<T>(f2 - LogExp(f1 - f2))
    [all...]
  /development/samples/Support7Demos/src/com/example/android/supportv7/media/
SampleMediaRouteProvider.java 86 IntentFilter f2 = new IntentFilter(); typedefs
87 f2.addCategory(MediaControlIntent.CATEGORY_REMOTE_PLAYBACK);
88 f2.addAction(MediaControlIntent.ACTION_PLAY);
89 f2.addDataScheme("http");
90 f2.addDataScheme("https");
91 addDataTypeUnchecked(f2, "video/*");
95 CONTROL_FILTERS.add(f2); typedefs
  /external/smali/util/src/main/java/org/jf/util/
ClassFileNameHandler.java 297 File f, f2; local
300 f2 = new File(path, "TEST." + num++);
301 } while(f.exists() || f2.exists());
314 if (f2.exists()) {
318 if (f2.createNewFile()) {
322 //the above 2 tests should catch almost all cases. But maybe there was a failure while creating f2
324 //f2
327 FileReader reader = new FileReader(f2);
345 try { f2.delete(); } catch (Exception ex) {}
  /external/clang/test/CodeGen/
stdcall-fastcall.c 4 void __attribute__((stdcall)) f2(void);
13 f2();
14 // CHECK: call x86_stdcallcc void @f2()
24 void (__attribute__((stdcall)) *pf2)(void) = f2;
  /external/clang/test/SemaCXX/
overload-member-call.cpp 12 float& f2 = f(x); local
23 float& f2 = g(0); local
43 float& f2 = xp->f(0); local
  /external/clang/test/SemaTemplate/
dependent-type-identity.cpp 39 void f2(X0<T>*); // expected-note{{previous}}
40 void f2(X0<U>*);
41 void f2(X0<type>*); // expected-error{{redeclar}}
instantiate-method.cpp 97 int &f2() { function in struct:X1
103 int &ir = x1i.f2();
108 int &f2() { return X0Base::f(); } function in struct:X2
  /external/tcpdump/
print-smb.c 179 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 = NULL 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/v8/test/mjsunit/
call.js 63 function f2(a, b) { function
70 assertEquals(3, f2.call(x));
71 assertEquals(14, f2.call({i:12}, 'i'));
72 assertEquals(42, f2.call(x, 'n', 41));
73 assertEquals(87, f2.call(x, 'n', 86, 1));
74 assertEquals(99, f2.call(x, 'n', 98, 1, 2));
  /libcore/luni/src/main/java/java/lang/
Math.java 475 public static float max(float f1, float f2) {
476 if (f1 > f2) {
479 if (f1 < f2) {
480 return f2;
483 if (f1 != f2) {
489 return f2;
551 public static float min(float f1, float f2) {
552 if (f1 > f2) {
553 return f2;
555 if (f1 < f2) {
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/input.output/iostreams.base/ios/basic.ios.members/
imbue.pass.cpp 44 void f2(std::ios_base::event ev, std::ios_base& stream, int index) function
75 ios.register_callback(f2, 5);
91 ios.register_callback(f2, 5);

Completed in 2562 milliseconds

<<11121314151617181920>>