Home
last modified time | relevance | path

Searched refs:expbuf (Results 1 – 9 of 9) sorted by relevance

/external/v4l2_codec2/vda/
Dv4l2_device.cc242 struct v4l2_exportbuffer expbuf; in GetDmabufsForV4L2Buffer() local
243 memset(&expbuf, 0, sizeof(expbuf)); in GetDmabufsForV4L2Buffer()
244 expbuf.type = buf_type; in GetDmabufsForV4L2Buffer()
245 expbuf.index = index; in GetDmabufsForV4L2Buffer()
246 expbuf.plane = i; in GetDmabufsForV4L2Buffer()
247 expbuf.flags = O_CLOEXEC; in GetDmabufsForV4L2Buffer()
248 if (Ioctl(VIDIOC_EXPBUF, &expbuf) != 0) { in GetDmabufsForV4L2Buffer()
253 dmabuf_fds.push_back(base::ScopedFD(expbuf.fd)); in GetDmabufsForV4L2Buffer()
/external/libkmsxx/utils/
Dkmscapture.cpp56 struct v4l2_exportbuffer expbuf; in buffer_export() local
58 memset(&expbuf, 0, sizeof(expbuf)); in buffer_export()
59 expbuf.type = bt; in buffer_export()
60 expbuf.index = index; in buffer_export()
61 if (ioctl(v4lfd, VIDIOC_EXPBUF, &expbuf) == -1) { in buffer_export()
66 *dmafd = expbuf.fd; in buffer_export()
/external/libxcam/xcore/
Dv4l2_device.cpp496 struct v4l2_exportbuffer expbuf; in allocate_buffer() local
497 xcam_mem_clear (expbuf); in allocate_buffer()
498 expbuf.type = _capture_buf_type; in allocate_buffer()
499 expbuf.index = index; in allocate_buffer()
500 expbuf.flags = O_CLOEXEC; in allocate_buffer()
501 if (io_control (VIDIOC_EXPBUF, &expbuf) < 0) { in allocate_buffer()
505 v4l2_buf.m.fd = expbuf.fd; in allocate_buffer()
/external/ltp/testcases/kernel/mem/mmapstress/
Dmmapstress09.c100 int mapokay(uchar_t * expbuf);
437 int mapokay(uchar_t * expbuf) in mapokay() argument
448 if (*ptr != expbuf[j]) { in mapokay()
451 expbuf[j], *ptr); in mapokay()
Dmmapstress01.c118 int fileokay(char *file, uchar_t * expbuf);
596 int fileokay(char *file, uchar_t * expbuf) argument
677 if (expbuf[j] != readbuf[j]) {
680 expbuf[j], readbuf[j]);
Dmmapstress10.c130 int fileokay(char *file, uchar_t * expbuf);
785 int fileokay(char *file, uchar_t * expbuf) argument
857 if (expbuf[j] != readbuf[j] && readbuf[j] != 0) {
860 expbuf[j], readbuf[j]);
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DAPFloat.cpp3567 SmallVector<char, 6> expbuf; in toString() local
3569 expbuf.push_back((char) ('0' + (exp % 10))); in toString()
3573 if (!TruncateZero && expbuf.size() < 2) in toString()
3574 expbuf.push_back('0'); in toString()
3575 for (unsigned I = 0, E = expbuf.size(); I != E; ++I) in toString()
3576 Str.push_back(expbuf[E-1-I]); in toString()
/external/swiftshader/third_party/LLVM/lib/Support/
DAPFloat.cpp3547 SmallVector<char, 6> expbuf; in toString() local
3549 expbuf.push_back((char) ('0' + (exp % 10))); in toString()
3552 for (unsigned I = 0, E = expbuf.size(); I != E; ++I) in toString()
3553 Str.push_back(expbuf[E-1-I]); in toString()
/external/llvm/lib/Support/
DAPFloat.cpp3733 SmallVector<char, 6> expbuf; in toString() local
3735 expbuf.push_back((char) ('0' + (exp % 10))); in toString()
3738 for (unsigned I = 0, E = expbuf.size(); I != E; ++I) in toString()
3739 Str.push_back(expbuf[E-1-I]); in toString()