Searched refs:ft (Results 1 - 25 of 194) sorted by relevance

12345678

/external/ltp/utils/ffsb-6.0-rc2/
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 Dfileops.c35 ffsb_thread_t * ft, ffsb_fs_t * fs, syscall_t sys)
40 if (!ft && !fs)
47 if (ft && ft_needs_stats(ft, sys))
48 ft_add_stat(ft, sys, value);
64 char *buf, ffsb_thread_t * ft, ffsb_fs_t * fs)
73 fhread(fd, buf, blocksize, ft, fs);
75 fhread(fd, buf, last, ft, fs);
89 void ffsb_readfile(ffsb_thread_t * ft, ffsb_fs_t * fs, unsigned opnum) argument
97 char *buf = ft_getbuf(ft);
34 do_stats(struct timeval *start, struct timeval *end, ffsb_thread_t * ft, ffsb_fs_t * fs, syscall_t sys) argument
63 readfile_helper(int fd, uint64_t size, uint32_t blocksize, char *buf, ffsb_thread_t * ft, ffsb_fs_t * fs) argument
192 ffsb_readall(ffsb_thread_t * ft, ffsb_fs_t * fs, unsigned opnum) argument
220 ffsb_writefile_core(ffsb_thread_t * ft, ffsb_fs_t * fs, unsigned opnum, uint64_t * filesize_ret, int fsync_file) argument
282 ffsb_writefile(ffsb_thread_t * ft, ffsb_fs_t * fs, unsigned opnum) argument
292 ffsb_writefile_fsync(ffsb_thread_t * ft, ffsb_fs_t * fs, unsigned opnum) argument
304 ffsb_writeall_core(ffsb_thread_t * ft, ffsb_fs_t * fs, unsigned opnum, uint64_t * filesize_ret, int fsync_file) argument
341 ffsb_writeall(ffsb_thread_t * ft, ffsb_fs_t * fs, unsigned opnum) argument
351 ffsb_writeall_fsync(ffsb_thread_t * ft, ffsb_fs_t * fs, unsigned opnum) argument
361 ffsb_appendfile_core(ffsb_thread_t * ft, ffsb_fs_t * fs, unsigned opnum, uint64_t * filesize_ret, int fsync_file) argument
397 ffsb_appendfile(ffsb_thread_t * ft, ffsb_fs_t * fs, unsigned opnum) argument
407 ffsb_appendfile_fsync(ffsb_thread_t * ft, ffsb_fs_t * fs, unsigned opnum) argument
417 ffsb_createfile_core(ffsb_thread_t * ft, ffsb_fs_t * fs, unsigned opnum, uint64_t * filesize_ret, int fsync_file) argument
466 ffsb_createfile(ffsb_thread_t * ft, ffsb_fs_t * fs, unsigned opnum) argument
476 ffsb_createfile_fsync(ffsb_thread_t * ft, ffsb_fs_t * fs, unsigned opnum) argument
486 ffsb_deletefile(ffsb_thread_t * ft, ffsb_fs_t * fs, unsigned opnum) argument
517 ffsb_open_close(ffsb_thread_t * ft, ffsb_fs_t * fs, unsigned opnum) argument
531 ffsb_stat(ffsb_thread_t * ft, ffsb_fs_t * fs, unsigned opnum) 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...]
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/llvm/lib/Support/Windows/
H A DTimeValue.inc28 uint64_t ft;
29 GetSystemTimeAsFileTime(reinterpret_cast<FILETIME *>(&ft));
32 t.fromWin32Time(ft);
/external/swiftshader/third_party/llvm-subzero/lib/Support/Windows/
H A DTimeValue.inc28 uint64_t ft;
29 GetSystemTimeAsFileTime(reinterpret_cast<FILETIME *>(&ft));
32 t.fromWin32Time(ft);
/external/python/cpython3/Lib/turtledemo/
H A Dfractalcurves.py79 ft = CurvesTurtle()
81 ft.reset()
82 ft.speed(0)
83 ft.ht()
84 ft.getscreen().tracer(1,0)
85 ft.pu()
88 ft.setpos(-33*size, -32*size)
89 ft.pd()
92 ft.fillcolor("red")
93 ft
[all...]
/external/python/cpython2/Demo/turtle/
H A Dtdemo_fractalcurves.py79 ft = CurvesTurtle()
81 ft.reset()
82 ft.speed(0)
83 ft.ht()
84 ft.tracer(1,0)
85 ft.pu()
88 ft.setpos(-33*size, -32*size)
89 ft.pd()
92 ft.fillcolor("red")
93 ft
[all...]
/external/slf4j/slf4j-jcl/src/main/java/org/slf4j/impl/
H A DJCLLoggerAdapter.java89 FormattingTuple ft = MessageFormatter.format(format, arg);
90 log.trace(ft.getMessage(), ft.getThrowable());
112 FormattingTuple ft = MessageFormatter.format(format, arg1, arg2);
113 log.trace(ft.getMessage(), ft.getThrowable());
131 FormattingTuple ft = MessageFormatter.arrayFormat(format, arguments);
132 log.trace(ft.getMessage(), ft.getThrowable());
185 FormattingTuple ft
[all...]
/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/slf4j/slf4j-log4j12/src/main/java/org/slf4j/impl/
H A DLog4jLoggerAdapter.java128 FormattingTuple ft = MessageFormatter.format(format, arg);
129 logger.log(FQCN, traceCapable ? Level.TRACE : Level.DEBUG, ft.getMessage(), ft.getThrowable());
151 FormattingTuple ft = MessageFormatter.format(format, arg1, arg2);
152 logger.log(FQCN, traceCapable ? Level.TRACE : Level.DEBUG, ft.getMessage(), ft.getThrowable());
172 FormattingTuple ft = MessageFormatter.arrayFormat(format, arguments);
173 logger.log(FQCN, traceCapable ? Level.TRACE : Level.DEBUG, ft.getMessage(), ft.getThrowable());
224 FormattingTuple ft
[all...]
/external/lzma/CPP/Windows/
H A DTimeUtils.cpp19 bool DosTimeToFileTime(UInt32 dosTime, FILETIME &ft) throw() argument
22 return BOOLToBool(::DosDateTimeToFileTime((UInt16)(dosTime >> 16), (UInt16)(dosTime & 0xFFFF), &ft));
24 ft.dwLowDateTime = 0;
25 ft.dwHighDateTime = 0;
31 ft.dwLowDateTime = (UInt32)res;
32 ft.dwHighDateTime = (UInt32)(res >> 32);
44 bool FileTimeToDosTime(const FILETIME &ft, UInt32 &dosTime) throw() argument
49 if (!::FileTimeToDosDateTime(&ft, &datePart, &timePart))
51 dosTime = (ft.dwHighDateTime >= 0x01C00000) ? kHighDosTime : kLowDosTime;
59 UInt64 v64 = ft
118 UnixTimeToFileTime(UInt32 unixTime, FILETIME &ft) argument
125 UnixTime64ToFileTime(Int64 unixTime, FILETIME &ft) argument
144 FileTimeToUnixTime64(const FILETIME &ft) argument
150 FileTimeToUnixTime(const FILETIME &ft, UInt32 &unixTime) argument
189 GetCurUtcFileTime(FILETIME &ft) argument
[all...]
H A DPropVariantConv.h9 bool ConvertFileTimeToString(const FILETIME &ft, char *s, bool includeTime = true, bool includeSeconds = true) throw();
10 void ConvertFileTimeToString(const FILETIME &ft, wchar_t *s, bool includeTime = true, bool includeSeconds = true) throw();
H A DTimeUtils.h17 Int64 FileTimeToUnixTime64(const FILETIME &ft) throw();
20 void GetCurUtcFileTime(FILETIME &ft) throw();
/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/slf4j/slf4j-jdk14/src/main/java/org/slf4j/impl/
H A DJDK14LoggerAdapter.java96 FormattingTuple ft = MessageFormatter.format(format, arg);
97 log(SELF, Level.FINEST, ft.getMessage(), ft.getThrowable());
119 FormattingTuple ft = MessageFormatter.format(format, arg1, arg2);
120 log(SELF, Level.FINEST, ft.getMessage(), ft.getThrowable());
140 FormattingTuple ft = MessageFormatter.arrayFormat(format, argArray);
141 log(SELF, Level.FINEST, ft.getMessage(), ft.getThrowable());
195 FormattingTuple 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/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/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/swiftshader/third_party/LLVM/lib/Support/Windows/
H A DTimeValue.inc25 uint64_t ft;
26 GetSystemTimeAsFileTime(reinterpret_cast<FILETIME *>(&ft));
29 t.fromWin32Time(ft);
/external/slf4j/slf4j-api/src/test/java/org/slf4j/helpers/
H A DMessageFormatterTest.java274 FormattingTuple ft;
279 ft = MessageFormatter.arrayFormat("Value {} is smaller than {} and {}.", ia);
280 assertEquals("Value 1 is smaller than 2 and 3.", ft.getMessage());
281 assertTrue(Arrays.equals(iaWitness, ft.getArgArray()));
282 assertEquals(t, ft.getThrowable());
284 ft = MessageFormatter.arrayFormat("{}{}{}", ia);
285 assertEquals("123", ft.getMessage());
286 assertTrue(Arrays.equals(iaWitness, ft.getArgArray()));
287 assertEquals(t, ft.getThrowable());
289 ft
[all...]
/external/clang/test/CXX/over/over.match/over.match.funcs/
H A Dp4-0x.cpp12 template<typename T> int &ft(T) &;
13 template<typename T> float &ft(T) &&;
44 int &ir2 = lvalue<X0>().ft(1);
45 float &fr3 = xvalue<X0>().ft(2);
46 float &fr4 = prvalue<X0>().ft(3);
/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/swiftshader/third_party/LLVM/runtime/libprofile/
H A DPathProfiling.c56 ftEntry_t* ft; variable
60 void writeArrayTable(uint32_t fNumber, ftEntry_t* ft, uint32_t* funcCount) { argument
70 for( arrayIterator = 0; arrayIterator < ft->size; arrayIterator++ ) {
71 uint32_t pc = ((uint32_t*)ft->array)[arrayIterator];
164 if( ft[functionNumber-1].array == 0)
165 ft[functionNumber-1].array = calloc(sizeof(pathHashTable_t), 1);
167 hashTable = (pathHashTable_t*)((ftEntry_t*)ft)[functionNumber-1].array;
239 if( ft[i].type == ProfilingArray ) {
240 writeArrayTable(i+1,&ft[i],header + 1);
242 } else if( ft[
[all...]
/external/harfbuzz_ng/test/api/
H A Dtest-c.c45 #include <hb-ft.h>

Completed in 785 milliseconds

12345678