Home
last modified time | relevance | path

Searched refs:xbuf (Results 1 – 12 of 12) sorted by relevance

/external/libjpeg-turbo/
Djdmainct.c136 JSAMPARRAY xbuf; in alloc_funny_pointers() local
153 xbuf = (JSAMPARRAY) in alloc_funny_pointers()
156 xbuf += rgroup; /* want one row group at negative offsets */ in alloc_funny_pointers()
157 main_ptr->xbuffer[0][ci] = xbuf; in alloc_funny_pointers()
158 xbuf += rgroup * (M + 4); in alloc_funny_pointers()
159 main_ptr->xbuffer[1][ci] = xbuf; in alloc_funny_pointers()
217 JSAMPARRAY xbuf; in set_bottom_pointers() local
236 xbuf = main_ptr->xbuffer[main_ptr->whichptr][ci]; in set_bottom_pointers()
238 xbuf[rows_left + i] = xbuf[rows_left-1]; in set_bottom_pointers()
/external/opencv3/3rdparty/libjpeg/
Djdmainct.c167 JSAMPARRAY xbuf; in alloc_funny_pointers() local
184 xbuf = (JSAMPARRAY) in alloc_funny_pointers()
187 xbuf += rgroup; /* want one row group at negative offsets */ in alloc_funny_pointers()
188 mainp->xbuffer[0][ci] = xbuf; in alloc_funny_pointers()
189 xbuf += rgroup * (M + 4); in alloc_funny_pointers()
190 mainp->xbuffer[1][ci] = xbuf; in alloc_funny_pointers()
276 JSAMPARRAY xbuf; in set_bottom_pointers() local
295 xbuf = mainp->xbuffer[mainp->whichptr][ci]; in set_bottom_pointers()
297 xbuf[rows_left + i] = xbuf[rows_left-1]; in set_bottom_pointers()
/external/pdfium/third_party/libjpeg/
Dfpdfapi_jdmainct.c166 JSAMPARRAY xbuf; in alloc_funny_pointers() local
183 xbuf = (JSAMPARRAY) in alloc_funny_pointers()
186 xbuf += rgroup; /* want one row group at negative offsets */ in alloc_funny_pointers()
187 main->xbuffer[0][ci] = xbuf; in alloc_funny_pointers()
188 xbuf += rgroup * (M + 4); in alloc_funny_pointers()
189 main->xbuffer[1][ci] = xbuf; in alloc_funny_pointers()
275 JSAMPARRAY xbuf; in set_bottom_pointers() local
294 xbuf = main->xbuffer[main->whichptr][ci]; in set_bottom_pointers()
296 xbuf[rows_left + i] = xbuf[rows_left-1]; in set_bottom_pointers()
/external/mksh/src/
Dedit.c908 static char *xbuf; /* beg input buffer */ variable
1207 xbp = xbuf = buf; in x_emacs()
1264 i = xep - xbuf; in x_emacs()
1396 if (xcp == xbuf) { in x_del_back()
1402 } while ((++i < x_arg) && (xcp != xbuf)); in x_del_back()
1484 x_e_putc2((xep > xlp) ? '>' : (xbp > xbuf) ? '<' : ' '); in x_delete()
1535 if (cp == xbuf) { in x_bword()
1540 while (cp != xbuf && is_mfs(cp[-1])) { in x_bword()
1544 while (cp != xbuf && !is_mfs(cp[-1])) { in x_bword()
1578 cp = cp >= xep ? xep : x_bs0(cp, xbuf); in x_goto()
[all …]
/external/libmicrohttpd/src/microhttpd/
Dpostprocessor.c176 char xbuf[8]; member
353 char xbuf[XBUF_SIZE + 1]; in post_process_urlencoded() local
391 memcpy (xbuf, pp->xbuf, pp->xbuf_pos); in post_process_urlencoded()
414 memcpy (&xbuf[xoff], &post_data[poff], delta); in post_process_urlencoded()
422 if ((delta > 0) && (xbuf[delta - 1] == '%')) in post_process_urlencoded()
424 else if ((delta > 1) && (xbuf[delta - 2] == '%')) in post_process_urlencoded()
431 memcpy (pp->xbuf, &xbuf[delta], xoff - delta); in post_process_urlencoded()
443 xbuf[xoff] = '\0'; /* 0-terminate in preparation */ in post_process_urlencoded()
444 MHD_unescape_plus (xbuf); in post_process_urlencoded()
445 xoff = MHD_http_unescape (xbuf); in post_process_urlencoded()
[all …]
/external/webrtc/talk/session/media/
Dyuvscaler_unittest.cc113 uint8_t* xbuf = ALIGNP(xbuffer.get(), kAlignment) + memoffset; in TestScale() local
117 !LoadPlanarYuvTestImage("faces", ow, oh, xbuf)) { in TestScale()
125 memset(xbuf, 213, osize); // Expected result. in TestScale()
131 FlushCache(xbuf, osize); in TestScale()
168 double sse = cricket::ComputeSumSquareError(obuf, xbuf, osize); in TestScale()
/external/mesa3d/src/gallium/state_trackers/egl/x11/
Dnative_dri2.c147 struct x11_drawable_buffer *xbuf = &xbufs[i]; in dri2_surface_process_drawable_buffers() local
151 switch (xbuf->attachment) { in dri2_surface_process_drawable_buffers()
173 _eglLog(_EGL_WARNING, "unknown buffer %d", xbuf->attachment); in dri2_surface_process_drawable_buffers()
180 whandle.stride = xbuf->pitch; in dri2_surface_process_drawable_buffers()
181 whandle.handle = xbuf->name; in dri2_surface_process_drawable_buffers()
/external/ipsec-tools/src/racoon/
Dcrypto_openssl.c1178 vchar_t *xbuf = NULL; local
1184 xbuf = vmalloc(len);
1185 if (xbuf == NULL) {
1191 (unsigned char *) xbuf->v, rsa, pad);
1194 vfree(xbuf);
1198 error = memcmp(src->v, xbuf->v, src->l);
1199 vfree(xbuf);
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DDateFormatTest.java2420 StringBuffer xbuf = new StringBuffer(); in TestCoverage() local
2422 fmt.format(xcal, xbuf, fpos); in TestCoverage()
2424 fmt.parse(xbuf.toString()); in TestCoverage()
2427 xbuf.setLength(0); in TestCoverage()
2429 fmt.format(xcal, xbuf, fpos); in TestCoverage()
2430 Date d2 = fmt.parse(xbuf.toString()); in TestCoverage()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DDateFormatTest.java2424 StringBuffer xbuf = new StringBuffer(); in TestCoverage() local
2426 fmt.format(xcal, xbuf, fpos); in TestCoverage()
2428 fmt.parse(xbuf.toString()); in TestCoverage()
2431 xbuf.setLength(0); in TestCoverage()
2433 fmt.format(xcal, xbuf, fpos); in TestCoverage()
2434 Date d2 = fmt.parse(xbuf.toString()); in TestCoverage()
/external/icu/icu4c/source/test/cintltst/
Dcdattst.c187 char xbuf[2048]; in TestDateFormat() local
189 u_austrcpy(xbuf, temp); in TestDateFormat()
191 …r("FAIL: Date Format for US locale failed using udat_format() - expected %s got %s\n", xbuf, gbuf); in TestDateFormat()
/external/libpcap/
Dgencode.c434 const char * volatile xbuf = buf; in pcap_compile() local
492 lex_init(xbuf ? xbuf : ""); in pcap_compile()