Searched refs:st1 (Results 1 - 25 of 30) sorted by relevance

12

/freebsd-11-stable/tests/sys/kern/pipe/
H A Dpipe_ino_test.c46 struct stat st1, st2; local
51 if (fstat(pipefd[0], &st1) == -1)
52 err(1, "FAIL: fstat st1");
55 if (st1.st_dev != st2.st_dev || st1.st_dev == 0 || st2.st_dev == 0)
57 (uintmax_t)st1.st_dev, (uintmax_t)st2.st_dev);
58 if (st1.st_ino == st2.st_ino)
60 (uintmax_t)st1.st_ino);
/freebsd-11-stable/lib/libc/tests/stdio/
H A Dmkostemp_test.c55 struct stat st1, st2; local
86 if (stat(tmpf, &st1) == -1) {
98 if (!S_ISREG(st1.st_mode) || (st1.st_mode & 0777) != 0600 ||
99 st1.st_nlink != 1 || st1.st_size != 0) {
112 if (st1.st_dev != st2.st_dev || st1.st_ino != st2.st_ino) {
/freebsd-11-stable/lib/libc/string/
H A Dwcscoll.c76 const int32_t *st1 = NULL; local
122 &pri1, pass, &st1);
129 st1 = NULL;
131 check1 = (st1 != NULL);
165 while (*w1 || *w2 || st1 || st2) {
167 while (*w1 || st1) {
169 pass, &st1);
180 st1 = NULL;
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/c063/
H A Dt_fstatat.c61 struct stat st1, st2; local
68 ATF_REQUIRE(fstatat(dfd, BASEFILE, &st1, 0) == 0);
72 ATF_REQUIRE(memcmp(&st1, &st2, sizeof(st1)) == 0);
/freebsd-11-stable/contrib/libgnuregex/
H A Dregex.c47 # define re_search_2(bufp, st1, s1, st2, s2, startpos, range, regs, stop) \
48 __re_search_2 (bufp, st1, s1, st2, s2, startpos, range, regs, stop)
/freebsd-11-stable/secure/lib/libcrypto/aarch64/
H A Daesv8-armx.S49 st1 {v3.4s},[x2],#16
67 st1 {v3.4s},[x2],#16
81 st1 {v3.4s},[x2],#16
91 st1 {v3.4s},[x2]
101 st1 {v3.4s},[x2],#16
107 st1 {v4.8b},[x2],#8
125 st1 {v3.4s},[x2],#16
137 st1 {v3.4s},[x2],#16
142 st1 {v4.4s},[x2],#16
154 st1 {v
[all...]
H A Dghashv8-armx.S25 st1 {v20.2d},[x0],#16 //store Htable[0]
52 st1 {v21.2d-v22.2d},[x0] //store Htable[1..2]
93 st1 {v0.2d},[x0] //write out Xi
223 st1 {v0.2d},[x0] //write out Xi
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/sys/
H A Dt_dup.c59 struct stat st, st1; local
90 (void)memset(&st1, 0, sizeof(struct stat));
93 ATF_REQUIRE(fstat(fd1, &st1) == 0);
95 if (st.st_mode != st1.st_mode)
/freebsd-11-stable/crypto/openssl/crypto/aes/asm/
H A Daes-ia64.S389 { .mii; st1 [out3]=r16,4
392 { .mii; st1 [out2]=r17,4
396 { .mmi; st1 [out1]=r18,4
397 st1 [out0]=r19,4 };;
398 { .mmi; st1 [out3]=r20,4
399 st1 [out2]=r21,4 }//;;
400 { .mmi; st1 [out1]=r22,4
401 st1 [out0]=r23,4 };;
402 { .mmi; st1 [out3]=r24,4
403 st1 [out
[all...]
/freebsd-11-stable/crypto/openssl/crypto/
H A Dia64cpuid.S143 { .mib; st1 [r32]=r0,1
152 { .mmi; st1 [r32]=r0,1;;
/freebsd-11-stable/lib/libutil/
H A Dpw_util.c289 struct stat st1, st2; local
295 if (stat(tempname, &st1) == -1)
346 return (st1.st_mtim.tv_sec != st2.st_mtim.tv_sec ||
347 st1.st_mtim.tv_nsec != st2.st_mtim.tv_nsec);
/freebsd-11-stable/sys/dev/ctau/
H A Dctddk.c873 int i, dsr, st1, st2, cda; local
935 st1 = inb (c->ST1);
937 if (st1 & ST1_CDCD){
943 outb (c->ST1, st1);
997 st1 = inb (c->ST1);
998 if (st1 & ST1_HDLC_UDRN) {
1003 outb (c->ST1, st1);
/freebsd-11-stable/contrib/atf/atf-c/detail/
H A Dfs_test.c378 atf_fs_stat_t st1, st2; local
381 RE(atf_fs_stat_init(&st1, &p));
390 ATF_REQUIRE_EQ(atf_fs_stat_get_device(&st1),
392 ATF_REQUIRE_EQ(atf_fs_stat_get_inode(&st1),
396 atf_fs_stat_fini(&st1);
/freebsd-11-stable/usr.bin/limits/
H A Dlimits.c728 struct stat st1; local
734 if (stat(path, &st1) != -1 && memcmp(&st, &st1, sizeof st) == 0)
/freebsd-11-stable/contrib/llvm-project/libcxx/src/filesystem/
H A Doperations.cpp464 bool stat_equivalent(const StatT& st1, const StatT& st2) {
465 return (st1.st_dev == st2.st_dev && st1.st_ino == st2.st_ino);
944 StatT st1 = {}, st2 = {}; local
945 auto s1 = detail::posix_stat(p1.native(), st1, &ec1);
952 return detail::stat_equivalent(st1, st2);
/freebsd-11-stable/crypto/openssl/crypto/sha/asm/
H A Dsha1-armv8.pl290 st1.32 {$ABCD},[$ctx],#16
291 st1.32 {$E}[0],[$ctx]
H A Dsha512-armv8.pl383 st1.32 {$ABCD,$EFGH},[$ctx]
/freebsd-11-stable/crypto/openssl/ssl/
H A Ds3_both.c341 * are read in state 'st1', the body is read in state 'stn'.
343 long ssl3_get_message(SSL *s, int st1, int stn, int mt, long max, int *ok) argument
366 if (s->state == st1) { /* s->init_num < SSL3_HM_HEADER_LENGTH */
H A Dd1_both.c171 static long dtls1_get_message_fragment(SSL *s, int st1, int stn, long max,
484 long dtls1_get_message(SSL *s, int st1, int stn, int mt, long max, int *ok) argument
512 i = dtls1_get_message_fragment(s, st1, stn, max, ok);
900 dtls1_get_message_fragment(SSL *s, int st1, int stn, long max, int *ok) argument
H A Dssl_locl.h1177 long ssl3_get_message(SSL *s, int st1, int stn, int mt, long max, int *ok);
1332 long dtls1_get_message(SSL *s, int st1, int stn, int mt, long max, int *ok);
/freebsd-11-stable/crypto/openssl/crypto/rc4/asm/
H A Drc4-ia64.pl130 # 4 stages. However, McKinley/Madison can issue "st1" to
370 # define SKEY st1
455 (pOutput) st1 [OutPtr] = Data[3], 1; \\
/freebsd-11-stable/contrib/libarchive/libarchive/test/
H A Dmain.c1227 struct stat st1, st2;
1231 r = lstat(path1, &st1);
1243 return (st1.st_ino == st2.st_ino && st1.st_dev == st2.st_dev);
/freebsd-11-stable/sys/netinet6/
H A Din6_mcast.c209 im6f_init(struct in6_mfilter *imf, const int st0, const int st1) argument
214 imf->im6f_st[1] = st1;
669 im6f_graft(struct in6_mfilter *imf, const uint8_t st1, argument
682 lims->im6sl_st[1] = st1;
/freebsd-11-stable/sys/netinet/
H A Din_mcast.c222 imf_init(struct in_mfilter *imf, const int st0, const int st1) argument
227 imf->imf_st[1] = st1;
718 imf_graft(struct in_mfilter *imf, const uint8_t st1, argument
731 lims->imsl_st[1] = st1;
/freebsd-11-stable/contrib/libarchive/test_utils/
H A Dtest_main.c1370 struct stat st1, st2;
1374 r = lstat(path1, &st1);
1386 return (st1.st_ino == st2.st_ino && st1.st_dev == st2.st_dev);

Completed in 301 milliseconds

12