Home
last modified time | relevance | path

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

/external/v4l2_codec2/vda/
Dv4l2_device.cc247 struct v4l2_exportbuffer expbuf; in GetDmabufsForV4L2Buffer() local
248 memset(&expbuf, 0, sizeof(expbuf)); in GetDmabufsForV4L2Buffer()
249 expbuf.type = buf_type; in GetDmabufsForV4L2Buffer()
250 expbuf.index = index; in GetDmabufsForV4L2Buffer()
251 expbuf.plane = i; in GetDmabufsForV4L2Buffer()
252 expbuf.flags = O_CLOEXEC; in GetDmabufsForV4L2Buffer()
253 if (Ioctl(VIDIOC_EXPBUF, &expbuf) != 0) { in GetDmabufsForV4L2Buffer()
258 dmabuf_fds.push_back(base::ScopedFD(expbuf.fd)); in GetDmabufsForV4L2Buffer()
/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);
597 int fileokay(char *file, uchar_t * expbuf) argument
678 if (expbuf[j] != readbuf[j]) {
681 expbuf[j], readbuf[j]);
Dmmapstress10.c130 int fileokay(char *file, uchar_t * expbuf);
787 int fileokay(char *file, uchar_t * expbuf) argument
859 if (expbuf[j] != readbuf[j] && readbuf[j] != 0) {
862 expbuf[j], readbuf[j]);
/external/bison/lib/
Dvasnprintf.c3193 char expbuf[6 + 1]; in VASNPRINTF() local
3195 sprintf (expbuf, "%+d", exponent); in VASNPRINTF()
3196 for (ep = expbuf; (*p = *ep) != '\0'; ep++) in VASNPRINTF()
3344 char expbuf[6 + 1]; in VASNPRINTF() local
3346 sprintf (expbuf, "%+d", exponent); in VASNPRINTF()
3347 for (ep = expbuf; (*p = *ep) != '\0'; ep++) in VASNPRINTF()
3806 char expbuf[6 + 1]; in VASNPRINTF() local
3808 sprintf (expbuf, "%+.2d", exponent); in VASNPRINTF()
3809 for (ep = expbuf; (*p = *ep) != '\0'; ep++) in VASNPRINTF()
3987 char expbuf[6 + 1]; in VASNPRINTF() local
[all …]
/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()