HomeSort by relevance Sort by last modified time
    Searched defs:t2 (Results 126 - 150 of 1337) sorted by null

1 2 3 4 56 7 8 91011>>

  /bionic/libm/upstream-freebsd/lib/msun/src/
e_hypot.c 33 * t1*y1+((x-y)*(x-y)+(t1*y2+t2*y))
34 * where t1 = 2x with lower 32 bits cleared, t2 = 2x-t1,
57 double a,b,t1,t2,y1,y2,w; local
108 t2 = a-t1;
109 w = sqrt(t1*t1-(b*(-b)-t2*(a+t1)));
117 t2 = a - t1;
118 w = sqrt(t1*y1-(w*(-w)-(t1*y2+t2*b)));
e_hypotf.c 25 float a,b,t1,t2,y1,y2,w; local
69 t2 = a-t1;
70 w = __ieee754_sqrtf(t1*t1-(b*(-b)-t2*(a+t1)));
76 t2 = a - t1;
77 w = __ieee754_sqrtf(t1*y1-(w*(-w)-(t1*y2+t2*b)));
k_log.h 90 double hfsq,s,z,R,w,t1,t2; local
96 t2= z*(Lg1+w*(Lg3+w*(Lg5+w*Lg7)));
97 R = t2+t1;
k_logf.h 29 float hfsq,s,z,R,w,t1,t2; local
35 t2= z*(Lg1+w*Lg3);
36 R = t2+t1;
  /development/samples/ApiDemos/src/com/example/android/apis/text/
Link.java 49 TextView t2 = (TextView) findViewById(R.id.text2); local
50 t2.setMovementMethod(LinkMovementMethod.getInstance());
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/
cmptree.py 35 t2 = time.time() variable
36 dt = t2-t1
147 t2 = time.time()
149 dt = t2-t1
194 t2 = time.time()
197 dt = t2-t1
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/
p7-0x-fixits.cpp 22 struct {T t;} t2 = {700}; local
  /external/clang/test/CXX/temp/temp.param/
p3.cpp 31 ::T t2 = ::i; // global namespace members T and i \ local
  /external/clang/test/CodeGen/
ms_this.cpp 10 class t2 { class
16 // CHECK: define void @"\01?runc@t2@@
17 void t2::runc() {
21 // CHECK: [[THIS_ADDR_T2:%.+]] = alloca %class.t2*
22 // CHECK: [[THIS1_T2:%.+]] = load %class.t2*, %class.t2** [[THIS_ADDR_T2]],
23 // CHECK: call void asm sideeffect inteldialect "mov rax,qword ptr $1{{.*}}%class.t2* [[THIS1_T2]]
  /external/clang/test/CodeGenCXX/
bitfield-layout.cpp 13 } t2; variable in typeref:union:Test2
  /external/clang/test/Sema/
attr-cleanup.c 29 void t2() function
warn-char-subscripts.c 9 void t2() { function
  /external/clang/test/SemaCXX/
attr-cleanup.cpp 18 void t2() { function in class:D
trivial-constructor.cpp 7 struct T2 {
8 T2();
10 static_assert(!__has_trivial_constructor(T2), "T2 has a user-declared constructor!");
28 static T2 t2; member in struct:T6
37 struct T8 : T2 {
39 static_assert(!__has_trivial_constructor(T8), "The base class T2 does not have a trivial constructor!");
trivial-destructor.cpp 7 struct T2 {
8 ~T2();
10 static_assert(!__has_trivial_destructor(T2), "T2 has a user-declared destructor!");
28 static T2 t2; member in struct:T6
33 T2 t2; member in struct:T7
35 static_assert(!__has_trivial_destructor(T7), "t2 does not have a trivial destructor!");
37 struct T8 : T2 {
    [all...]
  /external/clang/test/SemaTemplate/
fun-template-def.cpp 26 T t2 = i1; local
27 t2 = i1 + u1;
metafun-apply.cpp 37 apply1<bogus, int>::type t2; // expected-note{{in instantiation of template class 'apply1<bogus, int>' requested here}} local
  /external/compiler-rt/lib/tsan/tests/rtl/
tsan_test.cc 21 ScopedThread t1, t2; local
24 t2.Call(foo);
25 t2.Call(bar);
26 t2.Write1(l, true);
27 t2.Return();
28 t2.Return();
  /external/compiler-rt/test/tsan/
load_shared_lib.cc 47 pthread_t t1, t2; local
49 pthread_create(&t2, NULL, access_callback, NULL);
51 pthread_join(t2, NULL);
  /external/fdlibm/
e_hypot.c 30 * t1*y1+((x-y)*(x-y)+(t1*y2+t2*y))
31 * where t1 = 2x with lower 32 bits cleared, t2 = 2x-t1,
55 double a=x,b=y,t1,t2,y1,y2,w; local
98 t2 = a-t1;
99 w = ieee_sqrt(t1*t1-(b*(-b)-t2*(a+t1)));
107 t2 = a - t1;
108 w = ieee_sqrt(t1*y1-(w*(-w)-(t1*y2+t2*b)));
  /external/harfbuzz_ng/src/
hb-utf-private.hh 65 unsigned int t1, t2; local
68 (t2 = text[1] - 0x80u) <= 0x3Fu))
70 c = ((c&0xFu)<<12) | (t1<<6) | t2;
80 unsigned int t1, t2, t3; local
83 (t2 = text[1] - 0x80u) <= 0x3Fu &&
86 c = ((c&0x7u)<<18) | (t1<<12) | (t2<<6) | t3;
  /external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/
Issue241.java 35 ResolvedType t2 = javaParserFacade.convert(t, t); local
36 String typeName = t2.asReferenceType().getQualifiedName();
  /external/libcxx/test/libcxx/utilities/tuple/tuple.tuple/tuple.cnstr/
enable_reduced_arity_initialization_extension.pass.cpp 107 Tup t2 = {E(0)}; local
  /external/libcxx/test/std/containers/sequences/array/
at.pass.cpp 108 constexpr T t2 = c.at(2); local
109 static_assert (t2 == 3.5, "");
front_back.pass.cpp 108 constexpr T t2 = c.back(); local
109 static_assert (t2 == 3.5, "");

Completed in 1172 milliseconds

1 2 3 4 56 7 8 91011>>