Home
last modified time | relevance | path

Searched refs:buffers (Results 1 – 25 of 81) sorted by relevance

1234

/openbmc/obmc-ikvm/
H A Dikvm_video.cpp48 return (char*)buffers[lastFrameIndex].data; in getData()
91 buffers[buf.index].queued = false; in getFrame()
96 buffers[lastFrameIndex].payload = buf.bytesused; in getFrame()
101 buffers[buf.index].payload = 0; in getFrame()
109 for (unsigned int i = 0; i < buffers.size(); ++i) in getFrame()
116 if (!buffers[i].queued) in getFrame()
131 buffers[i].queued = true; in getFrame()
212 for (i = 0; i < buffers.size(); ++i) in resize()
214 if (buffers[i].data) in resize()
236 for (i = 0; i < buffers.size(); ++i) in resize()
[all …]
H A Dikvm_video.hpp76 return buffers[lastFrameIndex].payload; in getFrameSize()
175 std::vector<Buffer> buffers; member in ikvm::Video
/openbmc/openbmc/meta-openembedded/meta-multimedia/recipes-multimedia/fluidsynth/fluidsynth/
H A D0002-fluid_synth_nwrite_float-Allow-zero-pointer-for-left.patch11 buffers to avoid useless copying of data. On weak machines this leads to measurable
31 - * @param left Array of float buffers to store left channel of planar audio (as many as \c synth.a…
32 - * @param right Array of float buffers to store right channel of planar audio (size: dito)
33 ….7: If not \c NULL, array of float buffers to store left effect channels (as many as \c synth.effe…
34 - * @param fx_right Since 1.1.7: If not \c NULL, array of float buffers to store right effect chann…
35 + * @param left Array of float buffers to store left channel of planar audio (as many as \c synth.a…
36 + * @param right Array of float buffers to store right channel of planar audio (size: dito). Since …
37 ….7: If not \c NULL, array of float buffers to store left effect channels (as many as \c synth.effe…
38 + * @param fx_right Since 1.1.7: If not \c NULL, array of float buffers to store right effect chann…
/openbmc/openbmc/poky/meta/recipes-graphics/piglit/piglit/
H A D0001-tests-Fix-narrowing-errors-seen-with-clang.patch13 .../spec/ext_framebuffer_multisample/draw-buffers-common.cpp | 4 ++--
17 …s/spec/ext_framebuffer_multisample/draw-buffers-common.cpp b/tests/spec/ext_framebuffer_multisampl…
19 --- a/tests/spec/ext_framebuffer_multisample/draw-buffers-common.cpp
20 +++ b/tests/spec/ext_framebuffer_multisample/draw-buffers-common.cpp
/openbmc/openbmc/meta-openembedded/meta-perl/recipes-perl/libio/
H A Dlibio-compress-lzma-perl_2.213.bb1 SUMMARY = "Perl interface to allow reading and writing of lzma files/buffers."
3 writing of lzma files/buffers."
/openbmc/u-boot/include/fsl-mc/
H A Dfsl_qbman_portal.h166 const uint64_t *buffers, unsigned int num_buffers);
172 int qbman_swp_acquire(struct qbman_swp *, uint32_t bpid, uint64_t *buffers,
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/directfb/directfb/
H A Duse-PTHREAD_MUTEX_RECURSIVE.patch25 static DirectLink *buffers;
45 direct_list_append( &buffers, &buffer->link );
85 direct_list_remove( &buffers, &buffer->link );
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/ncp/libowfat/
H A D0001-replace-__pure__-with-compiler-attribute-pure.patch252 /* Google Protocol Buffers, https://developers.google.com/protocol-buffers/docs/encoding */
253 -size_t fmt_varint(char* dest,unsigned long long l) __pure__; /* protocol buffers encoding; like as…
255 -size_t fmt_pb_type0_int(char* dest,unsigned long long l) __pure__; /* protocol buffers encoding: t…
256 -size_t fmt_pb_type0_sint(char* dest,signed long long l) __pure__;/* protocol buffers encoding: typ…
257 -size_t fmt_pb_type1_double(char* dest,double d) __pure__; /* protocol buffers encoding: double (64…
258 -size_t fmt_pb_type1_fixed64(char* dest,uint64_t l) __pure__; /* protocol buffers encoding: 64-bit …
259 +size_t fmt_varint(char* dest,unsigned long long l) __PURE; /* protocol buffers encoding; like asn1…
261 +size_t fmt_pb_type0_int(char* dest,unsigned long long l) __PURE; /* protocol buffers encoding: typ…
262 +size_t fmt_pb_type0_sint(char* dest,signed long long l) __PURE;/* protocol buffers encoding: type …
263 +size_t fmt_pb_type1_double(char* dest,double d) __PURE; /* protocol buffers encoding: double (64-b…
[all …]
/openbmc/u-boot/drivers/mtd/nand/raw/
H A Dmxs_nand_spl.c199 nand_chip.buffers = memalign(ARCH_DMA_MINALIGN, in nand_init()
200 sizeof(*nand_chip.buffers)); in nand_init()
201 nand_chip.oob_poi = nand_chip.buffers->databuf + mtd->writesize; in nand_init()
H A Dnand_base.c1288 uint8_t *ecc_calc = chip->buffers->ecccalc; in nand_read_page_swecc()
1289 uint8_t *ecc_code = chip->buffers->ecccode; in nand_read_page_swecc()
1360 chip->ecc.calculate(mtd, p, &chip->buffers->ecccalc[i]); in nand_read_subpage()
1393 chip->buffers->ecccode[i] = chip->oob_poi[eccpos[i + index]]; in nand_read_subpage()
1400 &chip->buffers->ecccode[i], &chip->buffers->ecccalc[i]); in nand_read_subpage()
1405 &chip->buffers->ecccode[i], in nand_read_subpage()
1438 uint8_t *ecc_calc = chip->buffers->ecccalc; in nand_read_page_hwecc()
1439 uint8_t *ecc_code = chip->buffers->ecccode; in nand_read_page_hwecc()
1500 uint8_t *ecc_code = chip->buffers->ecccode; in nand_read_page_hwecc_oob_first()
1502 uint8_t *ecc_calc = chip->buffers->ecccalc; in nand_read_page_hwecc_oob_first()
[all …]
H A Dzynq_nand.c566 u8 *ecc_calc = chip->buffers->ecccalc; in zynq_nand_write_page_hwecc()
626 u8 *ecc_calc = chip->buffers->ecccalc; in zynq_nand_write_page_swecc()
659 u8 *ecc_calc = chip->buffers->ecccalc; in zynq_nand_read_page_hwecc()
660 u8 *ecc_code = chip->buffers->ecccode; in zynq_nand_read_page_hwecc()
732 u8 *ecc_calc = chip->buffers->ecccalc; in zynq_nand_read_page_swecc()
733 u8 *ecc_code = chip->buffers->ecccode; in zynq_nand_read_page_swecc()
H A Dlpc32xx_nand_slc.c418 uint8_t *ecc_calc = chip->buffers->ecccalc; in lpc32xx_read_page_hwecc()
419 uint8_t *ecc_code = chip->buffers->ecccode; in lpc32xx_read_page_hwecc()
456 uint8_t *ecc_calc = chip->buffers->ecccalc; in lpc32xx_write_page_hwecc()
/openbmc/bmcweb/http/
H A Dhttp_body.hpp307 std::size_t put(const ConstBufferSequence& buffers, in put() argument
310 size_t extra = boost::beast::buffer_bytes(buffers); in put()
311 for (const auto b : boost::beast::buffers_range_ref(buffers)) in put()
/openbmc/openbmc/meta-arm/meta-arm-bsp/recipes-bsp/u-boot/u-boot/corstone1000/
H A D0004-FF-A-v15-arm_ffa-introduce-Arm-FF-A-support.patch233 + - mapping the RX/TX buffers
245 +The RX/TX buffers are only available at EFI boot-time. Querying partitions is
248 +RX/TX buffers should be unmapped before EFI runtime mode starts.
251 +The user should call ffa_rxtx_unmap() to unmap the RX/TX buffers when required
254 +The Linux kernel allocates its own RX/TX buffers. To be able to register these kernel buffers
255 +with secure world, the U-Boot's RX/TX buffers should be unmapped before EFI runtime starts.
700 + * ffa_set_rxtx_buffers_pages_cnt() - set the minimum number of pages in each of the RX/TX buffers
704 + * Set the minimum number of pages in each of the RX/TX buffers in uc_priv
763 + * ffa_free_rxtx_buffers() - free the RX/TX buffers
766 + * Free the RX/TX buffers
[all …]
/openbmc/openbmc/meta-raspberrypi/recipes-graphics/userland/files/
H A D0006-zero-out-wl-buffers-in-egl_surface_free.patch4 Subject: [PATCH] zero-out wl buffers in egl_surface_free
H A D0007-initialize-front-back-wayland-buffers.patch4 Subject: [PATCH] initialize front back wayland buffers
/openbmc/openbmc/meta-openembedded/meta-perl/recipes-perl/libcompress/
H A Dlibcompress-raw-lzma-perl_2.213.bb3 wrting of lzma, lzip and xz files/buffers."
/openbmc/u-boot/arch/mips/dts/
H A Dnexys4ddr.dts31 xlnx,include-global-buffers = <0x1>;
/openbmc/u-boot/drivers/net/fsl-mc/dpio/
H A Dqbman_portal.c544 const uint64_t *buffers, unsigned int num_buffers) in qbman_swp_release() argument
557 u64_to_le32_copy(&p[2], buffers, num_buffers); in qbman_swp_release()
577 int qbman_swp_acquire(struct qbman_swp *s, uint32_t bpid, uint64_t *buffers, in qbman_swp_acquire() argument
612 u64_from_le32_copy(buffers, &p[2], num); in qbman_swp_acquire()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-benchmark/iperf3/
H A Diperf3_3.18.bb5 protocols, and buffers. For each test it reports the bandwidth, loss, and \
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/nuttcp/
H A Dnuttcp_8.2.2.bb4 network layer throughput by transferring memory buffers from a source system \
/openbmc/qemu/net/
H A Dvmnet-common.m48 return "buffers exhausted in kernel";
111 * to temporary buffers in VmnetState.
146 * Write packets from temporary buffers in VmnetState
237 /* Complete sending packets left in VmnetState buffers */
/openbmc/qemu/docs/devel/migration/
H A Dvfio.rst251 Since the target QEMU needs to load device state buffers in-order it needs to
252 queue incoming buffers until they can be loaded into the device.
254 QEMU to allocate unlimited amounts of memory for such buffers-in-flight.
256 The "x-migration-max-queued-buffers-size" property allows capping the total size
257 of these VFIO device state buffers queued at the destination.
261 depends on the particular setup by default this queued buffers size limit is
/openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/
H A Dpython3-protobuf_5.29.4.bb2 HOMEPAGE = "https://developers.google.com/protocol-buffers/"
/openbmc/openbmc/poky/scripts/pybootchartgui/pybootchartgui/
H A Dsamples.py100 self.buffers = mem_sample.records['MemTotal'] - mem_sample.records['MemFree']
105 self.buffers, self.used, self.cached, self.swap = mem_sample

1234