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

12345

/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);
H A Dffsb_op.c189 void do_op(struct ffsb_thread *ft, struct ffsb_fs *fs, unsigned op_num) argument
191 ffsb_op_list[op_num].op_fn(ft, fs, op_num);
H A Dffsb_thread.c23 void init_ffsb_thread(ffsb_thread_t * ft, struct ffsb_tg *tg, unsigned bufsize, argument
26 memset(ft, 0, sizeof(ffsb_thread_t));
28 ft->tg = tg;
29 ft->tg_num = tg_num;
30 ft->thread_num = thread_num;
33 ft_alter_bufsize(ft, bufsize);
35 init_random(&ft->rd, MAX_RANDBUF_SIZE);
38 void destroy_ffsb_thread(ffsb_thread_t * ft) argument
40 free(ft->mallocbuf);
41 destroy_random(&ft
46 ft_set_statsc(ffsb_thread_t * ft, ffsb_statsc_t * fsc) argument
53 ffsb_thread_t *ft = (ffsb_thread_t *) data; local
68 ft_alter_bufsize(ffsb_thread_t * ft, unsigned bufsize) argument
76 ft_getbuf(ffsb_thread_t * ft) argument
81 ft_get_read_random(ffsb_thread_t * ft) argument
86 ft_get_read_size(ffsb_thread_t * ft) argument
91 ft_get_read_blocksize(ffsb_thread_t * ft) argument
96 ft_get_write_random(ffsb_thread_t * ft) argument
101 ft_get_write_size(ffsb_thread_t * ft) argument
106 ft_get_write_blocksize(ffsb_thread_t * ft) argument
111 ft_get_fsync_file(ffsb_thread_t * ft) argument
116 ft_get_randdata(ffsb_thread_t * ft) argument
121 ft_incr_op(ffsb_thread_t * ft, unsigned opnum, unsigned increment, uint64_t bytes) argument
129 ft_add_readbytes(ffsb_thread_t * ft, uint32_t bytes) argument
134 ft_add_writebytes(ffsb_thread_t * ft, uint32_t bytes) argument
139 ft_get_results(ffsb_thread_t * ft) argument
144 ft_get_read_skip(ffsb_thread_t * ft) argument
149 ft_get_read_skipsize(ffsb_thread_t * ft) argument
154 ft_needs_stats(ffsb_thread_t * ft, syscall_t sys) argument
162 ft_add_stat(ffsb_thread_t * ft, syscall_t sys, uint32_t val) argument
168 ft_get_stats_data(ffsb_thread_t * ft) argument
[all...]
H A Dfh.c51 ffsb_thread_t * ft, ffsb_fs_t * fs, syscall_t sys)
56 if (!ft && !fs)
63 if (ft && ft_needs_stats(ft, sys))
64 ft_add_stat(ft, sys, value);
70 ffsb_thread_t * ft, ffsb_fs_t * fs)
74 int need_stats = ft_needs_stats(ft, SYS_OPEN) ||
90 do_stats(&start, &end, ft, fs, SYS_OPEN);
96 int fhopenread(char *filename, ffsb_thread_t * ft, ffsb_fs_t * fs) argument
103 return fhopenhelper(filename, "r", flags, ft, f
50 do_stats(struct timeval *start, struct timeval *end, ffsb_thread_t * ft, ffsb_fs_t * fs, syscall_t sys) argument
69 fhopenhelper(char *filename, char *bufflags, int flags, ffsb_thread_t * ft, ffsb_fs_t * fs) argument
106 fhopenappend(char *filename, ffsb_thread_t * ft, ffsb_fs_t * fs) argument
116 fhopenwrite(char *filename, ffsb_thread_t * ft, ffsb_fs_t * fs) argument
126 fhopencreate(char *filename, ffsb_thread_t * ft, ffsb_fs_t * fs) argument
136 fhread(int fd, void *buf, uint64_t size, ffsb_thread_t * ft, ffsb_fs_t * fs) argument
162 fhwrite(int fd, void *buf, uint32_t size, ffsb_thread_t * ft, ffsb_fs_t * fs) argument
189 fhseek(int fd, uint64_t offset, int whence, ffsb_thread_t * ft, ffsb_fs_t * fs) argument
224 fhclose(int fd, ffsb_thread_t * ft, ffsb_fs_t * fs) argument
241 fhstat(char *name, ffsb_thread_t * ft, ffsb_fs_t * fs) argument
263 writefile_helper(int fd, uint64_t size, uint32_t blocksize, char *buf, struct ffsb_thread *ft, struct ffsb_fs *fs) argument
[all...]
/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)))
46 void ConvertFileTimeToString(const FILETIME &ft, wchar_t *dest, bool includeTime, bool includeSeconds) throw() argument
49 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/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/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/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/icu/icu4c/source/test/intltest/
H A Dwindttst.cpp74 FILETIME ft; local
98 SystemTimeToFileTime(&st, &ft);
101 int64_t wftNow = ((int64_t) ft.dwHighDateTime << 32) + ft.dwLowDateTime;
/external/jemalloc/src/
H A Dnstime.c105 FILETIME ft; local
108 GetSystemTimeAsFileTime(&ft);
109 ticks_100ns = (((uint64_t)ft.dwHighDateTime) << 32) | ft.dwLowDateTime;
/external/libtextclassifier/common/
H A Dfeature-extractor.cc49 FeatureType *ft = feature_types_[i]; local
50 ft->set_base(i);
53 double domain_size = ft->GetDomainSize();
55 TC_LOG(ERROR) << "Illegal domain size for feature " << ft->name() << ": "
68 FeatureType *ft = feature_types_[i]; local
69 const FeatureValue feature_type_dsize = ft->GetDomainSize();

Completed in 484 milliseconds

12345