Searched defs:ft (Results 1 - 25 of 121) sorted by relevance

12345

/external/perfetto/src/tracing/core/
H A Dpacket_stream_validator_unittest.cc48 auto* ft = proto.mutable_ftrace_events()->add_event(); local
49 ft->set_pid(42);
50 ft->mutable_sched_switch()->set_prev_comm("tom");
51 ft->mutable_sched_switch()->set_prev_pid(123);
52 ft->mutable_sched_switch()->set_next_comm("jerry");
53 ft->mutable_sched_switch()->set_next_pid(456);
95 auto* ft = proto.mutable_ftrace_events()->add_event(); local
96 ft->set_pid(42);
97 ft->mutable_sched_switch()->set_prev_comm("tom");
98 ft
113 auto* ft = proto.mutable_ftrace_events()->add_event(); local
134 auto* ft = proto.mutable_ftrace_events()->add_event(); local
[all...]
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.mptr/
H A Dp3.cpp11 template<typename T> void ft(T& t) { function
23 ft(a); // expected-note{{in instantiation of function template specialization 'ft<A>' requested here}}
/external/libcxx/test/std/numerics/complex.number/cmplx.over/
H A DUDT_is_rejected.fail.cpp24 UDT<float> ft; variable
33 std::real(ft); // expected-error {{no matching function}}
40 std::imag(ft); // expected-error {{no matching function}}
47 std::arg(ft); // expected-error {{no matching function}}
54 std::norm(ft); // expected-error {{no matching function}}
61 std::conj(ft); // expected-error {{no matching function}}
68 std::proj(ft); // expected-error {{no matching function}}
/external/webrtc/webrtc/base/
H A Dwin32_unittest.cc31 FILETIME ft; local
32 ft.dwHighDateTime = 0xBAADF00D;
33 ft.dwLowDateTime = 0xFEED3456;
36 EXPECT_EQ(expected, ToUInt64(ft));
/external/libcups/cups/
H A Ddir.c49 _cups_dir_time(FILETIME ft) /* I - File time */ argument
60 val = ft.dwLowDateTime + ((ULONGLONG)ft.dwHighDateTime << 32);
/external/libopus/celt/tests/
H A Dtest_unit_laplace.c47 opus_uint32 ft = 32768 - LAPLACE_MINP*(2*LAPLACE_NMIN+1); local
48 int fs = (ft*(16384-decay))/(16384+decay);
H A Dtest_unit_entropy.c58 int ft; local
83 for(ft=2;ft<1024;ft++){
84 for(i=0;i<ft;i++){
85 entropy+=log(ft)*M_LOG2E;
86 ec_enc_uint(&enc,i,ft);
110 for(ft=2;ft<1024;ft
[all...]
/external/libvncserver/compat/msvc/sys/
H A Dtime.h34 FILETIME ft; local
40 GetSystemTimeAsFileTime(&ft);
42 tmpres |= ft.dwHighDateTime;
44 tmpres |= ft.dwLowDateTime;
/external/ltp/utils/ffsb-6.0-rc2/
H A Dmetaops.c85 void ffsb_metaops(ffsb_thread_t * ft, ffsb_fs_t * fs, unsigned opnum) argument
88 randdata_t *rd = ft_get_randdata(ft);
95 ft_incr_op(ft, opnum, 1, 0);
98 void ffsb_createdir(ffsb_thread_t * ft, ffsb_fs_t * fs, unsigned opnum) argument
102 randdata_t *rd = ft_get_randdata(ft);
111 ft_incr_op(ft, opnum, 1, 0);
/external/lzma/CPP/Windows/
H A DPropVariantConv.cpp12 bool ConvertFileTimeToString(const FILETIME &ft, char *s, bool includeTime, bool includeSeconds) throw() argument
15 if (!BOOLToBool(FileTimeToSystemTime(&ft, &st)))
56 void ConvertFileTimeToString(const FILETIME &ft, wchar_t *dest, bool includeTime, bool includeSeconds) throw() argument
59 ConvertFileTimeToString(ft, s, includeTime, includeSeconds);
/external/skia/gm/
H A Dfilltypes.cpp39 void showPath(SkCanvas* canvas, int x, int y, SkPath::FillType ft, argument
47 fPath.setFillType(ft);
H A Dfilltypespersp.cpp37 void showPath(SkCanvas* canvas, int x, int y, SkPath::FillType ft, argument
45 fPath.setFillType(ft);
/external/skqp/gm/
H A Dfilltypes.cpp39 void showPath(SkCanvas* canvas, int x, int y, SkPath::FillType ft, argument
47 fPath.setFillType(ft);
H A Dfilltypespersp.cpp37 void showPath(SkCanvas* canvas, int x, int y, SkPath::FillType ft, argument
45 fPath.setFillType(ft);
/external/libcxx/src/
H A Dchrono.cpp80 FILETIME ft; variable
83 GetSystemTimePreciseAsFileTime(&ft); variable
85 GetSystemTimeAsFileTime(&ft); variable
88 GetSystemTimeAsFileTime(&ft); variable
91 filetime_duration d{(static_cast<__int64>(ft.dwHighDateTime) << 32) |
92 static_cast<__int64>(ft.dwLowDateTime)};
/external/libopus/celt/
H A Dlaplace.c46 unsigned ft; local
47 ft = 32768 - LAPLACE_MINP*(2*LAPLACE_NMIN) - fs0;
48 return ft*(opus_int32)(16384-decay)>>15;
H A Dentdec.c199 unsigned ft; local
209 ft=(unsigned)(_ft>>ftb)+1;
210 s=ec_decode(_this,ft);
211 ec_dec_update(_this,s,s+1,ft);
/external/skia/samplecode/
H A DSampleFillType.cpp38 void showPath(SkCanvas* canvas, int x, int y, SkPath::FillType ft, argument
47 fPath.setFillType(ft);
/external/skqp/samplecode/
H A DSampleFillType.cpp38 void showPath(SkCanvas* canvas, int x, int y, SkPath::FillType ft, argument
47 fPath.setFillType(ft);
/external/clang/test/CXX/dcl.decl/dcl.meaning/
H A Dp1-0x.cpp39 template<typename T> void ft(); // expected-note {{here}}
65 template<> void ft<int>() {} function in namespace:inline_namespaces::N
66 template void ft<char>(); // expected-error {{undefined}}
/external/mdnsresponder/mDNSWindows/
H A DPosixCompat.c105 FILETIME ft; local
109 GetSystemTimeAsFileTime(&ft);
110 li.LowPart = ft.dwLowDateTime;
111 li.HighPart = ft.dwHighDateTime;
/external/mesa3d/src/gallium/state_trackers/clover/llvm/codegen/
H A Dnative.cpp108 TargetMachine::CodeGenFileType ft,
133 (ft == TargetMachine::CGFT_AssemblyFile);
135 if (tm->addPassesToEmitFile(pm, fos, ft))
107 emit_code(::llvm::Module &mod, const target &target, TargetMachine::CodeGenFileType ft, std::string &r_log) argument
/external/valgrind/none/tests/amd64/
H A Dfma.c7 } ft __attribute__((aligned (32))); variable in typeref:struct:float_test
31 __asm __volatile__ ("vfmadd132ss %2, %3, %0" : "=x" (w) : "0" (ft.x[i]), "x" (ft.y[i]), "x" (ft.z[i]));
32 thisres |= testf( w, ft.expected[i] );
33 __asm __volatile__ ("vfmadd132ss %2, %3, %0" : "=x" (w) : "0" (ft.x[i]), "m" (ft.y[i]), "x" (ft.z[i]));
34 thisres |= testf( w, ft.expected[i] );
35 __asm __volatile__ ("vfmadd213ss %3, %2, %0" : "=x" (w) : "0" (ft
[all...]
/external/clang/test/Sema/
H A Daddress_spaces.c48 typedef void ft(void); typedef
49 _AS1 ft qf; // expected-error {{function type may not be qualified with an address space}}
50 typedef _AS1 ft qft; // expected-error {{function type may not be qualified with an address space}}
/external/jemalloc/src/
H A Dnstime.c105 FILETIME ft; local
108 GetSystemTimeAsFileTime(&ft);
109 ticks_100ns = (((uint64_t)ft.dwHighDateTime) << 32) | ft.dwLowDateTime;

Completed in 2476 milliseconds

12345