| /src/tests/usr.bin/indent/ |
| lsym_period.c | 37 get_time(struct stat st) 39 return st.st_mtime > 0 ? st . st_atime : st.st_ctime; 45 get_time(struct stat st) 47 return st.st_mtime > 0 ? st.st_atime : st.st_ctime;
|
| /src/external/bsd/libarchive/dist/libarchive/ |
| archive_entry_copy_stat.c | 36 archive_entry_copy_stat(struct archive_entry *entry, const struct stat *st) 39 archive_entry_set_atime(entry, st->st_atime, st->st_atimespec.tv_nsec); 40 archive_entry_set_ctime(entry, st->st_ctime, st->st_ctimespec.tv_nsec); 41 archive_entry_set_mtime(entry, st->st_mtime, st->st_mtimespec.tv_nsec); 43 archive_entry_set_atime(entry, st->st_atime, st->st_atim.tv_nsec); 44 archive_entry_set_ctime(entry, st->st_ctime, st->st_ctim.tv_nsec) [all...] |
| archive_entry_stat.c | 42 struct stat *st; local 44 entry->stat = calloc(1, sizeof(*st)); 61 st = entry->stat; 66 st->st_atime = archive_entry_atime(entry); 68 st->st_birthtime = archive_entry_birthtime(entry); 70 st->st_ctime = archive_entry_ctime(entry); 71 st->st_mtime = archive_entry_mtime(entry); 72 st->st_dev = archive_entry_dev(entry); 73 st->st_gid = (gid_t)archive_entry_gid(entry); 74 st->st_uid = (uid_t)archive_entry_uid(entry) [all...] |
| /src/crypto/external/bsd/openssl.old/dist/crypto/stack/ |
| stack.c | 160 static int sk_reserve(OPENSSL_STACK *st, int n, int exact) 166 if (n > max_nodes - st->num) 170 num_alloc = st->num + n; 174 /* If |st->data| allocation was postponed */ 175 if (st->data == NULL) { 177 * At this point, |st->num_alloc| and |st->num| are 0; 180 if ((st->data = OPENSSL_zalloc(sizeof(void *) * num_alloc)) == NULL) { 184 st->num_alloc = num_alloc; 189 if (num_alloc <= st->num_alloc 209 OPENSSL_STACK *st = OPENSSL_zalloc(sizeof(OPENSSL_STACK)); local [all...] |
| /src/external/ibm-public/postfix/dist/src/global/ |
| msg_stats.h | 66 #define MSG_STATS_INIT(st) \ 68 memset((char *) (st), 0, sizeof(*(st))), \ 69 (st) \ 72 #define MSG_STATS_INIT1(st, member, value) \ 74 memset((char *) (st), 0, sizeof(*(st))), \ 75 ((st)->member = (value)), \ 76 (st) \ 79 #define MSG_STATS_INIT2(st, m1, v1, m2, v2) [all...] |
| file_id.c | 15 /* const char *get_file_id_st(st, long_flag) 16 /* struct stat *st; 37 /* .IP st 84 struct stat st; local 86 if (fstat(fd, &st) < 0) 88 return (get_file_id_st(&st, long_flag)); 93 const char *get_file_id_st(struct stat * st, int long_flag) 100 return (MQID_LG_ENCODE_INUM(result, st->st_ino)); 102 return (MQID_SH_ENCODE_INUM(result, st->st_ino));
|
| /src/external/bsd/libarchive/dist/tar/ |
| bsdtar_platform.h | 73 #define ARCHIVE_STAT_CTIME_NANOS(st) (st)->st_ctimespec.tv_nsec 74 #define ARCHIVE_STAT_MTIME_NANOS(st) (st)->st_mtimespec.tv_nsec 76 #define ARCHIVE_STAT_CTIME_NANOS(st) (st)->st_ctim.tv_nsec 77 #define ARCHIVE_STAT_MTIME_NANOS(st) (st)->st_mtim.tv_nsec 79 #define ARCHIVE_STAT_CTIME_NANOS(st) (st)->st_ctime_ [all...] |
| /src/external/bsd/libarchive/dist/cpio/test/ |
| test_option_B_upper.c | 11 struct stat st; local 23 assertEqualInt(0, stat("small.cpio", &st)); 24 assertEqualInt(512, st.st_size); 30 assertEqualInt(0, stat("large.cpio", &st)); 31 assertEqualInt(5120, st.st_size);
|
| /src/crypto/external/bsd/openssl/dist/crypto/stack/ |
| stack.c | 173 static int sk_reserve(OPENSSL_STACK *st, int n, int exact) 179 if (n > max_nodes - st->num) { 185 num_alloc = st->num + n; 189 /* If |st->data| allocation was postponed */ 190 if (st->data == NULL) { 192 * At this point, |st->num_alloc| and |st->num| are 0; 195 if ((st->data = OPENSSL_zalloc(sizeof(void *) * num_alloc)) == NULL) { 199 st->num_alloc = num_alloc; 204 if (num_alloc <= st->num_alloc 228 OPENSSL_STACK *st = OPENSSL_zalloc(sizeof(OPENSSL_STACK)); local [all...] |
| /src/crypto/external/apache2/openssl/dist/crypto/stack/ |
| stack.c | 178 static int sk_reserve(OPENSSL_STACK *st, int n, int exact) 184 if (n > max_nodes - st->num) { 190 num_alloc = st->num + n; 194 /* If |st->data| allocation was postponed */ 195 if (st->data == NULL) { 197 * At this point, |st->num_alloc| and |st->num| are 0; 200 if ((st->data = OPENSSL_zalloc(sizeof(void *) * num_alloc)) == NULL) 202 st->num_alloc = num_alloc; 207 if (num_alloc <= st->num_alloc 229 OPENSSL_STACK *st = OPENSSL_zalloc(sizeof(OPENSSL_STACK)); local [all...] |
| /src/external/ibm-public/postfix/dist/src/tls/ |
| tls_certkey.c | 134 static void init_pem_load_state(pem_load_state_t *st, SSL_CTX *ctx, SSL *ssl, 137 st->origin = origin; 138 st->source = origin; 139 st->keysrc = 0; 140 st->pembio = 0; 141 st->ctx = ctx; 142 st->ssl = ssl; 143 st->pkey = 0; 144 st->cert = 0; 145 st->chain = 0 464 pem_load_state_t st; local 490 pem_load_state_t st; local 621 pem_load_state_t st; local [all...] |
| /src/lib/libc/sys/ |
| statvfs.c | 40 statvfs(const char *file, struct statvfs *st) 42 return statvfs1(file, st, ST_WAIT); 46 fstatvfs(int f, struct statvfs *st) 48 return fstatvfs1(f, st, ST_WAIT); 52 fhstatvfs(const void *fh, size_t fh_size, struct statvfs *st) 54 return fhstatvfs1(fh, fh_size, st, ST_WAIT);
|
| /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/ |
| memset.c | 23 register char *st = str; local 26 *st++ = c;
|
| /src/sys/dev/scsipi/ |
| st.c | 1 /* $NetBSD: st.c,v 1.244 2025/12/16 18:24:47 andvar Exp $ */ 53 __KERNEL_RCSID(0, "$NetBSD: st.c,v 1.244 2025/12/16 18:24:47 andvar Exp $"); 300 "TEAC ", "MT-2ST/N50 ", ""}, {ST_Q_IGNORE_LOADS, 0, { 382 struct st_softc *st = device_private(self); local 387 st->sc_dev = self; 390 st->sc_periph = periph; 391 periph->periph_dev = st->sc_dev; 395 st->flags = ST_INIT_FLAGS; 398 bufq_alloc(&st->buf_queue, "fcfs", 0); 399 bufq_alloc(&st->buf_defer, "fcfs", 0) 437 struct st_softc *st = device_private(self); local 540 struct st_softc *st; local 731 struct st_softc *st = device_lookup_private(&st_cd, STUNIT(dev)); local 850 struct st_softc *st; local 1104 struct st_softc *st = device_lookup_private(&st_cd, STUNIT(bp->b_dev)); local 1188 struct st_softc *st = device_private(periph->periph_dev); local 1317 struct st_softc *st = device_private(periph->periph_dev); local 1373 struct st_softc *st = device_private(xs->xs_periph->periph_dev); local 1420 struct st_softc *st = device_lookup_private(&st_cd, STUNIT(dev)); local 1433 struct st_softc *st = device_lookup_private(&st_cd, STUNIT(dev)); local 1454 struct st_softc *st; local 2154 struct st_softc *st = device_private(periph->periph_dev); local [all...] |
| /src/external/gpl3/gdb/dist/gnulib/import/ |
| stat-time.h | 42 /* STAT_TIMESPEC (ST, ST_XTIM) is the ST_XTIM member for *ST of type 43 struct timespec, if available. If not, then STAT_TIMESPEC_NS (ST, 44 ST_XTIM) is the nanosecond component of the ST_XTIM member for *ST, 52 # define STAT_TIMESPEC(st, st_xtim) ((st)->st_xtim) 54 # define STAT_TIMESPEC_NS(st, st_xtim) ((st)->st_xtim.tv_nsec) 57 # define STAT_TIMESPEC(st, st_xtim) ((st)->st_xtim##espec [all...] |
| /src/external/gpl3/gdb.old/dist/gnulib/import/ |
| stat-time.h | 42 /* STAT_TIMESPEC (ST, ST_XTIM) is the ST_XTIM member for *ST of type 43 struct timespec, if available. If not, then STAT_TIMESPEC_NS (ST, 44 ST_XTIM) is the nanosecond component of the ST_XTIM member for *ST, 52 # define STAT_TIMESPEC(st, st_xtim) ((st)->st_xtim) 54 # define STAT_TIMESPEC_NS(st, st_xtim) ((st)->st_xtim.tv_nsec) 57 # define STAT_TIMESPEC(st, st_xtim) ((st)->st_xtim##espec [all...] |
| /src/sys/external/isc/libsodium/dist/test/default/ |
| generichash2.c | 9 crypto_generichash_state st; local 14 assert(crypto_generichash_statebytes() >= sizeof st); 20 if (crypto_generichash_init(&st, k, 26 crypto_generichash_update(&st, in, i); 27 crypto_generichash_update(&st, in, i); 28 crypto_generichash_update(&st, in, i); 29 if (crypto_generichash_final(&st, out, 37 if (crypto_generichash_final(&st, out, 43 assert(crypto_generichash_init(&st, k, sizeof k, 0U) == -1); 44 assert(crypto_generichash_init(&st, k, sizeof k [all...] |
| /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/test/ |
| templated_fixture_test.cc | 15 BENCHMARK_TEMPLATE_F(MyFixture, Foo, int)(benchmark::State& st) { 16 for (auto _ : st) { 21 BENCHMARK_TEMPLATE_DEFINE_F(MyFixture, Bar, double)(benchmark::State& st) { 22 for (auto _ : st) {
|
| /src/external/apache2/llvm/dist/llvm/utils/benchmark/test/ |
| templated_fixture_test.cc | 15 BENCHMARK_TEMPLATE_F(MyFixture, Foo, int)(benchmark::State &st) { 16 for (auto _ : st) { 21 BENCHMARK_TEMPLATE_DEFINE_F(MyFixture, Bar, double)(benchmark::State& st) { 22 for (auto _ : st) {
|
| /src/crypto/external/apache2/openssl/dist/crypto/ |
| self_test_core.c | 75 static void self_test_setparams(OSSL_SELF_TEST *st) 79 if (st->cb != NULL) { 80 st->params[n++] = OSSL_PARAM_construct_utf8_string(OSSL_PROV_PARAM_SELF_TEST_PHASE, 81 (char *)st->phase, 0); 82 st->params[n++] = OSSL_PARAM_construct_utf8_string(OSSL_PROV_PARAM_SELF_TEST_TYPE, 83 (char *)st->type, 0); 84 st->params[n++] = OSSL_PARAM_construct_utf8_string(OSSL_PROV_PARAM_SELF_TEST_DESC, 85 (char *)st->desc, 0); 87 st->params[n++] = OSSL_PARAM_construct_end(); 106 void OSSL_SELF_TEST_free(OSSL_SELF_TEST *st) [all...] |
| /src/crypto/external/bsd/openssl/dist/crypto/ |
| self_test_core.c | 83 static void self_test_setparams(OSSL_SELF_TEST *st) 87 if (st->cb != NULL) { 88 st->params[n++] = 90 (char *)st->phase, 0); 91 st->params[n++] = 93 (char *)st->type, 0); 94 st->params[n++] = 96 (char *)st->desc, 0); 98 st->params[n++] = OSSL_PARAM_construct_end(); 117 void OSSL_SELF_TEST_free(OSSL_SELF_TEST *st) [all...] |
| /src/sys/arch/sandpoint/stand/altboot/ |
| exception.c | 71 exception_handler(unsigned vector, struct cpu_state *st) 78 printf("\nCALL TO NULL POINTER FROM %08x\n", st->lr - 4); 92 st->srr0, st->srr1, st->dar, st->dsisr, 93 st->cr, st->xer, st->lr, st->ctr [all...] |
| /src/common/lib/libc/arch/sparc/gen/ |
| saveregs.S | 55 st %i0, [%fp + 0x44] ! fr->fr_argd[0] 56 st %i1, [%fp + 0x48] ! fr->fr_argd[1] 57 st %i2, [%fp + 0x4c] ! fr->fr_argd[2] 58 st %i3, [%fp + 0x50] ! fr->fr_argd[3] 59 st %i4, [%fp + 0x54] ! fr->fr_argd[4] 61 st %i5, [%fp + 0x58] ! fr->fr_argd[5]
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.pascal/ |
| hello.pas | 4 st : string; 9 st:='Hello, world!'; 10 writeln(st); {set breakpoint 2 here }
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.pascal/ |
| hello.pas | 4 st : string; 9 st:='Hello, world!'; 10 writeln(st); {set breakpoint 2 here }
|