Searched refs:buf (Results 101 - 119 of 119) sorted by relevance

12345

/gem5/ext/systemc/src/sysc/datatypes/int/
H A Dsc_nbcommon.inc2493 CLASS_TYPE::get_packed_rep(sc_digit *buf) const
2497 // Initialize buf to zero.
2498 vec_zero(buf_ndigits, buf);
2517 // digit. Since buf doesn't have overflow bits, we cannot also do
2518 // it on buf. Thus, we have to do the complementation on a copy of
2524 buf[buf_ndigits - 1] = ~((sc_digit) 0);
2530 // Copy the bits from digit to buf. The division and mod operations
2539 buf[i / BITS_PER_DIGIT_TYPE] |=
2544 buf[i / BITS_PER_DIGIT_TYPE] &=
2557 CLASS_TYPE::set_packed_rep(sc_digit *buf)
[all...]
H A Dsc_signed.h1362 void get_packed_rep(sc_digit *buf) const;
1363 void set_packed_rep(sc_digit *buf);
H A Dsc_unsigned.h1263 void get_packed_rep(sc_digit *buf) const;
1264 void set_packed_rep(sc_digit *buf);
/gem5/src/systemc/dt/int/
H A Dsc_nbcommon.inc2164 CLASS_TYPE::get_packed_rep(sc_digit *buf) const
2167 // Initialize buf to zero.
2168 vec_zero(buf_ndigits, buf);
2185 // digit. Since buf doesn't have overflow bits, we cannot also do
2186 // it on buf. Thus, we have to do the complementation on a copy of
2191 buf[buf_ndigits - 1] = ~((sc_digit) 0);
2195 // Copy the bits from digit to buf. The division and mod operations
2204 buf[i / BITS_PER_DIGIT_TYPE] |=
2207 buf[i / BITS_PER_DIGIT_TYPE] &=
2220 CLASS_TYPE::set_packed_rep(sc_digit *buf)
[all...]
/gem5/src/arch/arm/insts/
H A Dstatic_inst.hh539 asBytes(void *buf, size_t max_size) override
541 return simpleAsBytes(buf, max_size, machInst);
/gem5/ext/pybind11/include/pybind11/
H A Dbuffer_info.h50 : buffer_info(view->buf, view->itemsize, view->format, view->ndim,
H A Dstl_bind.h386 cl.def(init([](buffer buf) {
387 auto info = buf.request();
H A Dnumpy.h1393 ndim = std::accumulate(buffers.begin(), buffers.end(), ssize_t(0), [](ssize_t res, const buffer_info &buf) {
1394 return std::max(res, buf.ndim);
/gem5/ext/pybind11/tests/
H A Dtest_numpy_dtypes.cpp462 m.def("buffer_to_dtype", [](py::buffer& buf) { return py::dtype(buf.request()); });
/gem5/src/arch/arm/freebsd/
H A Dprocess.cc107 BufferArg buf(namep, sizeof(size_t));
112 buf.copyIn(tc->getVirtProxy());
122 uint32_t *hnamep = (uint32_t *)buf.bufferPtr();
128 buf.copyOut(tc->getVirtProxy());
/gem5/src/sim/
H A Dsyscall_emul.hh359 BufferArg buf(uaddr, sizeof(int));
360 buf.copyIn(tc->getVirtProxy());
361 int mem_val = *(int*)buf.bufferPtr();
386 BufferArg buf(uaddr, sizeof(int));
387 buf.copyIn(tc->getVirtProxy());
388 int mem_val = *(int*)buf.bufferPtr();
419 BufferArg buf(uaddr2, sizeof(int));
420 buf.copyIn(tc->getVirtProxy());
421 int oldval = *(int*)buf.bufferPtr();
443 *(int*)buf
[all...]
/gem5/src/python/m5/ext/pyfdt/
H A Dpyfdt.py853 def FdtJsonParse(buf):
858 tree = json.loads(buf)
/gem5/ext/systemc/src/sysc/datatypes/fx/
H A Dscfx_rep.cpp2789 char buf[BUFSIZ];
2790 std::sprintf( buf, " %d: %10u (%8x)", i, (int) m_mant[i], (int) m_mant[i] );
2791 os << buf << ::std::endl;
/gem5/src/systemc/dt/fx/
H A Dscfx_rep.cc2533 char buf[BUFSIZ];
2534 std::sprintf(buf, " %d: %10u (%8x)", i,
2536 os << buf << ::std::endl;
/gem5/ext/pybind11/include/pybind11/detail/
H A Dclass.h483 view->buf = info->ptr;
/gem5/src/dev/net/
H A Di8254xGBe_defs.hh194 Addr buf; member in struct:iGbReg::RxDesc::__anon1::__anon2
H A Di8254xGBe.cc1250 igbe->dmaWrite(pciToDma(desc->legacy.buf),
/gem5/src/systemc/ext/dt/int/
H A Dsc_signed.hh1258 void get_packed_rep(sc_digit *buf) const;
1259 void set_packed_rep(sc_digit *buf);
H A Dsc_unsigned.hh1163 void get_packed_rep(sc_digit *buf) const;
1164 void set_packed_rep(sc_digit *buf);

Completed in 103 milliseconds

12345