| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/ |
| H A D | PPCInstr64Bit.td | 1466 def : Pat<(pre_truncsti8 i64:$rS, iPTR:$ptrreg, iaddroff:$ptroff), 1467 (STBU8 $rS, iaddroff:$ptroff, $ptrreg)>; 1468 def : Pat<(pre_truncsti16 i64:$rS, iPTR:$ptrreg, iaddroff:$ptroff), 1469 (STHU8 $rS, iaddroff:$ptroff, $ptrreg)>; 1470 def : Pat<(pre_truncsti32 i64:$rS, iPTR:$ptrreg, iaddroff:$ptroff), 1471 (STWU8 $rS, iaddroff:$ptroff, $ptrreg)>; 1472 def : Pat<(DSFormPreStore i64:$rS, iPTR:$ptrreg, iaddroff:$ptroff), 1473 (STDU $rS, iaddroff:$ptroff, $ptrreg)>; 1475 def : Pat<(pre_truncsti8 i64:$rS, iPTR:$ptrreg, iPTR:$ptroff), 1476 (STBUX8 $rS, $ptrreg, $ptroff)>; [all …]
|
| H A D | PPCInstrInfo.td | 2425 def : Pat<(pre_truncsti8 i32:$rS, iPTR:$ptrreg, iaddroff:$ptroff), 2426 (STBU $rS, iaddroff:$ptroff, $ptrreg)>; 2427 def : Pat<(pre_truncsti16 i32:$rS, iPTR:$ptrreg, iaddroff:$ptroff), 2428 (STHU $rS, iaddroff:$ptroff, $ptrreg)>; 2429 def : Pat<(pre_store i32:$rS, iPTR:$ptrreg, iaddroff:$ptroff), 2430 (STWU $rS, iaddroff:$ptroff, $ptrreg)>; 2431 def : Pat<(pre_store f32:$rS, iPTR:$ptrreg, iaddroff:$ptroff), 2432 (STFSU $rS, iaddroff:$ptroff, $ptrreg)>; 2433 def : Pat<(pre_store f64:$rS, iPTR:$ptrreg, iaddroff:$ptroff), 2434 (STFDU $rS, iaddroff:$ptroff, $ptrreg)>; [all …]
|
| /netbsd-src/sys/dev/usb/ |
| H A D | if_umb.c | 1931 int ptrlen, ptroff, dgentryoff; in umb_decap() local 1954 ptroff = UGETW(hdr16->wNdpIndex); in umb_decap() 1964 ptroff = UGETDW(hdr32->dwNdpIndex); in umb_decap() 1982 ptr16 = (struct ncm_pointer16 *)(buf + ptroff); in umb_decap() 1985 if (len < ptrlen + ptroff) in umb_decap() 2007 if (ptroff + dgentryoff < sizeof(*dgram16)) in umb_decap() 2010 (buf + ptroff + dgentryoff); in umb_decap() 2016 if (ptroff + dgentryoff < sizeof(*dgram32)) in umb_decap() 2019 (buf + ptroff + dgentryoff); in umb_decap()
|
| /netbsd-src/external/cddl/osnet/dist/tools/ctf/cvt/ |
| H A D | ctf.c | 98 off_t ptroff = b->ctb_ptr - b->ctb_base; in ctf_buf_grow() local 103 b->ctb_ptr = b->ctb_base + ptroff; in ctf_buf_grow() 558 off_t ptroff = (caddr_t)rb->rb_zstr.next_out - rb->rb_base; in rbzs_grow() local 562 rb->rb_ptr = rb->rb_base + ptroff; in rbzs_grow()
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
| H A D | traits.c | 377 d_uns64 ptroff = off / sz_size_t; in pointerBitmap() local 378 (*data)[(size_t)(ptroff / (8 * sz_size_t))] |= 1LL << (ptroff % (8 * sz_size_t)); in pointerBitmap()
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/ |
| H A D | traits.d | 207 ulong ptroff = off / sz_size_t; in setpointer() local 208 (*data)[cast(size_t)(ptroff / (8 * sz_size_t))] |= 1L << (ptroff % (8 * sz_size_t)); in setpointer()
|
| /netbsd-src/usr.bin/spell/spell/ |
| H A D | special.netbsd | 936 ptroff
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/ |
| H A D | tree-ssa-sccvn.c | 1346 tree ptr, ptroff; in vn_reference_maybe_forwprop_address() local 1348 ptroff = gimple_assign_rhs2 (def_stmt); in vn_reference_maybe_forwprop_address() 1355 || !poly_int_tree_p (ptroff)) in vn_reference_maybe_forwprop_address() 1358 off += wi::to_poly_offset (ptroff); in vn_reference_maybe_forwprop_address()
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/ |
| H A D | tree-ssa-sccvn.cc | 1422 tree ptr, ptroff; in vn_reference_maybe_forwprop_address() local 1424 ptroff = gimple_assign_rhs2 (def_stmt); in vn_reference_maybe_forwprop_address() 1431 || !poly_int_tree_p (ptroff)) in vn_reference_maybe_forwprop_address() 1434 off += wi::to_poly_offset (ptroff); in vn_reference_maybe_forwprop_address()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/docs/ |
| H A D | CodeGenerator.rst | 1094 def : Pat<(pre_store GPRC:$rS, ptr_rc:$ptrreg, iaddroff:$ptroff), 1095 (STWU GPRC:$rS, iaddroff:$ptroff, ptr_rc:$ptrreg)>; 1097 Here, the pair of ``ptroff`` and ``ptrreg`` operands is matched onto the
|