Searched refs:tsi (Results 1 - 4 of 4) sorted by relevance

/freebsd-13-stable/usr.bin/script/
H A Dscript.c461 struct timespec tsi, tso; local
499 tsi = tso;
516 tsi.tv_sec = tso.tv_sec - tsi.tv_sec;
517 tsi.tv_nsec = tso.tv_nsec - tsi.tv_nsec;
518 if (tsi.tv_nsec < 0) {
519 tsi.tv_sec -= 1;
520 tsi.tv_nsec += 1000000000;
523 (void)nanosleep(&tsi, NUL
[all...]
/freebsd-13-stable/contrib/llvm-project/lld/COFF/
H A DPDB.cpp1073 for (const auto &tsi : reverse(tsis)) {
1075 tsi.typeIndex.getIndex(), tsi.totalInputSize(),
1076 tsi.dupCount, tsi.typeSize);
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DExpr.h2428 SourceLocation OperatorLoc, TypeSourceInfo *tsi,
2439 SourceLocation OperatorLoc, TypeSourceInfo *tsi,
2457 void setTypeSourceInfo(TypeSourceInfo *tsi) { argument
2458 TSInfo = tsi;
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DExpr.cpp1494 TypeSourceInfo *tsi,
1501 return new (Mem) OffsetOfExpr(C, type, OperatorLoc, tsi, comps, exprs,
1513 SourceLocation OperatorLoc, TypeSourceInfo *tsi,
1517 OperatorLoc(OperatorLoc), RParenLoc(RParenLoc), TSInfo(tsi),
1492 Create(const ASTContext &C, QualType type, SourceLocation OperatorLoc, TypeSourceInfo *tsi, ArrayRef<OffsetOfNode> comps, ArrayRef<Expr*> exprs, SourceLocation RParenLoc) argument
1512 OffsetOfExpr(const ASTContext &C, QualType type, SourceLocation OperatorLoc, TypeSourceInfo *tsi, ArrayRef<OffsetOfNode> comps, ArrayRef<Expr *> exprs, SourceLocation RParenLoc) argument

Completed in 99 milliseconds