Home
last modified time | relevance | path

Searched refs:ft (Results 1 – 25 of 165) sorted by relevance

1234567

/external/valgrind/main/none/tests/mips32/
Dvfp.stdout.exp-BE2 ldc1 $f0, 0($t1) :: ft 0x666666664095a266
3 ldc1 $f0, 8($t1) :: ft 0x0bff00000
4 ldc1 $f0, 16($t1) :: ft 0x03ff00000
5 ldc1 $f0, 24($t1) :: ft 0x262d2d2a252a2e2b
6 ldc1 $f0, 32($t1) :: ft 0xffffffffffffffff
7 ldc1 $f0, 40($t1) :: ft 0xb487e5c941d26580
8 ldc1 $f0, 48($t1) :: ft 0xb750e38842026580
9 ldc1 $f0, 56($t1) :: ft 0xe2308c3a3e45798e
10 ldc1 $f0, 64($t1) :: ft 0x3746f65f3fbf9add
11 ldc1 $f0, 0($t1) :: ft 0x666666664095a266
[all …]
Dvfp.stdout.exp2 ldc1 $f0, 0($t1) :: ft 0x4095a26666666666
3 ldc1 $f0, 8($t1) :: ft 0xbff000000
4 ldc1 $f0, 16($t1) :: ft 0x3ff000000
5 ldc1 $f0, 24($t1) :: ft 0x252a2e2b262d2d2a
6 ldc1 $f0, 32($t1) :: ft 0xffffffffffffffff
7 ldc1 $f0, 40($t1) :: ft 0x41d26580b487e5c9
8 ldc1 $f0, 48($t1) :: ft 0x42026580b750e388
9 ldc1 $f0, 56($t1) :: ft 0x3e45798ee2308c3a
10 ldc1 $f0, 64($t1) :: ft 0x3fbf9add3746f65f
11 ldc1 $f0, 0($t1) :: ft 0x4095a26666666666
[all …]
Dvfp.stdout.exp-mips322 ldc1 $f0, 0($t1) :: ft 0x4095a26666666666
3 ldc1 $f0, 8($t1) :: ft 0xbff000000
4 ldc1 $f0, 16($t1) :: ft 0x3ff000000
5 ldc1 $f0, 24($t1) :: ft 0x252a2e2b262d2d2a
6 ldc1 $f0, 32($t1) :: ft 0xffffffffffffffff
7 ldc1 $f0, 40($t1) :: ft 0x41d26580b487e5c9
8 ldc1 $f0, 48($t1) :: ft 0x42026580b750e388
9 ldc1 $f0, 56($t1) :: ft 0x3e45798ee2308c3a
10 ldc1 $f0, 64($t1) :: ft 0x3fbf9add3746f65f
11 ldc1 $f0, 0($t1) :: ft 0x4095a26666666666
[all …]
/external/lzma/CPP/Windows/
DTime.cpp19 bool DosTimeToFileTime(UInt32 dosTime, FILETIME &ft) in DosTimeToFileTime() argument
22 …turn BOOLToBool(::DosDateTimeToFileTime((UInt16)(dosTime >> 16), (UInt16)(dosTime & 0xFFFF), &ft)); in DosTimeToFileTime()
24 ft.dwLowDateTime = 0; in DosTimeToFileTime()
25 ft.dwHighDateTime = 0; in DosTimeToFileTime()
31 ft.dwLowDateTime = (UInt32)res; in DosTimeToFileTime()
32 ft.dwHighDateTime = (UInt32)(res >> 32); in DosTimeToFileTime()
44 bool FileTimeToDosTime(const FILETIME &ft, UInt32 &dosTime) in FileTimeToDosTime() argument
49 if (!::FileTimeToDosDateTime(&ft, &datePart, &timePart)) in FileTimeToDosTime()
51 dosTime = (ft.dwHighDateTime >= 0x01C00000) ? kHighDosTime : kLowDosTime; in FileTimeToDosTime()
59 UInt64 v64 = ft.dwLowDateTime | ((UInt64)ft.dwHighDateTime << 32); in FileTimeToDosTime()
[all …]
DPropVariantConversions.cpp48 bool ConvertFileTimeToString(const FILETIME &ft, char *s, bool includeTime, bool includeSeconds) in ConvertFileTimeToString() argument
52 if (!BOOLToBool(FileTimeToSystemTime(&ft, &st))) in ConvertFileTimeToString()
67 UString ConvertFileTimeToString(const FILETIME &ft, bool includeTime, bool includeSeconds) in ConvertFileTimeToString() argument
70 ConvertFileTimeToString(ft, s, includeTime, includeSeconds); in ConvertFileTimeToString()
/external/chromium_org/third_party/sqlite/src/test/
Dfts3an.test193 execsql { CREATE VIRTUAL TABLE ft USING fts3(x) }
195 execsql { INSERT INTO ft VALUES(NULL) }
196 execsql { INSERT INTO ft SELECT * FROM ft } ;# 2
197 execsql { INSERT INTO ft SELECT * FROM ft } ;# 4
198 execsql { INSERT INTO ft SELECT * FROM ft } ;# 8
199 execsql { INSERT INTO ft SELECT * FROM ft } ;# 16
200 execsql { INSERT INTO ft SELECT * FROM ft } ;# 32
201 execsql { INSERT INTO ft SELECT * FROM ft } ;# 64
202 execsql { INSERT INTO ft SELECT * FROM ft } ;# 128
203 execsql { INSERT INTO ft SELECT * FROM ft } ;# 256
[all …]
Dfts3snippet.test42 SELECT offsets(ft) FROM ft WHERE ft MATCH $expr
148 CREATE VIRTUAL TABLE ft USING fts3;
149 INSERT INTO ft VALUES('xxx xxx xxx xxx');
171 DROP TABLE IF EXISTS ft;
172 CREATE VIRTUAL TABLE ft USING fts3(a, b);
173 INSERT INTO ft VALUES($v1, $numbers);
174 INSERT INTO ft VALUES($v1, NULL);
188 SELECT offsets(ft) FROM ft WHERE ft MATCH 'onehundred'
198 SELECT snippet(ft,'{','}','...',$iCol,$nTok) FROM ft WHERE ft MATCH $expr
203 DROP TABLE IF EXISTS ft;
[all …]
Dfts3malloc.test85 execsql { CREATE VIRTUAL TABLE ft USING fts3(a, b) }
94 execsql { INSERT INTO ft VALUES($a, $b) }
100 2 "SELECT * FROM ft WHERE docid = 1" {one neung}
101 3 "SELECT * FROM ft WHERE docid = 2" {two song}
102 4 "SELECT * FROM ft WHERE docid = 3" {{one two} {neung song}}
104 5 "SELECT a FROM ft" {
118 6 "SELECT a FROM ft WHERE a MATCH 'one'" {
126 7 "SELECT a FROM ft WHERE a MATCH 'o*'" {
134 8 "SELECT a FROM ft WHERE a MATCH 'o* t*'" {
141 9 "SELECT a FROM ft WHERE a MATCH '\"o* t*\"'" {
[all …]
/external/chromium/base/
Dtime_win.cc57 int64 FileTimeToMicroseconds(const FILETIME& ft) { in FileTimeToMicroseconds() argument
61 return bit_cast<int64, FILETIME>(ft) / 10; in FileTimeToMicroseconds()
64 void MicrosecondsToFileTime(int64 us, FILETIME* ft) { in MicrosecondsToFileTime() argument
70 *ft = bit_cast<FILETIME, int64>(us * 10); in MicrosecondsToFileTime()
74 FILETIME ft; in CurrentWallclockMicroseconds() local
75 ::GetSystemTimeAsFileTime(&ft); in CurrentWallclockMicroseconds()
76 return FileTimeToMicroseconds(ft); in CurrentWallclockMicroseconds()
142 Time Time::FromFileTime(FILETIME ft) { in FromFileTime() argument
143 return Time(FileTimeToMicroseconds(ft)); in FromFileTime()
195 FILETIME ft; in FromExploded() local
[all …]
/external/llvm/runtime/libprofile/
DPathProfiling.c51 ftEntry_t* ft; variable
55 void writeArrayTable(uint32_t fNumber, ftEntry_t* ft, uint32_t* funcCount) { in writeArrayTable() argument
65 for( arrayIterator = 0; arrayIterator < ft->size; arrayIterator++ ) { in writeArrayTable()
66 uint32_t pc = ((uint32_t*)ft->array)[arrayIterator]; in writeArrayTable()
159 if( ft[functionNumber-1].array == 0) in getPathCounter()
160 ft[functionNumber-1].array = calloc(sizeof(pathHashTable_t), 1); in getPathCounter()
162 hashTable = (pathHashTable_t*)((ftEntry_t*)ft)[functionNumber-1].array; in getPathCounter()
234 if( ft[i].type == ProfilingArray ) { in pathProfAtExitHandler()
235 writeArrayTable(i+1,&ft[i],header + 1); in pathProfAtExitHandler()
237 } else if( ft[i].type == ProfilingHash ) { in pathProfAtExitHandler()
[all …]
/external/chromium_org/base/time/
Dtime_win.cc57 int64 FileTimeToMicroseconds(const FILETIME& ft) { in FileTimeToMicroseconds() argument
61 return bit_cast<int64, FILETIME>(ft) / 10; in FileTimeToMicroseconds()
64 void MicrosecondsToFileTime(int64 us, FILETIME* ft) { in MicrosecondsToFileTime() argument
70 *ft = bit_cast<FILETIME, int64>(us * 10); in MicrosecondsToFileTime()
74 FILETIME ft; in CurrentWallclockMicroseconds() local
75 ::GetSystemTimeAsFileTime(&ft); in CurrentWallclockMicroseconds()
76 return FileTimeToMicroseconds(ft); in CurrentWallclockMicroseconds()
143 Time Time::FromFileTime(FILETIME ft) { in FromFileTime() argument
144 if (bit_cast<int64, FILETIME>(ft) == 0) in FromFileTime()
146 if (ft.dwHighDateTime == std::numeric_limits<DWORD>::max() && in FromFileTime()
[all …]
/external/chromium_org/v8/src/platform/
Dtime.cc208 FILETIME ft; in GetSystemTime() local
209 ::GetSystemTimeAsFileTime(&ft); in GetSystemTime()
210 return Time::FromFiletime(ft); in GetSystemTime()
238 Time Time::FromFiletime(FILETIME ft) { in FromFiletime() argument
239 if (ft.dwLowDateTime == 0 && ft.dwHighDateTime == 0) { in FromFiletime()
242 if (ft.dwLowDateTime == std::numeric_limits<DWORD>::max() && in FromFiletime()
243 ft.dwHighDateTime == std::numeric_limits<DWORD>::max()) { in FromFiletime()
246 int64_t us = (static_cast<uint64_t>(ft.dwLowDateTime) + in FromFiletime()
247 (static_cast<uint64_t>(ft.dwHighDateTime) << 32)) / 10; in FromFiletime()
254 FILETIME ft; in ToFiletime() local
[all …]
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
Dptw32_timespec.c51 ptw32_timespec_to_filetime (const struct timespec *ts, FILETIME * ft) in ptw32_timespec_to_filetime() argument
61 *(int64_t *) ft = ts->tv_sec * 10000000 in ptw32_timespec_to_filetime()
66 ptw32_filetime_to_timespec (const FILETIME * ft, struct timespec *ts) in ptw32_filetime_to_timespec() argument
77 (int) ((*(int64_t *) ft - PTW32_TIMESPEC_TO_FILETIME_OFFSET) / 10000000); in ptw32_filetime_to_timespec()
79 (int) ((*(int64_t *) ft - PTW32_TIMESPEC_TO_FILETIME_OFFSET - in ptw32_filetime_to_timespec()
/external/chromium_org/third_party/opus/src/celt/tests/
Dtest_unit_entropy.c58 int ft; in main() local
83 for(ft=2;ft<1024;ft++){ in main()
84 for(i=0;i<ft;i++){ in main()
85 entropy+=log(ft)*M_LOG2E; in main()
86 ec_enc_uint(&enc,i,ft); in main()
110 for(ft=2;ft<1024;ft++){ in main()
111 for(i=0;i<ft;i++){ in main()
112 sym=ec_dec_uint(&dec,ft); in main()
114 fprintf(stderr,"Decoded %i instead of %i with ft of %i.\n",sym,i,ft); in main()
174 ft=rand()/((RAND_MAX>>(rand()%11U))+1U)+10; in main()
[all …]
/external/wpa_supplicant_8/src/rsn_supp/
Dwpa_ft.c65 struct wpa_ft_ies ft; in wpa_sm_set_ft_params() local
70 if (wpa_ft_parse_ies(ies, ies_len, &ft) < 0) in wpa_sm_set_ft_params()
73 if (ft.mdie && ft.mdie_len < MOBILITY_DOMAIN_ID_LEN + 1) in wpa_sm_set_ft_params()
76 if (ft.mdie) { in wpa_sm_set_ft_params()
78 ft.mdie, MOBILITY_DOMAIN_ID_LEN); in wpa_sm_set_ft_params()
79 os_memcpy(sm->mobility_domain, ft.mdie, in wpa_sm_set_ft_params()
81 sm->mdie_ft_capab = ft.mdie[MOBILITY_DOMAIN_ID_LEN]; in wpa_sm_set_ft_params()
87 if (ft.r0kh_id) { in wpa_sm_set_ft_params()
89 ft.r0kh_id, ft.r0kh_id_len); in wpa_sm_set_ft_params()
90 os_memcpy(sm->r0kh_id, ft.r0kh_id, ft.r0kh_id_len); in wpa_sm_set_ft_params()
[all …]
/external/clang/test/CXX/over/over.match/over.match.funcs/
Dp4-0x.cpp12 template<typename T> int &ft(T) &;
13 template<typename T> float &ft(T) &&;
44 int &ir2 = lvalue<X0>().ft(1); in test_ref_qualifier_binding()
45 float &fr3 = xvalue<X0>().ft(2); in test_ref_qualifier_binding()
46 float &fr4 = prvalue<X0>().ft(3); in test_ref_qualifier_binding()
/external/skia/src/ports/
DSkTime_win.cpp31 FILETIME ft; in GetMSecs() local
33 GetSystemTimeAsFileTime(&ft); in GetMSecs()
34 li.LowPart = ft.dwLowDateTime; in GetMSecs()
35 li.HighPart = ft.dwHighDateTime; in GetMSecs()
/external/chromium_org/third_party/skia/src/ports/
DSkTime_win.cpp31 FILETIME ft; in GetMSecs() local
33 GetSystemTimeAsFileTime(&ft); in GetMSecs()
34 li.LowPart = ft.dwLowDateTime; in GetMSecs()
35 li.HighPart = ft.dwHighDateTime; in GetMSecs()
/external/chromium_org/third_party/libjingle/source/talk/base/
Dwin32_unittest.cc48 FILETIME ft; in TEST_F() local
49 ft.dwHighDateTime = 0xBAADF00D; in TEST_F()
50 ft.dwLowDateTime = 0xFEED3456; in TEST_F()
53 EXPECT_EQ(expected, ToUInt64(ft)); in TEST_F()
Dwin32.h98 void FileTimeToUnixTime(const FILETIME& ft, time_t* ut);
101 void UnixTimeToFileTime(const time_t& ut, FILETIME * ft);
107 inline uint64 ToUInt64(const FILETIME& ft) { in ToUInt64() argument
108 ULARGE_INTEGER r = {ft.dwLowDateTime, ft.dwHighDateTime}; in ToUInt64()
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
Dp1.cpp71 template <typename T> constexpr T ft(T t) { return t; } in ft() function
80 template <> notlit ft(notlit nl) { return nl; } in ft() function
81 template <> char ft(char c) { return c; } // expected-note {{previous}} in ft() function
82 template <> constexpr char ft(char nl); // expected-error {{constexpr declaration of 'ft<char>' fol…
91 constexpr int i3 = ft(1);
96 (void)ft(nl2); in test()
/external/chromium/third_party/libjingle/source/talk/base/
Dwin32.h82 void FileTimeToUnixTime(const FILETIME& ft, time_t* ut);
85 void UnixTimeToFileTime(const time_t& ut, FILETIME * ft);
91 inline uint64 ToUInt64(const FILETIME& ft) { in ToUInt64() argument
92 ULARGE_INTEGER r = {ft.dwLowDateTime, ft.dwHighDateTime}; in ToUInt64()
Dwin32.cc47 void FileTimeToUnixTime(const FILETIME& ft, time_t* ut) { in FileTimeToUnixTime() argument
63 memcpy(&current_ul, &ft, sizeof(FILETIME)); in FileTimeToUnixTime()
71 void UnixTimeToFileTime(const time_t& ut, FILETIME* ft) { in UnixTimeToFileTime() argument
72 ASSERT(NULL != ft); in UnixTimeToFileTime()
93 memcpy(ft, &current_ul, sizeof(FILETIME)); in UnixTimeToFileTime()
/external/chromium_org/tools/android/adb_reboot/
Dadb_reboot.c14 struct stat ft; in main() local
34 stat("/sdcard/host_heartbeat", &ft); in main()
36 if (ct - ft.st_mtime > 120) { in main()
/external/wpa_supplicant_8/src/utils/
Dos_win32.c28 FILETIME ft; in os_get_time() local
36 SystemTimeToFileTime(&st, &ft); in os_get_time()
38 GetSystemTimeAsFileTime(&ft); in os_get_time()
40 li.LowPart = ft.dwLowDateTime; in os_get_time()
41 li.HighPart = ft.dwHighDateTime; in os_get_time()

1234567