Searched refs:sd (Results 1 - 25 of 204) sorted by relevance

123456789

/freebsd-current/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_tag_mismatch_riscv64.S87 sd x31, 248(sp)
88 sd x30, 240(sp)
89 sd x29, 232(sp)
90 sd x28, 224(sp)
91 sd x27, 216(sp)
92 sd x26, 208(sp)
93 sd x25, 200(sp)
94 sd x24, 192(sp)
95 sd x23, 184(sp)
96 sd x2
[all...]
H A Dhwasan_setjmp_riscv64.S47 sd ra, 0<<3(x10)
48 sd s0, 1<<3(x10)
49 sd s1, 2<<3(x10)
50 sd s2, 3<<3(x10)
51 sd s3, 4<<3(x10)
52 sd s4, 5<<3(x10)
53 sd s5, 6<<3(x10)
54 sd s6, 7<<3(x10)
55 sd s7, 8<<3(x10)
56 sd s
[all...]
/freebsd-current/sys/dev/aic7xxx/
H A Daic7xxx_93cx6.c95 #define CLOCK_PULSE(sd, rdy) \
96 while ((SEEPROM_STATUS_INB(sd) & rdy) == 0) { \
99 (void)SEEPROM_INB(sd); /* Clear clock */
105 send_seeprom_cmd(struct seeprom_descriptor *sd, struct seeprom_cmd *cmd) argument
111 temp = sd->sd_MS ^ sd->sd_CS;
112 SEEPROM_OUTB(sd, temp ^ sd->sd_CK);
113 CLOCK_PULSE(sd, sd
131 reset_seeprom(struct seeprom_descriptor *sd) argument
149 ahc_read_seeprom(struct seeprom_descriptor *sd, uint16_t *buf, u_int start_addr, u_int count) argument
221 ahc_write_seeprom(struct seeprom_descriptor *sd, uint16_t *buf, u_int start_addr, u_int count) argument
[all...]
H A Daic7xxx_93cx6.h83 #define SEEPROM_INB(sd) \
84 ahc_inb(sd->sd_ahc, sd->sd_control_offset)
85 #define SEEPROM_OUTB(sd, value) \
87 ahc_outb(sd->sd_ahc, sd->sd_control_offset, value); \
88 ahc_flush_device_writes(sd->sd_ahc); \
91 #define SEEPROM_STATUS_INB(sd) \
92 ahc_inb(sd->sd_ahc, sd
[all...]
/freebsd-current/sys/contrib/openzfs/module/lua/setjmp/
H A Dsetjmp_rv64g.S42 sd sp, (0 * 8)(a0)
46 sd s0, (0 * 8)(a0)
47 sd s1, (1 * 8)(a0)
48 sd s2, (2 * 8)(a0)
49 sd s3, (3 * 8)(a0)
50 sd s4, (4 * 8)(a0)
51 sd s5, (5 * 8)(a0)
52 sd s6, (6 * 8)(a0)
53 sd s7, (7 * 8)(a0)
54 sd s
[all...]
/freebsd-current/tools/test/stress2/misc/
H A Dunix_socket_detach.sh65 int sd, flags, one;
80 sd = socket(PF_LOCAL, SOCK_STREAM, 0);
81 if (sd < 0)
84 if (setsockopt(sd, SOL_SOCKET, SO_REUSEADDR, &one,
87 if (bind(sd, (struct sockaddr *)&sun, sizeof(sun)) < 0) {
88 close(sd);
91 if (listen(sd, 10) != 0)
94 (void)close(sd);
100 sd = socket(PF_LOCAL, SOCK_STREAM, 0);
101 if (sd <
[all...]
H A Dunix_socket_detach2.sh68 int one, sd;
71 sd = socket(PF_LOCAL, SOCK_STREAM, 0);
72 if (sd < 0)
75 if (setsockopt(sd, SOL_SOCKET, SO_REUSEADDR, &one,
78 if (bind(sd, (struct sockaddr *)&sun, sizeof(sun)) < 0) {
79 close(sd);
82 if (listen(sd, 10) != 0)
86 (void)close(sd);
96 int flags, sd;
99 sd
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dfloattixf.c32 int sd = N - __clzti2(a); // number of significant digits local
33 int e = sd - 1; // exponent
34 if (sd > LDBL_MANT_DIG) {
42 switch (sd) {
49 a = ((tu_int)a >> (sd - (LDBL_MANT_DIG + 2))) |
50 ((a & ((tu_int)(-1) >> ((N + LDBL_MANT_DIG + 2) - sd))) != 0);
63 a <<= (LDBL_MANT_DIG - sd);
H A Dfloatuntixf.c30 int sd = N - __clzti2(a); // number of significant digits local
31 int e = sd - 1; // exponent
32 if (sd > LDBL_MANT_DIG) {
40 switch (sd) {
47 a = (a >> (sd - (LDBL_MANT_DIG + 2))) |
48 ((a & ((tu_int)(-1) >> ((N + LDBL_MANT_DIG + 2) - sd))) != 0);
61 a <<= (LDBL_MANT_DIG - sd);
H A Dint_to_fp_impl.inc30 int sd = srcBits - clzSrcT(a); // number of significant digits
31 int e = sd - 1; // exponent
32 if (sd > dstMantDig) {
40 if (sd == dstMantDig + 1) {
42 } else if (sd == dstMantDig + 2) {
45 a = ((usrc_t)a >> (sd - (dstMantDig + 2))) |
46 ((a & ((usrc_t)(-1) >> ((srcBits + dstMantDig + 2) - sd))) != 0);
59 a <<= (dstMantDig - sd);
/freebsd-current/crypto/heimdal/lib/hx509/
H A Dtest_cms.in55 ${hxtool} cms-create-sd \
58 sd.data > /dev/null || exit 1
61 ${hxtool} cms-verify-sd \
64 sd.data sd.data.out > /dev/null || exit 1
65 cmp "$srcdir/test_chain.in" sd.data.out || exit 1
69 ${hxtool} cms-create-sd \
72 sd.data > /dev/null || exit 1
75 ${hxtool} cms-verify-sd \
78 sd
[all...]
/freebsd-current/crypto/openssl/test/
H A Dmoduleloadtest.c24 SD sd = SD_INIT; local
28 if (!sd_load(path, &sd, SD_MODULE))
30 ret = symbol == NULL || sd_sym(sd, symbol, &sym);
31 if (!sd_close(sd))
/freebsd-current/lib/libc/riscv/gen/
H A Dsetjmp.S40 sd a0, 0(sp)
41 sd ra, 8(sp)
55 sd t0, (0 * 8)(a0)
56 sd sp, (1 * 8)(a0)
60 sd s0, (0 * 8)(a0)
61 sd s1, (1 * 8)(a0)
62 sd s2, (2 * 8)(a0)
63 sd s3, (3 * 8)(a0)
64 sd s4, (4 * 8)(a0)
65 sd s
[all...]
H A D_setjmp.S41 sd t0, (0 * 8)(a0)
42 sd sp, (1 * 8)(a0)
46 sd s0, (0 * 8)(a0)
47 sd s1, (1 * 8)(a0)
48 sd s2, (2 * 8)(a0)
49 sd s3, (3 * 8)(a0)
50 sd s4, (4 * 8)(a0)
51 sd s5, (5 * 8)(a0)
52 sd s6, (6 * 8)(a0)
53 sd s
[all...]
/freebsd-current/sys/ddb/
H A Ddb_ctf.h50 int db_ctf_find_symbol(const char *name, db_ctf_sym_data_t sd);
51 struct ctf_type_v3 *db_ctf_find_typename(db_ctf_sym_data_t sd,
58 struct ctf_type_v3 *db_ctf_sym_to_type(db_ctf_sym_data_t sd);
59 const char *db_ctf_stroff_to_str(db_ctf_sym_data_t sd, uint32_t off);
61 struct ctf_type_v3 *db_ctf_typeid_to_type(db_ctf_sym_data_t sd,
/freebsd-current/sys/riscv/riscv/
H A Dexception.S44 sd ra, (TF_RA)(sp)
45 sd tp, (TF_TP)(sp)
46 sd gp, (TF_GP)(sp)
59 sd t0, (TF_T + 0 * 8)(sp)
60 sd t1, (TF_T + 1 * 8)(sp)
61 sd t2, (TF_T + 2 * 8)(sp)
62 sd t3, (TF_T + 3 * 8)(sp)
63 sd t4, (TF_T + 4 * 8)(sp)
64 sd t5, (TF_T + 5 * 8)(sp)
65 sd t
[all...]
/freebsd-current/sys/geom/raid/
H A Dtr_raid1e.c135 struct g_raid_subdisk *sd);
192 struct g_raid_subdisk *sd, *bestsd, *worstsd; local
200 sd = &vol->v_subdisks[i * N + j];
201 if (sd->sd_state > bestsd->sd_state)
202 bestsd = sd;
203 else if (sd->sd_state == bestsd->sd_state &&
204 (sd->sd_state == G_RAID_SUBDISK_S_REBUILD ||
205 sd->sd_state == G_RAID_SUBDISK_S_RESYNC) &&
206 sd->sd_rebuild_pos > bestsd->sd_rebuild_pos)
207 bestsd = sd;
245 struct g_raid_subdisk *sd, *bestsd, *worstsd; local
296 g_raid_tr_update_state_raid1e(struct g_raid_volume *vol, struct g_raid_subdisk *sd) argument
330 g_raid_tr_raid1e_fail_disk(struct g_raid_softc *sc, struct g_raid_subdisk *sd, struct g_raid_disk *disk) argument
359 struct g_raid_subdisk *sd; local
377 struct g_raid_subdisk *sd; local
394 struct g_raid_subdisk *sd; local
427 struct g_raid_subdisk *sd; local
501 struct g_raid_subdisk *sd; local
554 g_raid_tr_raid1e_maybe_rebuild(struct g_raid_tr_object *tr, struct g_raid_subdisk *sd) argument
591 g_raid_tr_event_raid1e(struct g_raid_tr_object *tr, struct g_raid_subdisk *sd, u_int event) argument
635 struct g_raid_subdisk *sd; local
688 struct g_raid_subdisk *sd; local
758 struct g_raid_subdisk *sd; local
881 g_raid_tr_iodone_raid1e(struct g_raid_tr_object *tr, struct g_raid_subdisk *sd, struct bio *bp) argument
1148 struct g_raid_subdisk *sd; local
1198 struct g_raid_subdisk *sd; local
[all...]
H A Dtr_raid1.c131 struct g_raid_subdisk *sd);
149 struct g_raid_subdisk *sd)
206 g_raid_tr_raid1_maybe_rebuild(vol->v_tr, sd);
220 g_raid_tr_raid1_fail_disk(struct g_raid_softc *sc, struct g_raid_subdisk *sd, argument
232 if (g_raid_nsubdisks(sd->sd_volume, G_RAID_SUBDISK_S_ACTIVE) == 1 &&
233 g_raid_get_subdisk(sd->sd_volume, G_RAID_SUBDISK_S_ACTIVE) == sd)
235 g_raid_fail_disk(sc, sd, disk);
242 struct g_raid_subdisk *sd, *good_sd; local
248 sd
148 g_raid_tr_update_state_raid1(struct g_raid_volume *vol, struct g_raid_subdisk *sd) argument
273 struct g_raid_subdisk *sd; local
291 struct g_raid_subdisk *sd; local
308 struct g_raid_subdisk *sd; local
343 struct g_raid_subdisk *sd, *fsd; local
402 g_raid_tr_raid1_maybe_rebuild(struct g_raid_tr_object *tr, struct g_raid_subdisk *sd) argument
445 g_raid_tr_event_raid1(struct g_raid_tr_object *tr, struct g_raid_subdisk *sd, u_int event) argument
489 struct g_raid_subdisk *sd, *best; local
525 struct g_raid_subdisk *sd; local
545 struct g_raid_subdisk *sd; local
652 g_raid_tr_iodone_raid1(struct g_raid_tr_object *tr, struct g_raid_subdisk *sd, struct bio *bp) argument
903 struct g_raid_subdisk *sd; local
946 struct g_raid_subdisk *sd; local
[all...]
/freebsd-current/contrib/netbsd-tests/lib/libc/sys/
H A Dt_getsockname.c47 int sd; local
51 sd = socket(AF_UNIX, SOCK_STREAM, 0);
52 ATF_REQUIRE(sd != -1);
56 ATF_REQUIRE(getsockname(sd, (struct sockaddr *)&sun, &len) != -1);
64 ATF_REQUIRE(bind(sd, (struct sockaddr *)&sun, len) != -1);
68 ATF_REQUIRE(getsockname(sd, (struct sockaddr *)&sun, &len) != -1);
72 ATF_REQUIRE(close(sd) != -1);
/freebsd-current/lib/libc/rpc/
H A Dbindresvport.c59 bindresvport(int sd, struct sockaddr_in *sin) argument
61 return bindresvport_sa(sd, (struct sockaddr *)sin);
68 bindresvport_sa(int sd, struct sockaddr *sa) argument
84 if (_getsockname(sd, sa, &salen) == -1)
121 error = _getsockopt(sd, proto, portrange, &old, &oldlen);
125 error = _setsockopt(sd, proto, portrange, &portlow,
131 error = _bind(sd, sa, salen);
137 if (_setsockopt(sd, proto, portrange, &old,
145 if (_getsockname(sd, sa, &salen) < 0)
/freebsd-current/contrib/sendmail/libmilter/
H A Dlibmilter.h124 # define ValidSocket(sd) ((sd) >= 0)
181 # define FD_RD_INIT(sd, rds, excs) \
182 (rds).fd = (sd); \
186 # define FD_WR_INIT(sd, wrs) \
187 (wrs).fd = (sd); \
191 # define FD_IS_RD_EXC(sd, rds, excs) \
194 # define FD_IS_WR_RDY(sd, wrs) \
197 # define FD_IS_RD_RDY(sd, rds, excs) \
200 # define FD_WR_READY(sd, wr
[all...]
/freebsd-current/lib/libsys/riscv/
H A Dcerror.S38 sd a0, 0(sp)
39 sd ra, 8(sp)
/freebsd-current/crypto/openssl/test/testutil/
H A Drandom.c28 void test_random_seed(uint32_t sd) { argument
33 test_random_state[0] = sd;
/freebsd-current/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_trampoline_mips64.S25 sd $ra, 136($sp)
27 sd $gp, 128($sp)
28 sd $a7, 120($sp)
29 sd $a6, 112($sp)
30 sd $a5, 104($sp)
31 sd $a4, 96($sp)
32 sd $a3, 88($sp)
33 sd $a2, 80($sp)
34 sd $a1, 72($sp)
35 sd
[all...]
/freebsd-current/tools/tools/net80211/mlme_assoc/
H A Dmlme_assoc.c56 if_up(int sd, const char *ifnam) argument
64 error = ioctl(sd, SIOCGIFFLAGS, &ifr);
75 error = ioctl(sd, SIOCSIFFLAGS, &ifr);
85 try_mlme_assoc(int sd, const char *ifnam, uint8_t *ssid, uint8_t ssid_len, uint8_t *bssid) argument
106 error = ioctl(sd, SIOCS80211, &ireq);
116 mlme_assoc_scan_results(int sd, const char *ifnam) argument
130 error = ioctl(sd, SIOCG80211, &ireq);
143 error = try_mlme_assoc(sd, ifnam, (void *)(sr + 1), sr->isr_ssid_len,
162 int error, sd; local
178 sd
[all...]

Completed in 174 milliseconds

123456789