Searched refs:expbuf (Results 1 – 9 of 9) sorted by relevance
/external/v4l2_codec2/vda/ |
D | v4l2_device.cc | 242 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/ |
D | kmscapture.cpp | 56 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/ |
D | v4l2_device.cpp | 496 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/ |
D | mmapstress09.c | 100 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()
|
D | mmapstress01.c | 118 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]);
|
D | mmapstress10.c | 130 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/ |
D | APFloat.cpp | 3567 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/ |
D | APFloat.cpp | 3547 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/ |
D | APFloat.cpp | 3733 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()
|