| /src/usr.bin/hexdump/ |
| hexdump.c | 66 FS *tfs; local 82 for (blocksize = 0, tfs = fshead; tfs; tfs = tfs->nextfs) { 83 tfs->bcnt = size(tfs); 84 if (blocksize < tfs->bcnt) 85 blocksize = tfs->bcnt; 88 for (tfs = fshead; tfs; tfs = tfs->nextfs [all...] |
| parse.c | 97 FS *tfs; local 102 tfs = ecalloc(1, sizeof(FS)); 104 fshead = tfs; 106 *nextfs = tfs; 107 nextfs = &tfs->nextfs; 108 nextfu = &tfs->nextfu;
|
| /src/external/bsd/mdocml/dist/ |
| term_tag.h | 24 FILE *tfs; /* Tag file object. */ member in struct:tag_files
|
| term_tag.c | 58 tag_files.tfs = NULL; 126 if ((tag_files.tfs = fdopen(tfd, "w")) == NULL) { 157 if (tag_files.tfs == NULL) 163 fprintf(tag_files.tfs, "%.*s %s %zu\n", 178 if (tag_files.tfs != NULL) { 179 fclose(tag_files.tfs); 180 tag_files.tfs = NULL;
|
| main.c | 1291 assert(outst->tag_files->tfs == NULL);
|
| /src/external/bsd/zstd/dist/programs/ |
| benchfn.c | 174 typedef struct { check_size c; BMK_timedFnState_t tfs; } tfs_align; /* force tfs to be aligned at its next best position */ member in struct:__anon8860 175 size_t const tfs_alignment = offsetof(tfs_align, tfs); /* provides the minimal alignment restriction for BMK_timedFnState_t */
|
| /src/sys/ufs/lfs/ |
| lfs_bio.c | 538 struct lfs *tfs; local 572 tfs = VFSTOULFS(mp)->um_lfs; 573 if (tfs == fs) 576 lfs_flush_fs(tfs, flags);
|
| /src/external/bsd/zstd/dist/tests/ |
| fullbench.c | 865 { BMK_timedFnState_t* const tfs = BMK_createTimedFnState(g_nbIterations * 1000, 1000); local 872 CONTROL(tfs != NULL); 888 BMK_runOutcome_t const bOutcome = BMK_benchTimedFn(tfs, bp); 913 if ( BMK_isCompleted_TimedFn(tfs) ) break; 915 BMK_freeTimedFnState(tfs);
|
| /src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
| statementsem.d | 3665 override void visit(TryFinallyStatement tfs) 3668 tfs.tryBody = sc.tryBody; // chain on in-flight tryBody 3669 tfs._body = tfs._body.semanticScope(sc, null, null, tfs); 3672 sc.tf = tfs; 3675 tfs.finalbody = tfs.finalbody.semanticNoScope(sc); 3678 if (!tfs._body) 3680 result = tfs.finalbody [all...] |