Home
last modified time | relevance | path

Searched refs:readBuf (Results 1 – 10 of 10) sorted by relevance

/external/opencv/otherlibs/highgui/
Dcvcap_socket.cpp78 readBuf = 0; in CVCapture_Socket()
99 char *readBuf; // the read buffer member in CVCapture_Socket
142 readBuf = (char*)malloc(readBufSize); in open()
143 if (!readBuf) in open()
170 if (readBuf) in close()
172 free(readBuf); in close()
173 readBuf = 0; in close()
211 if (pAddrInfo == 0 || readBuf == 0) in grabFrame()
250 read_count = read(sockd, &readBuf[total_read], readBufSize); in grabFrame()
264 frame = loadPixels(readBuf, width, height); in grabFrame()
/external/icu4c/test/iotest/
Dfiletst.c982 char readBuf[512] = ""; in TestFilePrintCompatibility() local
1024 fscanf(myCFile, "%s", readBuf); in TestFilePrintCompatibility()
1026 if (strcmp(readBuf, testBuf) != 0) { in TestFilePrintCompatibility()
1027 log_err("%%x Got: \"%s\", Expected: \"%s\"\n", readBuf, testBuf); in TestFilePrintCompatibility()
1030 fscanf(myCFile, "%s", readBuf); in TestFilePrintCompatibility()
1032 if (strcmp(readBuf, testBuf) != 0) { in TestFilePrintCompatibility()
1033 log_err("%%X Got: \"%s\", Expected: \"%s\"\n", readBuf, testBuf); in TestFilePrintCompatibility()
1036 fscanf(myCFile, "%s", readBuf); in TestFilePrintCompatibility()
1038 if (strcmp(readBuf, testBuf) != 0) { in TestFilePrintCompatibility()
1039 log_err("%%o Got: \"%s\", Expected: \"%s\"\n", readBuf, testBuf); in TestFilePrintCompatibility()
[all …]
/external/chromium_org/third_party/icu/source/test/iotest/
Dfiletst.c982 char readBuf[512] = ""; in TestFilePrintCompatibility() local
1024 fscanf(myCFile, "%s", readBuf); in TestFilePrintCompatibility()
1026 if (strcmp(readBuf, testBuf) != 0) { in TestFilePrintCompatibility()
1027 log_err("%%x Got: \"%s\", Expected: \"%s\"\n", readBuf, testBuf); in TestFilePrintCompatibility()
1030 fscanf(myCFile, "%s", readBuf); in TestFilePrintCompatibility()
1032 if (strcmp(readBuf, testBuf) != 0) { in TestFilePrintCompatibility()
1033 log_err("%%X Got: \"%s\", Expected: \"%s\"\n", readBuf, testBuf); in TestFilePrintCompatibility()
1036 fscanf(myCFile, "%s", readBuf); in TestFilePrintCompatibility()
1038 if (strcmp(readBuf, testBuf) != 0) { in TestFilePrintCompatibility()
1039 log_err("%%o Got: \"%s\", Expected: \"%s\"\n", readBuf, testBuf); in TestFilePrintCompatibility()
[all …]
/external/mesa3d/src/mesa/main/
Dframebuffer.c798 const struct gl_renderbuffer *readBuf = fb->_ColorReadBuffer; in renderbuffer_exists() local
799 if (!readBuf) { in renderbuffer_exists()
802 ASSERT(_mesa_get_format_bits(readBuf->Format, GL_RED_BITS) > 0 || in renderbuffer_exists()
803 _mesa_get_format_bits(readBuf->Format, GL_ALPHA_BITS) > 0 || in renderbuffer_exists()
804 _mesa_get_format_bits(readBuf->Format, GL_TEXTURE_LUMINANCE_SIZE) > 0 || in renderbuffer_exists()
805 _mesa_get_format_bits(readBuf->Format, GL_TEXTURE_INTENSITY_SIZE) > 0 || in renderbuffer_exists()
806 _mesa_get_format_bits(readBuf->Format, GL_INDEX_BITS) > 0); in renderbuffer_exists()
/external/chromium_org/third_party/mesa/src/src/mesa/main/
Dframebuffer.c798 const struct gl_renderbuffer *readBuf = fb->_ColorReadBuffer; in renderbuffer_exists() local
799 if (!readBuf) { in renderbuffer_exists()
802 ASSERT(_mesa_get_format_bits(readBuf->Format, GL_RED_BITS) > 0 || in renderbuffer_exists()
803 _mesa_get_format_bits(readBuf->Format, GL_ALPHA_BITS) > 0 || in renderbuffer_exists()
804 _mesa_get_format_bits(readBuf->Format, GL_TEXTURE_LUMINANCE_SIZE) > 0 || in renderbuffer_exists()
805 _mesa_get_format_bits(readBuf->Format, GL_TEXTURE_INTENSITY_SIZE) > 0 || in renderbuffer_exists()
806 _mesa_get_format_bits(readBuf->Format, GL_INDEX_BITS) > 0); in renderbuffer_exists()
/external/chromium_org/third_party/sqlite/src/src/
Dos_unix.c6026 char readBuf[PROXY_MAXCONCHLEN]; in proxyTakeConch() local
6049 readLen = seekAndRead((unixFile*)conchFile, 0, readBuf, PROXY_MAXCONCHLEN); in proxyTakeConch()
6056 readBuf[0]!=(char)PROXY_CONCHVERSION ){ in proxyTakeConch()
6069 hostIdMatch = !memcmp(&readBuf[PROXY_HEADERLEN], myHostID, in proxyTakeConch()
6082 memcpy(lockPath, &readBuf[PROXY_PATHINDEX], pathLen); in proxyTakeConch()
6090 && !strncmp(pCtx->lockProxyPath, &readBuf[PROXY_PATHINDEX], in proxyTakeConch()
/external/jmonkeyengine/engine/src/lwjgl/com/jme3/renderer/lwjgl/
DLwjglRenderer.java1286 String readBuf = getTargetBufferName(glGetInteger(GL_READ_BUFFER)); in printRealFrameBufferInfo() local
1299 System.out.println("Read buffer: " + readBuf); in printRealFrameBufferInfo()
/external/chromium_org/third_party/sqlite/amalgamation/
Dsqlite3.c30182 char readBuf[PROXY_MAXCONCHLEN];
30205 readLen = seekAndRead((unixFile*)conchFile, 0, readBuf, PROXY_MAXCONCHLEN);
30212 readBuf[0]!=(char)PROXY_CONCHVERSION ){
30225 hostIdMatch = !memcmp(&readBuf[PROXY_HEADERLEN], myHostID,
30238 memcpy(lockPath, &readBuf[PROXY_PATHINDEX], pathLen);
30246 && !strncmp(pCtx->lockProxyPath, &readBuf[PROXY_PATHINDEX],
/external/sqlite/dist/orig/
Dsqlite3.c31157 char readBuf[PROXY_MAXCONCHLEN];
31180 readLen = seekAndRead((unixFile*)conchFile, 0, readBuf, PROXY_MAXCONCHLEN);
31187 readBuf[0]!=(char)PROXY_CONCHVERSION ){
31200 hostIdMatch = !memcmp(&readBuf[PROXY_HEADERLEN], myHostID,
31213 memcpy(lockPath, &readBuf[PROXY_PATHINDEX], pathLen);
31221 && !strncmp(pCtx->lockProxyPath, &readBuf[PROXY_PATHINDEX],
/external/sqlite/dist/
Dsqlite3.c31185 char readBuf[PROXY_MAXCONCHLEN];
31208 readLen = seekAndRead((unixFile*)conchFile, 0, readBuf, PROXY_MAXCONCHLEN);
31215 readBuf[0]!=(char)PROXY_CONCHVERSION ){
31228 hostIdMatch = !memcmp(&readBuf[PROXY_HEADERLEN], myHostID,
31241 memcpy(lockPath, &readBuf[PROXY_PATHINDEX], pathLen);
31249 && !strncmp(pCtx->lockProxyPath, &readBuf[PROXY_PATHINDEX],