Symbol: mtop
bin/dd/position.c
153
struct mtop t_op;
bin/pax/ar_io.c
708
struct mtop mb;
bin/pax/ar_io.c
851
struct mtop mb;
bin/pax/ar_io.c
985
struct mtop mb;
crypto/openssl/crypto/bn/bn_mod.c
139
size_t i, ai, bi, mtop = m->top;
crypto/openssl/crypto/bn/bn_mod.c
143
if (bn_wexpand(r, mtop) == NULL)
crypto/openssl/crypto/bn/bn_mod.c
150
for (i = 0, ai = 0, bi = 0, borrow = 0; i < mtop;) {
crypto/openssl/crypto/bn/bn_mod.c
165
for (i = 0, mask = 0 - borrow, carry = 0; i < mtop; i++) {
crypto/openssl/crypto/bn/bn_mod.c
172
for (i = 0, mask = 0 - borrow, carry = 0; i < mtop; i++) {
crypto/openssl/crypto/bn/bn_mod.c
179
r->top = mtop;
crypto/openssl/crypto/bn/bn_mod.c
57
size_t i, ai, bi, mtop = m->top;
crypto/openssl/crypto/bn/bn_mod.c
62
if (bn_wexpand(r, mtop) == NULL)
crypto/openssl/crypto/bn/bn_mod.c
65
if (mtop > OSSL_NELEM(storage)) {
crypto/openssl/crypto/bn/bn_mod.c
66
tp = OPENSSL_malloc(mtop * sizeof(BN_ULONG));
crypto/openssl/crypto/bn/bn_mod.c
74
for (i = 0, ai = 0, bi = 0, carry = 0; i < mtop;) {
crypto/openssl/crypto/bn/bn_mod.c
88
carry -= bn_sub_words(rp, tp, m->d, mtop);
crypto/openssl/crypto/bn/bn_mod.c
89
for (i = 0; i < mtop; i++) {
crypto/openssl/crypto/bn/bn_mod.c
93
r->top = mtop;
sbin/restore/tape.c
525
struct mtop tcom;
sys/cam/scsi/scsi_sa.c
1616
struct mtop *mt = (struct mtop *) arg;
sys/cam/scsi/scsi_sa.c
1825
struct mtop *mt;
sys/cam/scsi/scsi_sa.c
1830
mt = (struct mtop *)arg;
sys/netsmb/smb_rq.c
418
smb_t2_placedata(struct mbuf *mtop, u_int16_t offset, u_int16_t count,
sys/netsmb/smb_rq.c
424
len = m_length(mtop, NULL);
sys/netsmb/smb_rq.c
428
m0 = m_split(mtop, offset, M_WAITOK);
sys/sys/mtio.h
311
#define MTIOCTOP _IOW('m', 1, struct mtop) /* do a mag tape op */
usr.bin/mt/mt.c
197
struct mtop mt_com;
usr.bin/tcopy/tcopy.cc
146
struct mtop op;
usr.bin/tcopy/tcopy.cc
157
struct mtop op;
usr.bin/tcopy/tcopy.cc
474
struct mtop mt;
usr.sbin/rmt/rmt.c
155
{ struct mtop mtop;
usr.sbin/rmt/rmt.c
156
mtop.mt_op = atoi(op);
usr.sbin/rmt/rmt.c
157
mtop.mt_count = atoi(count);
usr.sbin/rmt/rmt.c
158
if (ioctl(tape, MTIOCTOP, (char *)&mtop) < 0)
usr.sbin/rmt/rmt.c
160
rval = mtop.mt_count;