/third_party/boost/boost/move/algo/ |
D | adaptive_merge.hpp | 34 , XBuf & xbuf in adaptive_merge_combine_blocks() argument 47 if(xbuf.size() < l_block){ in adaptive_merge_combine_blocks() 48 xbuf.initialize_until(l_block, *first); in adaptive_merge_combine_blocks() 50 BOOST_ASSERT(xbuf.size() >= l_block); in adaptive_merge_combine_blocks() 53 , l_combine1, l_block, xbuf in adaptive_merge_combine_blocks() 56 …comp, first_data, l_block, l_irreg1, n_block_a, n_block_b, l_irreg2, comp, move_op(), xbuf.data()); in adaptive_merge_combine_blocks() 62 , l_combine1, l_block, xbuf in adaptive_merge_combine_blocks() 77 xbuf.shrink_to_fit(l_block); in adaptive_merge_combine_blocks() 78 if(xbuf.size() < l_block){ in adaptive_merge_combine_blocks() 79 xbuf.initialize_until(l_block, *first); in adaptive_merge_combine_blocks() [all …]
|
D | adaptive_sort.hpp | 85 , XBuf & xbuf in adaptive_sort_build_blocks() argument 103 size_type kbuf = min_value<size_type>(l_build_buf, size_type(xbuf.capacity())); in adaptive_sort_build_blocks() 108 xbuf.move_assign(first+l_build_buf-kbuf, kbuf); in adaptive_sort_build_blocks() 119 …boost::move(xbuf.data()+kbuf-l_merged, xbuf.data() + kbuf, first_block-l_merged+elements_in_blocks… in adaptive_sort_build_blocks() 144 boost::move(xbuf.data(), xbuf.data() + kbuf, first); in adaptive_sort_build_blocks() 149 xbuf.clear(); in adaptive_sort_build_blocks() 164 , XBuf & xbuf in adaptive_sort_combine_blocks() argument 168 (void)xbuf; in adaptive_sort_combine_blocks() 246 , XBuf & xbuf in adaptive_sort_combine_all_blocks() argument 254 bool const common_xbuf = l_data > l_merged && l_intbuf && l_intbuf <= xbuf.capacity(); in adaptive_sort_combine_all_blocks() [all …]
|
/third_party/flutter/skia/third_party/externals/libjpeg-turbo/ |
D | jdmainct.c | 141 JSAMPARRAY xbuf; in alloc_funny_pointers() local 158 xbuf = (JSAMPARRAY) in alloc_funny_pointers() 161 xbuf += rgroup; /* want one row group at negative offsets */ in alloc_funny_pointers() 162 main_ptr->xbuffer[0][ci] = xbuf; in alloc_funny_pointers() 163 xbuf += rgroup * (M + 4); in alloc_funny_pointers() 164 main_ptr->xbuffer[1][ci] = xbuf; in alloc_funny_pointers() 222 JSAMPARRAY xbuf; in set_bottom_pointers() local 241 xbuf = main_ptr->xbuffer[main_ptr->whichptr][ci]; in set_bottom_pointers() 243 xbuf[rows_left + i] = xbuf[rows_left - 1]; in set_bottom_pointers()
|
/third_party/skia/third_party/externals/libjpeg-turbo/ |
D | jdmainct.c | 141 JSAMPARRAY xbuf; in alloc_funny_pointers() local 158 xbuf = (JSAMPARRAY) in alloc_funny_pointers() 161 xbuf += rgroup; /* want one row group at negative offsets */ in alloc_funny_pointers() 162 main_ptr->xbuffer[0][ci] = xbuf; in alloc_funny_pointers() 163 xbuf += rgroup * (M + 4); in alloc_funny_pointers() 164 main_ptr->xbuffer[1][ci] = xbuf; in alloc_funny_pointers() 222 JSAMPARRAY xbuf; in set_bottom_pointers() local 241 xbuf = main_ptr->xbuffer[main_ptr->whichptr][ci]; in set_bottom_pointers() 243 xbuf[rows_left + i] = xbuf[rows_left - 1]; in set_bottom_pointers()
|
/third_party/libjpeg/ |
D | jdmainct.c | 168 JSAMPARRAY xbuf; in alloc_funny_pointers() local 185 xbuf = (JSAMPARRAY) in alloc_funny_pointers() 188 xbuf += rgroup; /* want one row group at negative offsets */ in alloc_funny_pointers() 189 mainp->xbuffer[0][ci] = xbuf; in alloc_funny_pointers() 190 xbuf += rgroup * (M + 4); in alloc_funny_pointers() 191 mainp->xbuffer[1][ci] = xbuf; in alloc_funny_pointers() 277 JSAMPARRAY xbuf; in set_bottom_pointers() local 296 xbuf = mainp->xbuffer[mainp->whichptr][ci]; in set_bottom_pointers() 298 xbuf[rows_left + i] = xbuf[rows_left-1]; in set_bottom_pointers()
|
/third_party/mksh/ |
D | edit.c | 929 static char *xbuf; /* beg input buffer */ variable 1267 xbp = xbuf = buf; in x_emacs() 1330 i = xep - xbuf; in x_emacs() 1454 if (xcp == xbuf) { in x_del_back() 1460 } while ((++i < x_arg) && (xcp != xbuf)); in x_del_back() 1542 x_e_putc2((xep > xlp) ? '>' : (xbp > xbuf) ? '<' : ' '); in x_delete() 1590 if (cp == xbuf) { in x_bword() 1595 while (cp != xbuf && ctype(cp[-1], C_MFS)) { in x_bword() 1599 while (cp != xbuf && !ctype(cp[-1], C_MFS)) { in x_bword() 1633 cp = cp >= xep ? xep : x_bs0(cp, xbuf); in x_goto() [all …]
|
/third_party/skia/third_party/externals/microhttpd/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 …]
|
/third_party/boost/boost/move/algo/detail/ |
D | adaptive_sort_merge.hpp | 382 , XBuf & xbuf) in collect_unique() argument 392 if(xbuf.capacity() >= max_collected){ in collect_unique() 393 typename XBuf::iterator const ph0 = xbuf.add(first); in collect_unique() 395 … typename XBuf::iterator const r = boost::movelib::lower_bound(ph0, xbuf.end(), *u, comp); in collect_unique() 397 if(r == xbuf.end() || comp(*u, *r) ){ in collect_unique() 402 xbuf.insert(r, u); in collect_unique() 408 boost::move(xbuf.data(), xbuf.end(), first); in collect_unique() 587 void stable_sort( RandIt first, RandIt last, Compare comp, XBuf & xbuf) in stable_sort() argument 592 if(std::size_t(xbuf.capacity() - xbuf.size()) >= half_len) { in stable_sort() 593 merge_sort(first, last, comp, xbuf.data()+xbuf.size()); in stable_sort() [all …]
|
D | merge.hpp | 521 , Buf &xbuf) in op_buffered_merge() argument 529 xbuf.move_assign(first, size_type(middle-first)); in op_buffered_merge() 531 (xbuf.data(), xbuf.end(), first, middle, last, comp, op); in op_buffered_merge() 535 xbuf.move_assign(middle, size_type(last-middle)); in op_buffered_merge() 537 (first, middle, last, xbuf.data(), xbuf.end(), comp, op); in op_buffered_merge() 546 , XBuf &xbuf) in buffered_merge() argument 548 op_buffered_merge(first, middle, last, comp, move_op(), xbuf); in buffered_merge() 966 ::boost::movelib::adaptive_xbuf<value_type, RandRawIt> xbuf(uninitialized, uninitialized_len); in merge_adaptive_ONlogN() 967 xbuf.initialize_until(uninitialized_len, *first); in merge_adaptive_ONlogN() 968 …merge_adaptive_ONlogN_recursive(first, middle, last, len1, len2, xbuf.begin(), uninitialized_len, … in merge_adaptive_ONlogN()
|
D | merge_sort.hpp | 196 ::boost::movelib::adaptive_xbuf<value_type, RandRawIt> xbuf(uninitialized, uninitialized_len); in stable_sort_adaptive_ONlogN2() 197 xbuf.initialize_until(uninitialized_len, *first); in stable_sort_adaptive_ONlogN2()
|
/third_party/boost/tools/build/src/engine/ |
D | md5.cpp | 143 md5_word_t xbuf[16]; in md5_process() local 169 memcpy(xbuf, data, 64); in md5_process() 170 X = xbuf; in md5_process() 187 X = xbuf; /* (dynamic only) */ in md5_process() 189 # define xbuf X /* (static only) */ in md5_process() macro 192 xbuf[i] = xp[0] + (xp[1] << 8) + (xp[2] << 16) + (xp[3] << 24); in md5_process()
|
/third_party/uboot/u-boot-2020.01/drivers/mmc/ |
D | mmc_spi.c | 138 void *xbuf, u32 bcnt, u32 bsize) in mmc_spi_readdata() argument 141 u8 *buf = xbuf, r1; in mmc_spi_readdata() 183 static int mmc_spi_writedata(struct udevice *dev, const void *xbuf, in mmc_spi_writedata() argument 186 const u8 *buf = xbuf; in mmc_spi_writedata()
|
/third_party/icu/icu4c/source/test/cintltst/ |
D | cdattst.c | 189 char xbuf[2048]; in TestDateFormat() local 191 u_austrcpy(xbuf, temp); in TestDateFormat() 193 …r("FAIL: Date Format for US locale failed using udat_format() - expected %s got %s\n", xbuf, gbuf); in TestDateFormat()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/ |
D | DateFormatTest.java | 2466 StringBuffer xbuf = new StringBuffer(); in TestCoverage() local 2468 fmt.format(xcal, xbuf, fpos); in TestCoverage() 2470 fmt.parse(xbuf.toString()); in TestCoverage() 2473 xbuf.setLength(0); in TestCoverage() 2475 fmt.format(xcal, xbuf, fpos); in TestCoverage() 2476 Date d2 = fmt.parse(xbuf.toString()); in TestCoverage()
|