Home
last modified time | relevance | path

Searched refs:mop (Results 1 – 25 of 33) sorted by relevance

12

/netbsd-src/tests/crypto/opencrypto/
H A Dh_ioctl.c153 struct crypt_mop mop; in test_ncryptm() local
166 memset(&mop, 0, sizeof(mop)); in test_ncryptm()
167 mop.count = COUNT; in test_ncryptm()
168 mop.reqs = css; in test_ncryptm()
170 ret = ioctl(fd, CIOCNCRYPTM, &mop); in test_ncryptm()
187 struct crypt_mop mop; in test_ncryptretm() local
215 memset(&mop, 0, sizeof(mop)); in test_ncryptretm()
216 mop.count = COUNT; in test_ncryptretm()
217 mop.reqs = cnos; in test_ncryptretm()
218 ret = ioctl(fd, CIOCNCRYPTM, &mop); in test_ncryptretm()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/tsan/
H A Dtsan_report.cpp146 static void PrintMop(const ReportMop *mop, bool first) { in PrintMop() argument
150 if (mop->external_tag == kExternalTagNone) { in PrintMop()
152 MopDesc(first, mop->write, mop->atomic), mop->size, in PrintMop()
153 (void *)mop->addr, thread_name(thrbuf, mop->tid)); in PrintMop()
155 const char *object_type = GetObjectTypeFromTag(mop->external_tag); in PrintMop()
159 ExternalMopDesc(first, mop->write), object_type, in PrintMop()
160 (void *)mop->addr, thread_name(thrbuf, mop->tid)); in PrintMop()
162 PrintMutexSet(mop->mset); in PrintMop()
165 PrintStack(mop->stack); in PrintMop()
402 static void PrintMop(const ReportMop *mop, bool first) { in PrintMop() argument
[all …]
H A Dtsan_debugging.cpp113 ReportMop *mop = rep->mops[idx]; in __tsan_get_report_mop() local
114 *tid = mop->tid; in __tsan_get_report_mop()
115 *addr = (void *)mop->addr; in __tsan_get_report_mop()
116 *size = mop->size; in __tsan_get_report_mop()
117 *write = mop->write ? 1 : 0; in __tsan_get_report_mop()
118 *atomic = mop->atomic ? 1 : 0; in __tsan_get_report_mop()
119 if (mop->stack) CopyTrace(mop->stack->frames, trace, trace_size); in __tsan_get_report_mop()
H A Dtsan_rtl_report.cpp179 auto *mop = New<ReportMop>(); in AddMemoryAccess() local
180 rep_->mops.PushBack(mop); in AddMemoryAccess()
181 mop->tid = s.tid(); in AddMemoryAccess()
182 mop->addr = addr + s.addr0(); in AddMemoryAccess()
183 mop->size = s.size(); in AddMemoryAccess()
184 mop->write = s.IsWrite(); in AddMemoryAccess()
185 mop->atomic = s.IsAtomic(); in AddMemoryAccess()
186 mop->stack = SymbolizeStack(stack); in AddMemoryAccess()
187 mop->external_tag = external_tag; in AddMemoryAccess()
188 if (mop->stack) in AddMemoryAccess()
[all …]
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
H A Dtsan_report.cc159 static void PrintMop(const ReportMop *mop, bool first) { in PrintMop() argument
163 if (mop->external_tag == kExternalTagNone) { in PrintMop()
165 MopDesc(first, mop->write, mop->atomic), mop->size, in PrintMop()
166 (void *)mop->addr, thread_name(thrbuf, mop->tid)); in PrintMop()
168 const char *object_type = GetObjectTypeFromTag(mop->external_tag); in PrintMop()
172 ExternalMopDesc(first, mop->write), object_type, in PrintMop()
173 (void *)mop->addr, thread_name(thrbuf, mop->tid)); in PrintMop()
175 PrintMutexSet(mop->mset); in PrintMop()
178 PrintStack(mop->stack); in PrintMop()
409 static void PrintMop(const ReportMop *mop, bool first) { in PrintMop() argument
[all …]
H A Dtsan_debugging.cc108 ReportMop *mop = rep->mops[idx]; in __tsan_get_report_mop() local
109 *tid = mop->tid; in __tsan_get_report_mop()
110 *addr = (void *)mop->addr; in __tsan_get_report_mop()
111 *size = mop->size; in __tsan_get_report_mop()
112 *write = mop->write ? 1 : 0; in __tsan_get_report_mop()
113 *atomic = mop->atomic ? 1 : 0; in __tsan_get_report_mop()
114 if (mop->stack) CopyTrace(mop->stack->frames, trace, trace_size); in __tsan_get_report_mop()
H A Dtsan_rtl_report.cc169 ReportMop *mop = new(mem) ReportMop; in AddMemoryAccess() local
170 rep_->mops.PushBack(mop); in AddMemoryAccess()
171 mop->tid = s.tid(); in AddMemoryAccess()
172 mop->addr = addr + s.addr0(); in AddMemoryAccess()
173 mop->size = s.size(); in AddMemoryAccess()
174 mop->write = s.IsWrite(); in AddMemoryAccess()
175 mop->atomic = s.IsAtomic(); in AddMemoryAccess()
176 mop->stack = SymbolizeStack(stack); in AddMemoryAccess()
177 mop->external_tag = external_tag; in AddMemoryAccess()
178 if (mop->stack) in AddMemoryAccess()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
H A Dtsan_report.cc157 static void PrintMop(const ReportMop *mop, bool first) { in PrintMop() argument
161 if (mop->external_tag == kExternalTagNone) { in PrintMop()
163 MopDesc(first, mop->write, mop->atomic), mop->size, in PrintMop()
164 (void *)mop->addr, thread_name(thrbuf, mop->tid)); in PrintMop()
166 const char *object_type = GetObjectTypeFromTag(mop->external_tag); in PrintMop()
170 ExternalMopDesc(first, mop->write), object_type, in PrintMop()
171 (void *)mop->addr, thread_name(thrbuf, mop->tid)); in PrintMop()
173 PrintMutexSet(mop->mset); in PrintMop()
176 PrintStack(mop->stack); in PrintMop()
407 static void PrintMop(const ReportMop *mop, bool first) { in PrintMop() argument
[all …]
H A Dtsan_debugging.cc106 ReportMop *mop = rep->mops[idx]; in __tsan_get_report_mop() local
107 *tid = mop->tid; in __tsan_get_report_mop()
108 *addr = (void *)mop->addr; in __tsan_get_report_mop()
109 *size = mop->size; in __tsan_get_report_mop()
110 *write = mop->write ? 1 : 0; in __tsan_get_report_mop()
111 *atomic = mop->atomic ? 1 : 0; in __tsan_get_report_mop()
112 if (mop->stack) CopyTrace(mop->stack->frames, trace, trace_size); in __tsan_get_report_mop()
H A Dtsan_rtl_report.cc167 ReportMop *mop = new(mem) ReportMop; in AddMemoryAccess() local
168 rep_->mops.PushBack(mop); in AddMemoryAccess()
169 mop->tid = s.tid(); in AddMemoryAccess()
170 mop->addr = addr + s.addr0(); in AddMemoryAccess()
171 mop->size = s.size(); in AddMemoryAccess()
172 mop->write = s.IsWrite(); in AddMemoryAccess()
173 mop->atomic = s.IsAtomic(); in AddMemoryAccess()
174 mop->stack = SymbolizeStack(stack); in AddMemoryAccess()
175 mop->external_tag = external_tag; in AddMemoryAccess()
176 if (mop->stack) in AddMemoryAccess()
[all …]
/netbsd-src/external/gpl3/binutils/dist/gas/config/
H A Dtc-s390.c2402 unsigned short mop; in md_apply_fix() local
2407 mop = bfd_getb16 ((unsigned char *) where); in md_apply_fix()
2408 mop |= (unsigned short) (value & 0xfff); in md_apply_fix()
2409 bfd_putb16 ((bfd_vma) mop, (unsigned char *) where); in md_apply_fix()
2418 unsigned int mop; in md_apply_fix() local
2419 mop = bfd_getb32 ((unsigned char *) where); in md_apply_fix()
2420 mop |= (unsigned int) ((value & 0xfff) << 8 | in md_apply_fix()
2422 bfd_putb32 ((bfd_vma) mop, (unsigned char *) where); in md_apply_fix()
2459 unsigned int mop; in md_apply_fix() local
2462 mop = bfd_getb32 ((unsigned char *) where - 1); in md_apply_fix()
[all …]
/netbsd-src/external/gpl3/binutils.old/dist/gas/config/
H A Dtc-s390.c2401 unsigned short mop; in md_apply_fix() local
2406 mop = bfd_getb16 ((unsigned char *) where); in md_apply_fix()
2407 mop |= (unsigned short) (value & 0xfff); in md_apply_fix()
2408 bfd_putb16 ((bfd_vma) mop, (unsigned char *) where); in md_apply_fix()
2417 unsigned int mop; in md_apply_fix() local
2418 mop = bfd_getb32 ((unsigned char *) where); in md_apply_fix()
2419 mop |= (unsigned int) ((value & 0xfff) << 8 | in md_apply_fix()
2421 bfd_putb32 ((bfd_vma) mop, (unsigned char *) where); in md_apply_fix()
2458 unsigned int mop; in md_apply_fix() local
2461 mop = bfd_getb32 ((unsigned char *) where - 1); in md_apply_fix()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/
H A DRISCVInstrFormatsV.td261 class RVInstVLX<bits<3> nf, bit mew, RISCVMOP mop, bits<3> width,
271 let Inst{27-26} = mop.Value;
325 class RVInstVSX<bits<3> nf, bit mew, RISCVMOP mop, bits<3> width,
335 let Inst{27-26} = mop.Value;
H A DRISCVInstrInfoV.td109 class VIndexedLoad<RISCVMOP mop, RISCVWidth width, string opcodestr>
110 : RVInstVLX<0b000, width.Value{3}, mop, width.Value{2-0},
140 class VIndexedSegmentLoad<bits<3> nf, RISCVMOP mop, RISCVWidth width,
142 : RVInstVLX<nf, width.Value{3}, mop, width.Value{2-0},
171 class VIndexedStore<RISCVMOP mop, RISCVWidth width, string opcodestr>
172 : RVInstVSX<0b000, width.Value{3}, mop, width.Value{2-0}, (outs),
198 class VIndexedSegmentStore<bits<3> nf, RISCVMOP mop, RISCVWidth width,
200 : RVInstVSX<nf, width.Value{3}, mop, width.Value{2-0}, (outs),
/netbsd-src/external/gpl3/gcc/dist/gcc/config/bpf/
H A Dbpf.md78 (define_mode_attr mop [(QI "b") (HI "h") (SI "w") (DI "dw")
309 ldx<mop>\t%0,%1
312 stx<mop>\t%0,%1
313 st<mop>\t%0,%1"
527 "xadd<mop>\t%0,%1"
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/bpf/
H A Dbpf.md78 (define_mode_attr mop [(QI "b") (HI "h") (SI "w") (DI "dw")
307 ldx<mop>\t%0,%1
310 stx<mop>\t%0,%1
311 st<mop>\t%0,%1"
521 "xadd<mop>\t%0,%1"
/netbsd-src/sys/opencrypto/
H A Dcryptodev.c231 struct crypt_mop *mop; in cryptof_ioctl() local
358 mop = (struct crypt_mop *)data; in cryptof_ioctl()
359 if (mop->count <= 0 in cryptof_ioctl()
360 || SIZE_MAX / sizeof(struct crypt_n_op) <= mop->count) { in cryptof_ioctl()
364 cnop = kmem_alloc((mop->count * sizeof(struct crypt_n_op)), in cryptof_ioctl()
366 error = copyin(mop->reqs, cnop, in cryptof_ioctl()
367 (mop->count * sizeof(struct crypt_n_op))); in cryptof_ioctl()
369 error = cryptodev_mop(fcr, cnop, mop->count, curlwp); in cryptof_ioctl()
371 error = copyout(cnop, mop->reqs, in cryptof_ioctl()
372 (mop->count * sizeof(struct crypt_n_op))); in cryptof_ioctl()
[all …]
/netbsd-src/sys/net/
H A Dppp-deflate.c462 z_decompress(void *arg, struct mbuf *mi, struct mbuf **mop) in z_decompress() argument
471 *mop = NULL; in z_decompress()
600 *mop = mo_head; in z_decompress()
/netbsd-src/external/bsd/openldap/dist/servers/slapd/
H A Dmodify.c1029 ber_int_t mop; in slap_parse_modlist() local
1034 if ( ber_scanf( ber, "{e{m[W]}}", &mop, in slap_parse_modlist()
1043 mod->sml_op = mop; in slap_parse_modlist()
1052 switch( mop ) { in slap_parse_modlist()
H A Dvalue.c427 int mop ) in ordered_value_validate() argument
453 if ( mop == LDAP_MOD_DELETE && BER_BVISEMPTY( &bv ) ) { in ordered_value_validate()
/netbsd-src/external/bsd/openldap/dist/libraries/liblmdb/
H A Dmdb.c2168 pgno_t pgno, *mop = env->me_pghead; in mdb_page_alloc() local
2169 unsigned i, j, mop_len = mop ? mop[0] : 0, n2 = num-1; in mdb_page_alloc()
2206 pgno = mop[i]; in mdb_page_alloc()
2207 if (mop[i-n2] == pgno+n2) in mdb_page_alloc()
2264 if (!mop) { in mdb_page_alloc()
2265 if (!(env->me_pghead = mop = mdb_midl_alloc(i))) { in mdb_page_alloc()
2272 mop = env->me_pghead; in mdb_page_alloc()
2282 mdb_midl_xmerge(mop, idl); in mdb_page_alloc()
2283 mop_len = mop[0]; in mdb_page_alloc()
2305 mop[0] = mop_len -= num; in mdb_page_alloc()
[all …]
/netbsd-src/sys/arch/sparc64/sparc64/
H A Dcopy.S1100 ! mop up trailing word (if present) and byte (if present).
1102 be Lkcopy_mopb ! no word, go mop up byte
1116 ! mop up trailing byte (if present).
/netbsd-src/external/gpl3/binutils.old/dist/opcodes/
H A Dsparc-opc.c1455 #define fmovrs(mop, mask, flags) /* v9 */ \ argument
1456 …fmrrs(mop, F3(2, 0x35, 0)|OPF_LOW5(5)|RCOND(mask), F3(~2, ~0x35, 0)|OPF_LOW5(~5)|RCOND(~(mask)), (…
1457 #define fmovrd(mop, mask, flags) /* v9 */ \ argument
1458 …fmrrd(mop, F3(2, 0x35, 0)|OPF_LOW5(6)|RCOND(mask), F3(~2, ~0x35, 0)|OPF_LOW5(~6)|RCOND(~(mask)), (…
1459 #define fmovrq(mop, mask, flags) /* v9 */ \ argument
1460 …fmrrq(mop, F3(2, 0x35, 0)|OPF_LOW5(7)|RCOND(mask), F3(~2, ~0x35, 0)|OPF_LOW5(~7)|RCOND(~(mask)), (…
/netbsd-src/external/gpl3/binutils/dist/opcodes/
H A Dsparc-opc.c1455 #define fmovrs(mop, mask, flags) /* v9 */ \ argument
1456 …fmrrs(mop, F3(2, 0x35, 0)|OPF_LOW5(5)|RCOND(mask), F3(~2, ~0x35, 0)|OPF_LOW5(~5)|RCOND(~(mask)), (…
1457 #define fmovrd(mop, mask, flags) /* v9 */ \ argument
1458 …fmrrd(mop, F3(2, 0x35, 0)|OPF_LOW5(6)|RCOND(mask), F3(~2, ~0x35, 0)|OPF_LOW5(~6)|RCOND(~(mask)), (…
1459 #define fmovrq(mop, mask, flags) /* v9 */ \ argument
1460 …fmrrq(mop, F3(2, 0x35, 0)|OPF_LOW5(7)|RCOND(mask), F3(~2, ~0x35, 0)|OPF_LOW5(~7)|RCOND(~(mask)), (…
/netbsd-src/sys/arch/sparc/sparc/
H A Dlocore.s5418 ! mop up trailing word (if present) and byte (if present).
5420 be Lbcopy_mopb ! no word, go mop up byte
5430 ! mop up trailing byte (if present).
5601 ! mop up trailing word (if present) and byte (if present).
5603 be Lkcopy_mopb ! no word, go mop up byte
5615 ! mop up trailing byte (if present).

12