Searched refs:mtop (Results 1 - 25 of 35) sorted by relevance

12

/netbsd-current/crypto/external/bsd/openssl.old/dist/crypto/bn/
H A Dbn_mod.c51 size_t i, ai, bi, mtop = m->top; local
56 if (bn_wexpand(r, mtop) == NULL)
59 if (mtop > sizeof(storage) / sizeof(storage[0])
60 && (tp = OPENSSL_malloc(mtop * sizeof(BN_ULONG))) == NULL)
66 for (i = 0, ai = 0, bi = 0, carry = 0; i < mtop;) {
80 carry -= bn_sub_words(rp, tp, m->d, mtop);
81 for (i = 0; i < mtop; i++) {
85 r->top = mtop;
131 size_t i, ai, bi, mtop = m->top; local
135 if (bn_wexpand(r, mtop)
[all...]
/netbsd-current/crypto/external/bsd/openssl/dist/crypto/bn/
H A Dbn_mod.c51 size_t i, ai, bi, mtop = m->top; local
56 if (bn_wexpand(r, mtop) == NULL)
59 if (mtop > sizeof(storage) / sizeof(storage[0])) {
60 tp = OPENSSL_malloc(mtop * sizeof(BN_ULONG));
70 for (i = 0, ai = 0, bi = 0, carry = 0; i < mtop;) {
84 carry -= bn_sub_words(rp, tp, m->d, mtop);
85 for (i = 0; i < mtop; i++) {
89 r->top = mtop;
135 size_t i, ai, bi, mtop = m->top; local
139 if (bn_wexpand(r, mtop)
[all...]
/netbsd-current/sys/sys/
H A Dmtio.h44 struct mtop { struct
137 #define MTIOCTOP _IOW('m', 1, struct mtop) /* do a mag tape op */
/netbsd-current/usr.sbin/rmt/
H A Drmt.c167 struct mtop mtop; local
169 mtop.mt_op = atoi(op);
170 mtop.mt_count = atoi(count);
171 if (ioctl(tape, MTIOCTOP, (char *)&mtop) < 0)
173 rval = mtop.mt_count;
/netbsd-current/sys/dev/mscp/
H A Dmscp_tape.c421 struct mtop *mtop; local
427 mtop = (void *)data;
428 if (mtop->mt_op == MTWEOF) {
429 while (mtop->mt_count-- > 0)
430 if ((error = mtcmd(mt, mtop->mt_op, 0, 0)))
433 error = mtcmd(mt, mtop->mt_op, mtop->mt_count, 0);
/netbsd-current/sys/dev/qbus/
H A Dts.c944 struct mtop *mtop; /* mag tape cmd op to perform */ local
959 mtop = (struct mtop *)data;
960 switch (mtop->mt_op) {
962 callcount = mtop->mt_count;
971 scount = mtop->mt_count;
987 printf("ioctl %d not implemented.\n", mtop->mt_op);
991 printf("invalid ioctl %d\n", mtop->mt_op);
994 } /* switch (mtop
[all...]
/netbsd-current/bin/dd/
H A Dposition.c130 struct mtop t_op;
/netbsd-current/sys/compat/linux/common/
H A Dlinux_mtio.c83 struct mtop mt;
/netbsd-current/lib/librmt/
H A Drmtlib.c498 struct mtop *mtop = arg; local
508 mtop->mt_op, mtop->mt_count);
/netbsd-current/sys/net/
H A Dif_ethersubr.c483 struct mbuf *mtop = m; local
488 KASSERT((mtop->m_flags & M_PKTHDR) != 0);
554 mtop->m_pkthdr.pattr_class =
557 mtop->m_pkthdr.pattr_af = af;
558 mtop->m_pkthdr.pattr_hdr = hdr;
566 mtop->m_pkthdr.pattr_class = NULL;
567 mtop->m_pkthdr.pattr_hdr = NULL;
568 mtop->m_pkthdr.pattr_af = AF_UNSPEC;
/netbsd-current/usr.bin/tcopy/
H A Dtcopy.c318 struct mtop op;
/netbsd-current/bin/mt/
H A Dmt.c118 struct mtop mt_com;
/netbsd-current/usr.bin/eject/
H A Deject.c372 struct mtop m;
/netbsd-current/external/lgpl3/gmp/dist/mpn/x86_64/coreibwl/
H A Dmullo_basecase.asm199 L(mtop):mov %r10, -8(rp)
226 jnz L(mtop)
/netbsd-current/external/lgpl3/gmp/dist/mpn/x86_64/zen/
H A Dmullo_basecase.asm167 L(mtop):jrcxz L(mend)
181 jmp L(mtop)
H A Dmul_basecase.asm161 L(mtop):jrcxz L(mend)
175 jmp L(mtop)
H A Dsqr_basecase.asm204 L(mtop):jrcxz L(mend)
218 jmp L(mtop)
/netbsd-current/bin/pax/
H A Dar_io.c950 struct mtop mb;
1119 struct mtop mb;
1268 struct mtop mb;
/netbsd-current/external/lgpl3/gmp/dist/mpn/x86_64/coreihwl/
H A Dsqr_basecase.asm229 L(mtop):mulx( v1, %rax, w0)
272 jnz L(mtop)
/netbsd-current/sys/dev/gpib/
H A Dct.c858 struct mtop *op;
864 op = (struct mtop *)data;
H A Dmt.c987 struct mtop *op;
992 op = (struct mtop *)data;
/netbsd-current/sys/dev/isa/
H A Dwt.c502 * ioctl(int fd, MTIOCTOP, struct mtop *buf) -- do BSD-like op
558 switch ((short)((struct mtop*)addr)->mt_op) {
579 for (count = ((struct mtop*)addr)->mt_count; count > 0;
/netbsd-current/sys/arch/hp300/dev/
H A Dmt.c950 struct mtop *op;
955 op = (struct mtop *)data;
H A Dct.c901 struct mtop *op;
907 op = (struct mtop *)data;
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
H A Dsanitizer_platform_limits_freebsd.cc183 unsigned struct_mtop_sz = sizeof(struct mtop);

Completed in 215 milliseconds

12