/external/libjpeg-turbo/ |
D | jdmainct.c | 138 JSAMPARRAY xbuf; in alloc_funny_pointers() local 155 xbuf = (JSAMPARRAY) in alloc_funny_pointers() 158 xbuf += rgroup; /* want one row group at negative offsets */ in alloc_funny_pointers() 159 main_ptr->xbuffer[0][ci] = xbuf; in alloc_funny_pointers() 160 xbuf += rgroup * (M + 4); in alloc_funny_pointers() 161 main_ptr->xbuffer[1][ci] = xbuf; in alloc_funny_pointers() 219 JSAMPARRAY xbuf; in set_bottom_pointers() local 238 xbuf = main_ptr->xbuffer[main_ptr->whichptr][ci]; in set_bottom_pointers() 240 xbuf[rows_left + i] = xbuf[rows_left-1]; in set_bottom_pointers()
|
/external/pdfium/third_party/libjpeg/ |
D | fpdfapi_jdmainct.c | 166 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/ |
D | edit.c | 934 static char *xbuf; /* beg input buffer */ variable 1241 xbp = xbuf = buf; in x_emacs() 1298 i = xep - xbuf; in x_emacs() 1424 if (xcp == xbuf) { in x_del_back() 1430 } while ((++i < x_arg) && (xcp != xbuf)); in x_del_back() 1512 x_e_putc2((xep > xlp) ? '>' : (xbp > xbuf) ? '<' : ' '); in x_delete() 1560 if (cp == xbuf) { in x_bword() 1565 while (cp != xbuf && is_mfs(cp[-1])) { in x_bword() 1569 while (cp != xbuf && !is_mfs(cp[-1])) { in x_bword() 1603 cp = cp >= xep ? xep : x_bs0(cp, xbuf); in x_goto() [all …]
|
/external/libmicrohttpd/src/microhttpd/ |
D | postprocessor.c | 176 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/python/cpython2/Modules/ |
D | md5.c | 144 md5_word_t xbuf[16]; in md5_process() local 170 memcpy(xbuf, data, 64); in md5_process() 171 X = xbuf; in md5_process() 188 X = xbuf; /* (dynamic only) */ in md5_process() 190 # define xbuf X /* (static only) */ in md5_process() macro 193 xbuf[i] = xp[0] + (xp[1] << 8) + (xp[2] << 16) + (xp[3] << 24); in md5_process()
|
/external/webrtc/talk/session/media/ |
D | yuvscaler_unittest.cc | 113 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/libcups/cups/ |
D | md5.c | 143 unsigned int xbuf[16]; in _cups_md5_process() local 151 memcpy(xbuf, data, 64); in _cups_md5_process() 152 X = xbuf; in _cups_md5_process()
|
/external/ipsec-tools/src/racoon/ |
D | crypto_openssl.c | 1178 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/icu4c/source/test/cintltst/ |
D | cdattst.c | 187 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/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
D | DateFormatTest.java | 2459 StringBuffer xbuf = new StringBuffer(); in TestCoverage() local 2461 fmt.format(xcal, xbuf, fpos); in TestCoverage() 2463 fmt.parse(xbuf.toString()); in TestCoverage() 2466 xbuf.setLength(0); in TestCoverage() 2468 fmt.format(xcal, xbuf, fpos); in TestCoverage() 2469 Date d2 = fmt.parse(xbuf.toString()); in TestCoverage()
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
D | DateFormatTest.java | 2458 StringBuffer xbuf = new StringBuffer(); in TestCoverage() local 2460 fmt.format(xcal, xbuf, fpos); in TestCoverage() 2462 fmt.parse(xbuf.toString()); in TestCoverage() 2465 xbuf.setLength(0); in TestCoverage() 2467 fmt.format(xcal, xbuf, fpos); in TestCoverage() 2468 Date d2 = fmt.parse(xbuf.toString()); in TestCoverage()
|
/external/libpcap/ |
D | gencode.c | 667 const char * volatile xbuf = buf; in pcap_compile() local 720 in_buffer = pcap__scan_string(xbuf ? xbuf : "", scanner); in pcap_compile()
|