Home
last modified time | relevance | path

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

1234567

/third_party/python/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...]
/third_party/lzma/CPP/Windows/
H A DTimeUtils.h10 inline UInt64 FILETIME_To_UInt64(const FILETIME &ft) in FILETIME_To_UInt64() argument
12 return (((UInt64)ft.dwHighDateTime) << 32) + ft.dwLowDateTime; in FILETIME_To_UInt64()
15 inline void FILETIME_Clear(FILETIME &ft) in FILETIME_Clear() argument
17 ft.dwLowDateTime = 0; in FILETIME_Clear()
18 ft.dwHighDateTime = 0; in FILETIME_Clear()
21 inline bool FILETIME_IsZero(const FILETIME &ft) in FILETIME_IsZero() argument
23 return (ft.dwHighDateTime == 0 && ft.dwLowDateTime == 0); in FILETIME_IsZero()
30 inline void FiTime_To_FILETIME(const CFiTime &ts, FILETIME &ft) in FiTime_To_FILETIME() argument
40 FiTime_Clear(CFiTime &ft) FiTime_Clear() argument
58 FiTime_Clear(CFiTime &ft) FiTime_Clear() argument
113 FILETIME ft; PropVariant_SetFrom_UnixTime() local
118 PropVariant_SetFrom_NtfsTime(NWindows::NCOM::CPropVariant &prop, const FILETIME &ft) PropVariant_SetFrom_NtfsTime() argument
[all...]
H A DTimeUtils.cpp25 bool DosTime_To_FileTime(UInt32 dosTime, FILETIME &ft) throw() in DosTime_To_FileTime() argument
28 return BOOLToBool(::DosDateTimeToFileTime((UInt16)(dosTime >> 16), (UInt16)(dosTime & 0xFFFF), &ft)); in DosTime_To_FileTime()
30 ft.dwLowDateTime = 0; in DosTime_To_FileTime()
31 ft.dwHighDateTime = 0; in DosTime_To_FileTime()
37 ft.dwLowDateTime = (UInt32)res; in DosTime_To_FileTime()
38 ft.dwHighDateTime = (UInt32)(res >> 32); in DosTime_To_FileTime()
46 bool FileTime_To_DosTime(const FILETIME &ft, UInt32 &dosTime) throw() in FileTime_To_DosTime() argument
51 if (!::FileTimeToDosDateTime(&ft, &datePart, &timePart)) in FileTime_To_DosTime()
53 dosTime = (ft.dwHighDateTime >= 0x01C00000) ? kHighDosTime : kLowDosTime; in FileTime_To_DosTime()
65 UInt64 v64 = ft in FileTime_To_DosTime()
150 UnixTime_To_FileTime(UInt32 unixTime, FILETIME &ft) UnixTime_To_FileTime() argument
180 UnixTime64_To_FileTime(Int64 unixTime, FILETIME &ft) UnixTime64_To_FileTime() argument
190 FileTime_To_UnixTime64(const FILETIME &ft) FileTime_To_UnixTime64() argument
196 FileTime_To_UnixTime64_and_Quantums(const FILETIME &ft, UInt32 &quantums) FileTime_To_UnixTime64_and_Quantums() argument
203 FileTime_To_UnixTime(const FILETIME &ft, UInt32 &unixTime) FileTime_To_UnixTime() argument
243 GetCurUtc_FiTime(CFiTime &ft) GetCurUtc_FiTime() argument
271 GetCurUtcFileTime(FILETIME &ft) GetCurUtcFileTime() argument
[all...]
H A DPropVariantConv.cpp15 FILETIME ft; in ConvertUtcFileTimeToString2() local
16 if (!FileTimeToLocalFileTime(&utc, &ft)) in ConvertUtcFileTimeToString2()
20 if (!BOOLToBool(FileTimeToSystemTime(&ft, &st))) in ConvertUtcFileTimeToString2()
67 UInt32 val = (UInt32)((((UInt64)ft.dwHighDateTime << 32) + ft.dwLowDateTime) % 10000000); in ConvertUtcFileTimeToString2()
97 bool ConvertUtcFileTimeToString2(const FILETIME &ft, unsigned ns100, wchar_t *dest, int level) throw() in ConvertUtcFileTimeToString2() argument
100 bool res = ConvertUtcFileTimeToString2(ft, ns100, s, level); in ConvertUtcFileTimeToString2()
111 bool ConvertUtcFileTimeToString(const FILETIME &ft, wchar_t *dest, int level) throw() in ConvertUtcFileTimeToString() argument
114 bool res = ConvertUtcFileTimeToString(ft, s, level); in ConvertUtcFileTimeToString()
H A DPropVariant.h78 void SetAsTimeFrom_FT_Prec(const FILETIME &ft, unsigned prec) in SetAsTimeFrom_FT_Prec() argument
80 operator=(ft); in SetAsTimeFrom_FT_Prec()
86 FILETIME ft; in SetAsTimeFrom_Ft64_Prec() local
87 ft.dwLowDateTime = (DWORD)(UInt32)v; in SetAsTimeFrom_Ft64_Prec()
88 ft.dwHighDateTime = (DWORD)(UInt32)(v >> 32); in SetAsTimeFrom_Ft64_Prec()
89 operator=(ft); in SetAsTimeFrom_Ft64_Prec()
93 void SetAsTimeFrom_FT_Prec_Ns100(const FILETIME &ft, unsigned prec, unsigned ns100) in SetAsTimeFrom_FT_Prec_Ns100() argument
95 operator=(ft); in SetAsTimeFrom_FT_Prec_Ns100()
H A DPropVariantConv.h17 bool ConvertUtcFileTimeToString(const FILETIME &ft, char *s, int level = kTimestampPrintLevel_SEC) throw();
18 bool ConvertUtcFileTimeToString(const FILETIME &ft, wchar_t *s, int level = kTimestampPrintLevel_SEC) throw();
19 bool ConvertUtcFileTimeToString2(const FILETIME &ft, unsigned ns100, char *s, int level = kTimestampPrintLevel_SEC) throw();
20 bool ConvertUtcFileTimeToString2(const FILETIME &ft, unsigned ns100, wchar_t *s, int level = kTimestampPrintLevel_SEC) throw();
/third_party/skia/fuzz/
H A DFuzzPathop.cpp28 SkPathFillType ft; in DEF_FUZZ() local
29 fuzz->nextRange(&ft, 0, (int)SkPathFillType::kInverseEvenOdd); in DEF_FUZZ()
30 path.setFillType(ft); in DEF_FUZZ()
44 SkPathFillType ft; in DEF_FUZZ() local
45 fuzz->nextRange(&ft, 0, (int)SkPathFillType::kInverseEvenOdd); in DEF_FUZZ()
46 path.setFillType(ft); in DEF_FUZZ()
60 SkPathFillType ft; in DEF_FUZZ() local
61 fuzz->nextRange(&ft, 0, SkPathFillType::kInverseEvenOdd); in DEF_FUZZ()
62 path.setFillType(ft); in DEF_FUZZ()
66 fuzz->nextRange(&ft, in DEF_FUZZ()
86 SkPathFillType ft; DEF_FUZZ() local
102 SkPathFillType ft; DEF_FUZZ() local
[all...]
/third_party/python/Lib/idlelib/idle_test/
H A Dtest_format.py3 from idlelib import format as ft namespace
21 self.assertTrue(ft.is_all_white(''))
22 self.assertTrue(ft.is_all_white('\t\n\r\f\v'))
23 self.assertFalse(ft.is_all_white(self.test_comment))
27 Equal(ft.get_indent(self.test_comment), '')
28 Equal(ft.get_indent(self.trailingws_comment), '')
29 Equal(ft.get_indent(self.leadingws_comment), ' ')
30 Equal(ft.get_indent(self.leadingws_nocomment), ' ')
35 Equal(ft.get_comment_header(self.test_comment), '#')
36 Equal(ft
[all...]
/third_party/skia/include/core/
H A DSkPathTypes.h24 static inline bool SkPathFillType_IsEvenOdd(SkPathFillType ft) { in SkPathFillType_IsEvenOdd() argument
25 return (static_cast<int>(ft) & 1) != 0; in SkPathFillType_IsEvenOdd()
28 static inline bool SkPathFillType_IsInverse(SkPathFillType ft) { in SkPathFillType_IsInverse() argument
29 return (static_cast<int>(ft) & 2) != 0; in SkPathFillType_IsInverse()
32 static inline SkPathFillType SkPathFillType_ConvertToNonInverse(SkPathFillType ft) { in SkPathFillType_ConvertToNonInverse() argument
33 return static_cast<SkPathFillType>(static_cast<int>(ft) & 1); in SkPathFillType_ConvertToNonInverse()
/third_party/curl/src/
H A Dtool_filetime.c54 FILETIME ft; in getfiletime() local
55 if(GetFileTime(hfile, NULL, NULL, &ft)) { in getfiletime()
56 curl_off_t converted = (curl_off_t)ft.dwLowDateTime in getfiletime()
57 | ((curl_off_t)ft.dwHighDateTime) << 32; in getfiletime()
119 FILETIME ft; in setfiletime() local
120 ft.dwLowDateTime = (DWORD)(converted & 0xFFFFFFFF); in setfiletime()
121 ft.dwHighDateTime = (DWORD)(converted >> 32); in setfiletime()
122 if(!SetFileTime(hfile, NULL, &ft, &ft)) { in setfiletime()
/third_party/curl/lib/
H A Dcurl_ntlm_core.c459 static void time2filetime(struct ms_filetime *ft, time_t t) in time2filetime() argument
463 ft->dwLowDateTime = (unsigned int) (t & 0xFFFFFFFF); in time2filetime()
464 ft->dwHighDateTime = (unsigned int) (t >> 32); in time2filetime()
469 ft->dwLowDateTime = t & 0xFFFFFFFF; in time2filetime()
470 ft->dwHighDateTime = 0; in time2filetime()
474 if(ft->dwLowDateTime & 0x80000000) in time2filetime()
475 ft->dwHighDateTime = ~0; in time2filetime()
480 r = ft->dwLowDateTime; in time2filetime()
481 ft->dwLowDateTime = (ft in time2filetime()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/astc-encoder/Source/
H A Dastc_block_sizes2.cpp360 int ft = y_weight_frac; in initialize_decimation_table_3d() local
363 int cas = ((fs > ft) << 2) + ((ft > fp) << 1) + ((fs > fp)); in initialize_decimation_table_3d()
374 w1 = fs - ft; in initialize_decimation_table_3d()
375 w2 = ft - fp; in initialize_decimation_table_3d()
381 w0 = 16 - ft; in initialize_decimation_table_3d()
382 w1 = ft - fs; in initialize_decimation_table_3d()
391 w2 = fp - ft; in initialize_decimation_table_3d()
392 w3 = ft; in initialize_decimation_table_3d()
399 w2 = fs - ft; in initialize_decimation_table_3d()
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/rsn_supp/
H A Dwpa_ft.c78 struct wpa_ft_ies ft; in wpa_sm_set_ft_params() local
85 if (wpa_ft_parse_ies(ies, ies_len, &ft, use_sha384) < 0) in wpa_sm_set_ft_params()
88 if (ft.mdie && ft.mdie_len < MOBILITY_DOMAIN_ID_LEN + 1) in wpa_sm_set_ft_params()
91 if (ft.mdie) { in wpa_sm_set_ft_params()
93 ft.mdie, MOBILITY_DOMAIN_ID_LEN); in wpa_sm_set_ft_params()
94 os_memcpy(sm->mobility_domain, ft.mdie, in wpa_sm_set_ft_params()
96 sm->mdie_ft_capab = ft.mdie[MOBILITY_DOMAIN_ID_LEN]; in wpa_sm_set_ft_params()
102 if (ft.r0kh_id) { in wpa_sm_set_ft_params()
104 ft in wpa_sm_set_ft_params()
[all...]
/third_party/skia/third_party/externals/harfbuzz/perf/
H A Dperf-extents.hh4 #include "hb-ft.h"
68 BENCHMARK_CAPTURE (extents, cff - ft - SourceSansPro, FONT_BASE_PATH "SourceSansPro-Regular.otf", false, FREETYPE);
72 BENCHMARK_CAPTURE (extents, cff2 - ft - AdobeVFPrototype, FONT_BASE_PATH "AdobeVFPrototype.otf", false, FREETYPE);
76 BENCHMARK_CAPTURE (extents, cff2/vf - ft - AdobeVFPrototype, FONT_BASE_PATH "AdobeVFPrototype.otf", true, FREETYPE);
80 BENCHMARK_CAPTURE (extents, glyf - ft - SourceSerifVariable, FONT_BASE_PATH "SourceSerifVariable-Roman.ttf", false, FREETYPE);
84 BENCHMARK_CAPTURE (extents, glyf/vf - ft - SourceSerifVariable, FONT_BASE_PATH "SourceSerifVariable-Roman.ttf", true, FREETYPE);
88 BENCHMARK_CAPTURE (extents, glyf - ft - Comfortaa, FONT_BASE_PATH "Comfortaa-Regular-new.ttf", false, FREETYPE);
92 BENCHMARK_CAPTURE (extents, glyf/vf - ft - Comfortaa, FONT_BASE_PATH "Comfortaa-Regular-new.ttf", true, FREETYPE);
96 BENCHMARK_CAPTURE (extents, glyf - ft - Roboto, FONT_BASE_PATH "Roboto-Regular.ttf", false, FREETYPE);
H A Dperf-draw.hh5 #include "hb-ft.h"
148 BENCHMARK_CAPTURE (draw, cff - ft - SourceSansPro, FONT_BASE_PATH "SourceSansPro-Regular.otf", false, FREETYPE);
152 BENCHMARK_CAPTURE (draw, cff2 - ft - AdobeVFPrototype, FONT_BASE_PATH "AdobeVFPrototype.otf", false, FREETYPE);
156 BENCHMARK_CAPTURE (draw, cff2/vf - ft - AdobeVFPrototype, FONT_BASE_PATH "AdobeVFPrototype.otf", true, FREETYPE);
160 BENCHMARK_CAPTURE (draw, glyf - ft - SourceSerifVariable, FONT_BASE_PATH "SourceSerifVariable-Roman.ttf", false, FREETYPE);
164 BENCHMARK_CAPTURE (draw, glyf/vf - ft - SourceSerifVariable, FONT_BASE_PATH "SourceSerifVariable-Roman.ttf", true, FREETYPE);
168 BENCHMARK_CAPTURE (draw, glyf - ft - Comfortaa, FONT_BASE_PATH "Comfortaa-Regular-new.ttf", false, FREETYPE);
172 BENCHMARK_CAPTURE (draw, glyf/vf - ft - Comfortaa, FONT_BASE_PATH "Comfortaa-Regular-new.ttf", true, FREETYPE);
176 BENCHMARK_CAPTURE (draw, glyf - ft - Roboto, FONT_BASE_PATH "Roboto-Regular.ttf", false, FREETYPE);
/third_party/libabigail/tests/data/test-read-ctf/
H A Dtest7.c3 void first_type_constructor(struct first_type *ft) in first_type_constructor() argument
5 ft->member0 = 0; in first_type_constructor()
6 ft->member1 = 0; in first_type_constructor()
7 ft->ctor = first_type_constructor; in first_type_constructor()
/third_party/node/deps/v8/src/base/platform/
H A Dtime.cc335 FILETIME ft; in GetSystemTime() local
336 ::GetSystemTimeAsFileTime(&ft); in GetSystemTime()
337 return Time::FromFiletime(ft); in GetSystemTime()
356 Time Time::FromFiletime(FILETIME ft) { in FromFiletime() argument
357 if (ft.dwLowDateTime == 0 && ft.dwHighDateTime == 0) { in FromFiletime()
360 if (ft.dwLowDateTime == std::numeric_limits<DWORD>::max() && in FromFiletime()
361 ft.dwHighDateTime == std::numeric_limits<DWORD>::max()) { in FromFiletime()
364 int64_t us = (static_cast<uint64_t>(ft.dwLowDateTime) + in FromFiletime()
365 (static_cast<uint64_t>(ft in FromFiletime()
372 FILETIME ft; ToFiletime() local
[all...]
/third_party/ffmpeg/libavcodec/
H A Djpeg2000_parser.c41 enum frame_type ft; // 1 if file, 2 if codestream member
56 m->ft = 0; in reset_context()
139 m->ft = jp2_file; in find_frame_end()
151 m->ft = j2k_cstream; in find_frame_end()
152 } else if (pc->frame_start_found && m->ft == jp2_file && m->skipped_codestream) { in find_frame_end()
157 if (pc->frame_start_found && m->ft == jp2_file) { in find_frame_end()
159 } else if (pc->frame_start_found && m->ft == j2k_cstream) { in find_frame_end()
/third_party/mesa3d/src/c11/impl/
H A Dtime.c52 FILETIME ft; in timespec_get() local
56 GetSystemTimeAsFileTime(&ft); in timespec_get()
57 date.HighPart = ft.dwHighDateTime; in timespec_get()
58 date.LowPart = ft.dwLowDateTime; in timespec_get()
/third_party/libwebsockets/win32port/win32helpers/
H A Dgettimeofday.c9 FILETIME ft; in gettimeofday() local
14 GetSystemTimeAsFileTime(&ft); in gettimeofday()
16 tmpres |= ft.dwHighDateTime; in gettimeofday()
18 tmpres |= ft.dwLowDateTime; in gettimeofday()
/third_party/node/deps/v8/src/diagnostics/mips/
H A Ddisasm-mips.cc640 } else if (format[1] == 't') { // 'ft: ft register. in FormatFPURegister()
658 } else if (format[1] == 't') { // 'ft: ft register. in FormatFPURegister()
983 Format(instr, "min.'t 'fd, 'fs, 'ft"); in DecodeTypeRegisterRsType()
986 Format(instr, "max.'t 'fd, 'fs, 'ft"); in DecodeTypeRegisterRsType()
989 Format(instr, "mina.'t 'fd, 'fs, 'ft"); in DecodeTypeRegisterRsType()
992 Format(instr, "maxa.'t 'fd, 'fs, 'ft"); in DecodeTypeRegisterRsType()
995 Format(instr, "sel.'t 'fd, 'fs, 'ft"); in DecodeTypeRegisterRsType()
998 Format(instr, "seleqz.'t 'fd, 'fs, 'ft"); in DecodeTypeRegisterRsType()
[all...]
/third_party/node/deps/v8/src/codegen/mips/
H A Dassembler-mips.cc1157 FPURegister ft, FPURegister fs, FPURegister fd, in GenInstrRegister()
1159 DCHECK(fd.is_valid() && fs.is_valid() && ft.is_valid()); in GenInstrRegister()
1160 Instr instr = opcode | fmt | (ft.code() << kFtShift) | in GenInstrRegister()
1165 void Assembler::GenInstrRegister(Opcode opcode, FPURegister fr, FPURegister ft, in GenInstrRegister() argument
1168 DCHECK(fd.is_valid() && fr.is_valid() && fs.is_valid() && ft.is_valid()); in GenInstrRegister()
1169 Instr instr = opcode | (fr.code() << kFrShift) | (ft.code() << kFtShift) | in GenInstrRegister()
1221 void Assembler::GenInstrImmediate(Opcode opcode, Register rs, FPURegister ft, in GenInstrImmediate() argument
1224 DCHECK(rs.is_valid() && ft.is_valid() && (is_int16(j) || is_uint16(j))); in GenInstrImmediate()
1225 Instr instr = opcode | (rs.code() << kRsShift) | (ft.code() << kFtShift) | in GenInstrImmediate()
2446 FPURegister ft) { in sel()
1156 GenInstrRegister(Opcode opcode, SecondaryField fmt, FPURegister ft, FPURegister fs, FPURegister fd, SecondaryField func) GenInstrRegister() argument
2445 sel(SecondaryField fmt, FPURegister fd, FPURegister fs, FPURegister ft) sel() argument
2453 sel_s(FPURegister fd, FPURegister fs, FPURegister ft) sel_s() argument
2457 sel_d(FPURegister fd, FPURegister fs, FPURegister ft) sel_d() argument
2461 seleqz(SecondaryField fmt, FPURegister fd, FPURegister fs, FPURegister ft) seleqz() argument
2473 selnez(SecondaryField fmt, FPURegister fd, FPURegister fs, FPURegister ft) selnez() argument
2480 seleqz_d(FPURegister fd, FPURegister fs, FPURegister ft) seleqz_d() argument
2484 seleqz_s(FPURegister fd, FPURegister fs, FPURegister ft) seleqz_s() argument
2488 selnez_d(FPURegister fd, FPURegister fs, FPURegister ft) selnez_d() argument
2492 selnez_s(FPURegister fd, FPURegister fs, FPURegister ft) selnez_s() argument
2508 FPURegister ft = FPURegister::from_code((cc & 0x0007) << 2 | 1); movt_s() local
2514 FPURegister ft = FPURegister::from_code((cc & 0x0007) << 2 | 1); movt_d() local
2520 FPURegister ft = FPURegister::from_code((cc & 0x0007) << 2 | 0); movf_s() local
2526 FPURegister ft = FPURegister::from_code((cc & 0x0007) << 2 | 0); movf_d() local
2532 add_s(FPURegister fd, FPURegister fs, FPURegister ft) add_s() argument
2536 add_d(FPURegister fd, FPURegister fs, FPURegister ft) add_d() argument
2540 sub_s(FPURegister fd, FPURegister fs, FPURegister ft) sub_s() argument
2544 sub_d(FPURegister fd, FPURegister fs, FPURegister ft) sub_d() argument
2548 mul_s(FPURegister fd, FPURegister fs, FPURegister ft) mul_s() argument
2552 mul_d(FPURegister fd, FPURegister fs, FPURegister ft) mul_d() argument
2556 madd_s(FPURegister fd, FPURegister fr, FPURegister fs, FPURegister ft) madd_s() argument
2562 madd_d(FPURegister fd, FPURegister fr, FPURegister fs, FPURegister ft) madd_d() argument
2568 msub_s(FPURegister fd, FPURegister fr, FPURegister fs, FPURegister ft) msub_s() argument
2574 msub_d(FPURegister fd, FPURegister fr, FPURegister fs, FPURegister ft) msub_d() argument
2580 maddf_s(FPURegister fd, FPURegister fs, FPURegister ft) maddf_s() argument
2585 maddf_d(FPURegister fd, FPURegister fs, FPURegister ft) maddf_d() argument
2590 msubf_s(FPURegister fd, FPURegister fs, FPURegister ft) msubf_s() argument
2595 msubf_d(FPURegister fd, FPURegister fs, FPURegister ft) msubf_d() argument
2600 div_s(FPURegister fd, FPURegister fs, FPURegister ft) div_s() argument
2604 div_d(FPURegister fd, FPURegister fs, FPURegister ft) div_d() argument
2782 min(SecondaryField fmt, FPURegister fd, FPURegister fs, FPURegister ft) min() argument
2789 mina(SecondaryField fmt, FPURegister fd, FPURegister fs, FPURegister ft) mina() argument
2796 max(SecondaryField fmt, FPURegister fd, FPURegister fs, FPURegister ft) max() argument
2803 maxa(SecondaryField fmt, FPURegister fd, FPURegister fs, FPURegister ft) maxa() argument
2810 min_s(FPURegister fd, FPURegister fs, FPURegister ft) min_s() argument
2814 min_d(FPURegister fd, FPURegister fs, FPURegister ft) min_d() argument
2818 max_s(FPURegister fd, FPURegister fs, FPURegister ft) max_s() argument
2822 max_d(FPURegister fd, FPURegister fs, FPURegister ft) max_d() argument
2826 mina_s(FPURegister fd, FPURegister fs, FPURegister ft) mina_s() argument
2830 mina_d(FPURegister fd, FPURegister fs, FPURegister ft) mina_d() argument
2834 maxa_s(FPURegister fd, FPURegister fs, FPURegister ft) maxa_s() argument
2838 maxa_d(FPURegister fd, FPURegister fs, FPURegister ft) maxa_d() argument
2871 cmp(FPUCondition cond, SecondaryField fmt, FPURegister fd, FPURegister fs, FPURegister ft) cmp() argument
2880 cmp_s(FPUCondition cond, FPURegister fd, FPURegister fs, FPURegister ft) cmp_s() argument
2885 cmp_d(FPUCondition cond, FPURegister fd, FPURegister fs, FPURegister ft) cmp_d() argument
2890 bc1eqz(int16_t offset, FPURegister ft) bc1eqz() argument
2898 bc1nez(int16_t offset, FPURegister ft) bc1nez() argument
2907 c(FPUCondition cond, SecondaryField fmt, FPURegister fs, FPURegister ft, uint16_t cc) c() argument
2917 c_s(FPUCondition cond, FPURegister fs, FPURegister ft, uint16_t cc) c_s() argument
2922 c_d(FPUCondition cond, FPURegister fs, FPURegister ft, uint16_t cc) c_d() argument
[all...]
/third_party/ffmpeg/libavutil/
H A Dtime.c46 FILETIME ft; in av_gettime()
48 GetSystemTimeAsFileTime(&ft); in av_gettime()
49 t = (int64_t)ft.dwHighDateTime << 32 | ft.dwLowDateTime; in av_gettime()
/third_party/libwebsockets/minimal-examples/api-tests/api-test-fts/
H A Dmain.c34 int fd, fi, ft, createindex = 0, flags = LWSFTS_F_QUERY_AUTOCOMPLETE; in main() local
91 ft = open(index_filepath, O_CREAT | O_WRONLY | O_TRUNC, 0600); in main()
92 if (ft < 0) { in main()
99 t = lws_fts_create(ft); in main()
151 close(ft); in main()
225 close(ft); in main()
/third_party/node/deps/v8/src/diagnostics/mips64/
H A Ddisasm-mips64.cc681 } else if (format[1] == 't') { // 'ft: ft register. in FormatFPURegister()
699 } else if (format[1] == 't') { // 'ft: ft register. in FormatFPURegister()
1055 Format(instr, "sel.'t 'fd, 'fs, 'ft"); in DecodeTypeRegisterRsType()
1058 Format(instr, "seleqz.'t 'fd, 'fs, 'ft"); in DecodeTypeRegisterRsType()
1061 Format(instr, "selnez.'t 'fd, 'fs, 'ft"); in DecodeTypeRegisterRsType()
1077 Format(instr, "min.'t 'fd, 'fs, 'ft"); in DecodeTypeRegisterRsType()
1080 Format(instr, "max.'t 'fd, 'fs, 'ft"); in DecodeTypeRegisterRsType()
1083 Format(instr, "mina.'t 'fd, 'fs, 'ft"); in DecodeTypeRegisterRsType()
[all...]

Completed in 22 milliseconds

1234567