Searched refs:TS (Results 1 - 25 of 83) sorted by relevance

1234

/freebsd-11-stable/contrib/ntp/sntp/scripts/
H A Dcvo.sh13 TS="$*"
132 case "$TS" in
138 TS=`echo $TS | sed -e s/@cvo@/$CVO/g`
140 TS=`echo $TS | sed -e s/@cpu@/$CVO_CPU/g`
142 TS=`echo $TS | sed -e s/@kosver@/$CVO_KOSVER/g`
144 TS=`echo $TS | se
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_tsc.h68 timespec TS;
69 int result = clock_gettime(CLOCK_REALTIME, &TS);
72 TS.tv_sec = 0;
73 TS.tv_nsec = 0;
76 return TS.tv_sec * NanosecondsPerSecond + TS.tv_nsec;
H A Dxray_basic_logging.cpp308 timespec TS;
309 int result = clock_gettime(CLOCK_REALTIME, &TS);
312 TS = {0, 0};
315 return TS.tv_sec * NanosecondsPerSecond + TS.tv_nsec;
328 timespec TS;
329 int result = clock_gettime(CLOCK_REALTIME, &TS);
332 TS = {0, 0};
335 return TS.tv_sec * NanosecondsPerSecond + TS
[all...]
H A Dxray_fdr_controller.h77 struct timespec TS { struct
80 WallClockReader(CLOCK_MONOTONIC, &TS);
96 static_cast<int64_t>(TS.tv_sec),
97 static_cast<int32_t>(TS.tv_nsec / 1000)),
H A Dxray_fdr_logging.cpp432 timespec TS; variable
433 int result = clock_gettime(CLOCK_REALTIME, &TS);
436 TS = {0, 0};
439 Result.TSC = TS.tv_sec * __xray::NanosecondsPerSecond + TS.tv_nsec;
/freebsd-11-stable/contrib/expat/tests/
H A Dxmltest.sh27 TS="$PWD/tests/"
88 cd "$TS/xmlconf"
98 cd "$TS/xmlconf/$xmldir"
108 cd "$TS/xmlconf/oasis"
120 cd "$TS/xmlconf"
128 cd "$TS/xmlconf/$xmldir"
135 cd "$TS/xmlconf/oasis"
/freebsd-11-stable/tools/tools/tinybsd/
H A Dtinybsd24 TS="=====>"
200 echo "${TS} Error: Could not find config (${CONF})"
244 echo "${TS} Alternative image name not set; defaulting to 'tinybsd.bin'"
261 echo "${TS} Removing "${WORKDIR}
263 echo "${TS} Removing Build Kernel Directory"
265 echo "${TS} done."
277 echo "${TS} Creating directory hierarchy... "
290 echo "${TS} Copying "/${file}" to "${WORKDIR}/${file}
335 echo "${TS} Building customized tiny beastie kernel... "
365 echo "${TS} Copyin
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsAsmPrinter.cpp189 MipsTargetStreamer &TS = getTargetStreamer(); local
191 TS.forbidModuleDirective();
368 MipsTargetStreamer &TS = getTargetStreamer(); local
370 TS.emitMask(CPUBitmask, CPUTopSavedRegOff);
373 TS.emitFMask(FPUBitmask, FPUTopSavedRegOff);
402 MipsTargetStreamer &TS = getTargetStreamer(); local
410 TS.emitDirectiveSetMicroMips();
411 TS.setUsesMicroMips();
412 TS.updateABIInfo(*Subtarget);
414 TS
428 MipsTargetStreamer &TS = getTargetStreamer(); local
449 MipsTargetStreamer &TS = getTargetStreamer(); local
470 MipsTargetStreamer &TS = getTargetStreamer(); local
774 MipsTargetStreamer &TS = getTargetStreamer(); local
837 MipsTargetStreamer &TS = getTargetStreamer(); local
1058 MipsTargetStreamer &TS = getTargetStreamer(); local
[all...]
/freebsd-11-stable/contrib/openbsm/bin/auditd/
H A Dauditd.c152 close_lastfile(char *TS) argument
168 memcpy(ptr, TS, POSTFIX_LEN);
201 char TS[TIMESTAMP_LEN + 1]; local
204 if (getTSstr(tt, TS, sizeof(TS)) != 0)
225 if (name != NULL && strncmp(name, TS, TIMESTAMP_LEN) == 0) {
229 err = auditd_swap_trail(TS, &newfile, audit_review_gid,
242 close_lastfile(TS);
373 char TS[TIMESTAMP_LEN + 1]; local
396 if (getTSstr(tt, TS, sizeo
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/include/fuzzer/
H A DFuzzedDataProvider.h282 template <typename TS, typename TU> TS ConvertUnsignedToSigned(TU value) {
283 static_assert(sizeof(TS) == sizeof(TU), "Incompatible data types.");
288 if (std::numeric_limits<TS>::is_modulo)
289 return static_cast<TS>(value);
293 if (value <= std::numeric_limits<TS>::max()) {
294 return static_cast<TS>(value);
296 constexpr auto TS_min = std::numeric_limits<TS>::min();
/freebsd-11-stable/contrib/openbsm/bsm/
H A Dauditd_lib.h99 int auditd_swap_trail(char *TS, char **newfile, gid_t gid,
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dlinux.cpp119 timespec TS; local
120 clock_gettime(CLOCK_MONOTONIC, &TS);
121 return static_cast<u64>(TS.tv_sec) * (1000ULL * 1000 * 1000) +
122 static_cast<u64>(TS.tv_nsec);
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DLLVMConventionsChecker.cpp82 const TemplateSpecializationType *TS = T->getAs<TemplateSpecializationType>(); local
83 if (!TS)
86 TemplateName TM = TS->getTemplateName();
96 const TemplateSpecializationType *TS = T->getAs<TemplateSpecializationType>(); local
97 if (!TS)
100 TemplateName TM = TS->getTemplateName();
/freebsd-11-stable/contrib/llvm-project/libcxx/src/filesystem/
H A Dfilesystem_common.h393 bool posix_utimes(const path& p, std::array<TimeSpec, 2> const& TS, argument
401 struct ::timeval ConvertedTS[2] = {{TS[0].tv_sec, Convert(TS[0].tv_nsec)},
402 {TS[1].tv_sec, Convert(TS[1].tv_nsec)}};
411 bool posix_utimensat(const path& p, std::array<TimeSpec, 2> const& TS, argument
413 if (::utimensat(AT_FDCWD, p.c_str(), TS.data(), 0) == -1) {
421 bool set_file_times(const path& p, std::array<TimeSpec, 2> const& TS, argument
424 return posix_utimes(p, TS, ec);
426 return posix_utimensat(p, TS, e
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/
H A DClangOpcodesEmitter.cpp116 Enumerate(R, N, [this, R, &OS, &N](ArrayRef<Record *> TS, const Twine &ID) {
132 PrintTypes(OS, TS);
206 Enumerate(R, N, [&OS, &Args](ArrayRef<Record *> TS, const Twine &ID) {
267 llvm::SmallVector<Record *, 2> TS; local
268 Rec = [this, &Rec, &OS, Types, &Args, R, &TS, N](size_t I, const Twine &ID) {
277 PrintTypes(OS, TS);
297 TS.push_back(Case);
299 TS.pop_back();
321 Enumerate(R, N, [this, R, &N, &OS](ArrayRef<Record *> TS, const Twine &ID) {
332 PrintTypes(OS, TS);
[all...]
/freebsd-11-stable/sys/cddl/dev/dtrace/x86/
H A Ddis_tables.c304 #define TS(name, amode) {TERM, amode, name, 1, 0, 0, 0, 0, 0} macro
324 #define TS(name, amode) {TERM, amode, name, 1, 0, 0, 0, 0} macro
344 #define TS(name, amode) {TERM, amode, 0, 0, 0, 0, 0} macro
364 #define TS(name, amode) {TERM, amode, 0, 0, 0, 0} macro
557 /* [4] */ TS("bt",MIb), TS("bts",MIb), TS("btr",MIb), TS("btc",MIb),
1294 /* [B8] */ TS("popcnt",MRw), INVALID, INVALID, INVALID,
1295 /* [BC] */ TNSZ("tzcnt",MRw,5), TS("lzcn
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dxray-stacks.cpp363 auto &TS = ThreadStackMap[R.TId]; local
375 if (TS.empty()) {
377 TS.emplace_back(Root ? Root : createTrieNode(R.TId, R.FuncId, nullptr),
382 auto &Top = TS.back();
392 TS.emplace_back(N, R.TSC);
396 TS.emplace_back(*I, R.TSC);
409 if (TS.empty()) {
416 reverse(TS), [&](const std::pair<StackTrieNode *, uint64_t> &E) {
420 if (FunctionEntryMatch == TS.rend()) {
428 for (auto &E : make_range(I, TS
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DARMException.cpp34 MCTargetStreamer &TS = *Asm->OutStreamer->getTargetStreamer(); local
35 return static_cast<ARMTargetStreamer &>(TS);
/freebsd-11-stable/contrib/openbsm/libauditd/
H A Dauditd_lib.c882 auditd_swap_trail(char *TS, char **newfile, gid_t gid, argument
890 if (strlen(TS) != TIMESTAMP_LEN ||
891 snprintf(timestr, sizeof(timestr), "%s.%s", TS,
1112 char TS[TIMESTAMP_LEN + 1]; local
1136 if (getTSstr(tt, TS, sizeof(TS)) != 0)
1138 err = auditd_swap_trail(TS, &newfile, getgid(), NULL);
1192 char TS[TIMESTAMP_LEN + 1]; local
1225 if (getTSstr(tt, TS, sizeof(TS)) !
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/include/xray/
H A Dxray_records.h59 struct timespec TS; member in union:__xray::__anon1103
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64AsmPrinter.cpp997 AArch64TargetStreamer *TS = local
1219 TS->EmitARM64WinCFIAllocStack(MI->getOperand(0).getImm());
1223 TS->EmitARM64WinCFISaveFPLR(MI->getOperand(0).getImm());
1229 TS->EmitARM64WinCFISaveFPLRX(-MI->getOperand(0).getImm());
1233 TS->EmitARM64WinCFISaveReg(MI->getOperand(0).getImm(),
1240 TS->EmitARM64WinCFISaveRegX(MI->getOperand(0).getImm(),
1247 TS->EmitARM64WinCFISaveRegP(MI->getOperand(0).getImm(),
1256 TS->EmitARM64WinCFISaveRegPX(MI->getOperand(0).getImm(),
1261 TS->EmitARM64WinCFISaveFReg(MI->getOperand(0).getImm(),
1268 TS
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DJumpDiagnostics.cpp386 CXXTryStmt *TS = cast<CXXTryStmt>(S); local
392 TS->getSourceRange().getBegin()));
393 if (Stmt *TryBlock = TS->getTryBlock())
398 for (unsigned I = 0, E = TS->getNumHandlers(); I != E; ++I) {
399 CXXCatchStmt *CS = TS->getHandler(I);
411 SEHTryStmt *TS = cast<SEHTryStmt>(S); local
417 TS->getSourceRange().getBegin()));
418 if (Stmt *TryBlock = TS->getTryBlock())
423 if (SEHExceptStmt *Except = TS->getExceptHandler()) {
430 } else if (SEHFinallyStmt *Finally = TS
[all...]
/freebsd-11-stable/contrib/groff/src/roff/grog/
H A Dgrog.pl37 if (/^\.TS$sp/) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLTypes.cpp85 virtual CVType toCodeViewRecord(AppendingTypeTableBuilder &TS) const = 0;
99 CVType toCodeViewRecord(AppendingTypeTableBuilder &TS) const override {
100 TS.writeLeafType(Record);
101 return CVType(TS.records().back());
111 CVType toCodeViewRecord(AppendingTypeTableBuilder &TS) const override;
492 AppendingTypeTableBuilder &TS) const {
498 TS.insertRecord(CRB);
499 return CVType(TS.records().back());
799 AppendingTypeTableBuilder TS(Alloc);
802 CVType T = Leaf.Leaf->toCodeViewRecord(TS);
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCStreamer.cpp413 MCTargetStreamer *TS = getTargetStreamer(); local
414 if (TS)
415 TS->emitLabel(Symbol);
963 MCTargetStreamer *TS = getTargetStreamer(); local
964 if (TS)
965 TS->finish();
974 MCTargetStreamer *TS = getTargetStreamer(); local
975 if (TS)
976 TS->emitAssignment(Symbol, Value);

Completed in 230 milliseconds

1234