| /src/lib/libc/compat/sys/ |
| compat_stat.c | 91 struct stat nst; local 94 if ((ret = __stat50(file, &nst)) < 0) 96 cvtstat(&nst, ost); 103 struct stat nst; local 106 if ((ret = __fstat50(f, &nst)) < 0) 108 cvtstat(&nst, ost); 115 struct stat nst; local 118 if ((ret = __lstat50(file, &nst)) < 0) 120 cvtstat(&nst, ost);
|
| compat___stat13.c | 97 struct stat nst; local 100 if ((ret = __stat50(file, &nst)) == -1) 102 cvtstat(ost, &nst); 109 struct stat nst; local 112 if ((ret = __fstat50(f, &nst)) == -1) 114 cvtstat(ost, &nst); 121 struct stat nst; local 124 if ((ret = __lstat50(file, &nst)) == -1) 126 cvtstat(ost, &nst); 133 struct stat nst; local [all...] |
| compat___stat30.c | 94 struct stat nst; local 97 if ((ret = __stat50(file, &nst)) == -1) 99 cvtstat(ost, &nst); 106 struct stat nst; local 109 if ((ret = __fstat50(f, &nst)) == -1) 111 cvtstat(ost, &nst); 118 struct stat nst; local 121 if ((ret = __lstat50(file, &nst)) == -1) 123 cvtstat(ost, &nst); 130 struct stat nst; local [all...] |
| compat_statfs.c | 69 struct statvfs nst; local 72 if ((ret = __statvfs90(file, &nst)) == -1) 74 statvfs_to_statfs12(&nst, ost); 81 struct statvfs nst; local 84 if ((ret = __fstatvfs90(f, &nst)) == -1) 86 statvfs_to_statfs12(&nst, ost); 93 struct statvfs nst; local 96 if ((ret = __fhstatvfs190(fh, FHANDLE30_SIZE, &nst, ST_WAIT)) == -1) 98 statvfs_to_statfs12(&nst, ost); 105 struct statvfs *nst; local [all...] |
| /src/external/bsd/jemalloc.old/dist/test/unit/ |
| nstime.c | 6 nstime_t nst; local 8 nstime_init(&nst, 42000000043); 9 assert_u64_eq(nstime_ns(&nst), 42000000043, "ns incorrectly read"); 10 assert_u64_eq(nstime_sec(&nst), 42, "sec incorrectly read"); 11 assert_u64_eq(nstime_nsec(&nst), 43, "nsec incorrectly read"); 16 nstime_t nst; local 18 nstime_init2(&nst, 42, 43); 19 assert_u64_eq(nstime_sec(&nst), 42, "sec incorrectly read"); 20 assert_u64_eq(nstime_nsec(&nst), 43, "nsec incorrectly read"); 210 nstime_t nst; local [all...] |
| /src/external/bsd/jemalloc/dist/test/unit/ |
| nstime.c | 6 nstime_t nst; local 8 nstime_init(&nst, 42000000043); 9 expect_u64_eq(nstime_ns(&nst), 42000000043, "ns incorrectly read"); 10 expect_u64_eq(nstime_sec(&nst), 42, "sec incorrectly read"); 11 expect_u64_eq(nstime_nsec(&nst), 43, "nsec incorrectly read"); 16 nstime_t nst; local 18 nstime_init2(&nst, 42, 43); 19 expect_u64_eq(nstime_sec(&nst), 42, "sec incorrectly read"); 20 expect_u64_eq(nstime_nsec(&nst), 43, "nsec incorrectly read");
|
| /src/tests/lib/libc/c063/ |
| t_renameat.c | 62 struct stat ost, nst; local 77 ATF_REQUIRE(stat(TARGET, &nst) == 0); 78 ATF_REQUIRE(ost.st_ino == nst.st_ino); 91 struct stat ost, nst; local 102 ATF_REQUIRE(stat(TARGET, &nst) == 0); 103 ATF_REQUIRE(ost.st_ino == nst.st_ino);
|
| t_symlinkat.c | 62 struct stat ost, nst; local 74 ATF_REQUIRE(stat(LINK, &nst) == 0); 75 ATF_REQUIRE(ost.st_ino == nst.st_ino); 87 struct stat ost, nst; local 97 ATF_REQUIRE(stat(LINK, &nst) == 0); 98 ATF_REQUIRE(ost.st_ino == nst.st_ino);
|
| t_linkat.c | 64 struct stat ost, nst; local 78 ATF_REQUIRE(stat(TARGET, &nst) == 0); 79 ATF_REQUIRE(ost.st_ino == nst.st_ino); 91 struct stat ost, nst; local 101 ATF_REQUIRE(stat(TARGET, &nst) == 0); 102 ATF_REQUIRE(ost.st_ino == nst.st_ino); 150 struct stat ost, nst; local 166 ATF_REQUIRE(lstat(TARGET, &nst) == 0); 167 ATF_REQUIRE(ost.st_ino != nst.st_ino); 170 ATF_REQUIRE(lstat(TARGET, &nst) == 0) 183 struct stat ost, nst; local [all...] |
| /src/usr.sbin/npf/npftest/libnpftest/ |
| npf_state_test.c | 134 process_packet(const int i, npf_state_t *nst, bool *snew) 141 npf_state_destroy(nst); 148 ret = npf_state_init(npc, nst); 152 ret = npf_state_inspect(npc, nst, 162 npf_state_t nst; local 167 if (process_packet(i, &nst, &snew)) { 172 npf_state_dump(&nst);
|
| /src/external/gpl3/gcc.old/dist/libcpp/ |
| charset.cc | 929 _cpp_valid_ucn. Also update NST for C if returning nonzero. The 935 struct normalize_state *nst) 970 /* Update NST. */ 971 if (ucnranges[mn].combine != 0 && ucnranges[mn].combine < nst->prev_class) 972 nst->level = normalized_none; 976 cppchar_t p = nst->previous; 994 nst->level = MAX (nst->level, normalized_identifier_C); 996 nst->level = normalized_none; 1002 nst->level = MAX (nst->level, normalized_C) 1208 struct normalize_state nst = INITIAL_NORMALIZE_STATE; local [all...] |
| lex.cc | 2015 struct normalize_state *nst, cpp_hashnode **spelling) 2031 NORMALIZE_STATE_UPDATE_IDNUM (nst, *(cur - 1)); 2034 if (starts_ucn || forms_identifier_p (pfile, false, nst)) 2041 NORMALIZE_STATE_UPDATE_IDNUM (nst, *pfile->buffer->cur); 2044 } while (forms_identifier_p (pfile, false, nst)); 2103 struct normalize_state *nst) 2121 NORMALIZE_STATE_UPDATE_IDNUM (nst, *cur); 2137 while (forms_identifier_p (pfile, false, nst)); 3636 struct normalize_state nst = INITIAL_NORMALIZE_STATE; 3638 lex_number (pfile, &result->val.str, &nst); 3635 struct normalize_state nst = INITIAL_NORMALIZE_STATE; local 3683 struct normalize_state nst = INITIAL_NORMALIZE_STATE; local 3897 struct normalize_state nst = INITIAL_NORMALIZE_STATE; local 3989 struct normalize_state nst = INITIAL_NORMALIZE_STATE; local [all...] |
| /src/usr.bin/xlint/lint1/ |
| tree.c | 3899 should_warn_about_pointer_cast(const type_t *nstp, tspec_t nst, 3903 while (nst == ARRAY) 3904 nstp = nstp->t_subt, nst = nstp->t_tspec; 3908 if (nst == STRUCT && ost == STRUCT && 3916 if (nst == CHAR || nst == UCHAR) 3922 if (nst == STRUCT && ost == STRUCT) { 3937 if (nst == UNION || ost == UNION) { 3938 const type_t *union_tp = nst == UNION ? nstp : ostp; 3939 const type_t *other_tp = nst == UNION ? ostp : nstp 3961 tspec_t nst = nstp->t_tspec; local [all...] |