/external/toybox/toys/other/ |
H A D | bzcat.c | 93 static unsigned int get_bits(struct bunzip_data *bd, char bits_wanted) argument 99 while (bd->inbufBitCount < bits_wanted) { 102 if (bd->inbufPos == bd->inbufCount) { 103 if (0 >= (bd->inbufCount = read(bd->in_fd, bd->inbuf, IOBUF_SIZE))) 105 bd->inbufPos = 0; 109 if (bd->inbufBitCount>=24) { 110 bits = bd 144 read_block_header(struct bunzip_data *bd, struct bwdata *bw) argument 302 read_huffman_data(struct bunzip_data *bd, struct bwdata *bw) argument 424 flush_bunzip_outbuf(struct bunzip_data *bd, int out_fd) argument 433 burrows_wheeler_prep(struct bunzip_data *bd, struct bwdata *bw) argument 477 read_bunzip_data(struct bunzip_data *bd) argument 496 write_bunzip_data(struct bunzip_data *bd, struct bwdata *bw, int out_fd, char *outbuf, int len) argument 589 struct bunzip_data *bd; local 627 struct bunzip_data *bd; local [all...] |
/external/clang/test/CodeGen/ |
H A D | builtins-ppc-crypto-disabled.c | 29 vector unsigned long long bd = D_INIT2 33 vector unsigned long long r2 = __builtin_crypto_vcipher(ad, bd); 34 vector unsigned long long r3 = __builtin_crypto_vcipherlast(ad, bd); 35 vector unsigned long long r4 = __builtin_crypto_vncipher(ad, bd); 36 vector unsigned long long r5 = __builtin_crypto_vncipherlast(ad, bd); 41 vector unsigned long long r8 = __builtin_crypto_vpmsumb(ad, bd); 42 vector unsigned long long r9 = __builtin_crypto_vpermxor(ad, bd, cd);
|
/external/libvpx/libvpx/vpx_dsp/ |
H A D | inv_txfm.h | 45 int bd) { 52 const int32_t int_max = (1 << (7 + bd)) - 1; 58 (void) bd; 63 int bd) { 65 return highbd_check_range(rv, bd); 82 // bd of 8 uses trans_low with 16bits, need to remove 16bits 83 // bd of 10 uses trans_low with 18bits, need to remove 14bits 84 // bd of 12 uses trans_low with 20bits, need to remove 12bits 85 // bd of x uses trans_low with 8+x bits, need to remove 24-x bits 86 #define WRAPLOW(x, bd) ((((int32_ 44 highbd_check_range(tran_high_t input, int bd) argument 62 highbd_dct_const_round_shift(tran_high_t input, int bd) argument 108 highbd_clip_pixel_add(uint16_t dest, tran_high_t trans, int bd) argument [all...] |
H A D | inv_txfm.c | 1232 int stride, int bd) { 1254 op[0] = WRAPLOW(a1, bd); 1255 op[1] = WRAPLOW(b1, bd); 1256 op[2] = WRAPLOW(c1, bd); 1257 op[3] = WRAPLOW(d1, bd); 1275 dest[stride * 0] = highbd_clip_pixel_add(dest[stride * 0], a1, bd); 1276 dest[stride * 1] = highbd_clip_pixel_add(dest[stride * 1], b1, bd); 1277 dest[stride * 2] = highbd_clip_pixel_add(dest[stride * 2], c1, bd); 1278 dest[stride * 3] = highbd_clip_pixel_add(dest[stride * 3], d1, bd); 1286 int dest_stride, int bd) { 1231 vpx_highbd_iwht4x4_16_add_c(const tran_low_t *input, uint8_t *dest8, int stride, int bd) argument 1285 vpx_highbd_iwht4x4_1_add_c(const tran_low_t *in, uint8_t *dest8, int dest_stride, int bd) argument 1318 vpx_highbd_idct4_c(const tran_low_t *input, tran_low_t *output, int bd) argument 1339 vpx_highbd_idct4x4_16_add_c(const tran_low_t *input, uint8_t *dest8, int stride, int bd) argument 1366 vpx_highbd_idct4x4_1_add_c(const tran_low_t *input, uint8_t *dest8, int dest_stride, int bd) argument 1386 vpx_highbd_idct8_c(const tran_low_t *input, tran_low_t *output, int bd) argument 1431 vpx_highbd_idct8x8_64_add_c(const tran_low_t *input, uint8_t *dest8, int stride, int bd) argument 1458 vpx_highbd_idct8x8_1_add_c(const tran_low_t *input, uint8_t *dest8, int stride, int bd) argument 1474 vpx_highbd_iadst4_c(const tran_low_t *input, tran_low_t *output, int bd) argument 1512 vpx_highbd_iadst8_c(const tran_low_t *input, tran_low_t *output, int bd) argument 1589 vpx_highbd_idct8x8_10_add_c(const tran_low_t *input, uint8_t *dest8, int stride, int bd) argument 1616 vpx_highbd_idct16_c(const tran_low_t *input, tran_low_t *output, int bd) argument 1782 vpx_highbd_idct16x16_256_add_c(const tran_low_t *input, uint8_t *dest8, int stride, int bd) argument 1809 vpx_highbd_iadst16_c(const tran_low_t *input, tran_low_t *output, int bd) argument 1979 vpx_highbd_idct16x16_10_add_c(const tran_low_t *input, uint8_t *dest8, int stride, int bd) argument 2007 vpx_highbd_idct16x16_1_add_c(const tran_low_t *input, uint8_t *dest8, int stride, int bd) argument 2024 highbd_idct32_c(const tran_low_t *input, tran_low_t *output, int bd) argument 2393 vpx_highbd_idct32x32_1024_add_c(const tran_low_t *input, uint8_t *dest8, int stride, int bd) argument 2433 vpx_highbd_idct32x32_34_add_c(const tran_low_t *input, uint8_t *dest8, int stride, int bd) argument 2460 vpx_highbd_idct32x32_1_add_c(const tran_low_t *input, uint8_t *dest8, int stride, int bd) argument [all...] |
H A D | vpx_dsp_common.h | 52 static INLINE uint16_t clip_pixel_highbd(int val, int bd) { argument 53 switch (bd) {
|
H A D | vpx_convolve.h | 31 int w, int h, int bd);
|
H A D | loopfilter.c | 22 static INLINE int16_t signed_char_clamp_high(int t, int bd) { argument 23 switch (bd) { 362 uint16_t q2, uint16_t q3, int bd) { 364 int16_t limit16 = (uint16_t)limit << (bd - 8); 365 int16_t blimit16 = (uint16_t)blimit << (bd - 8); 380 uint16_t q2, uint16_t q3, int bd) { 382 int16_t thresh16 = (uint16_t)thresh << (bd - 8); 397 uint16_t q3, uint16_t q4, int bd) { 398 int8_t mask = ~highbd_flat_mask4(thresh, p3, p2, p1, p0, q0, q1, q2, q3, bd); 399 int16_t thresh16 = (uint16_t)thresh << (bd 358 highbd_filter_mask(uint8_t limit, uint8_t blimit, uint16_t p3, uint16_t p2, uint16_t p1, uint16_t p0, uint16_t q0, uint16_t q1, uint16_t q2, uint16_t q3, int bd) argument 376 highbd_flat_mask4(uint8_t thresh, uint16_t p3, uint16_t p2, uint16_t p1, uint16_t p0, uint16_t q0, uint16_t q1, uint16_t q2, uint16_t q3, int bd) argument 392 highbd_flat_mask5(uint8_t thresh, uint16_t p4, uint16_t p3, uint16_t p2, uint16_t p1, uint16_t p0, uint16_t q0, uint16_t q1, uint16_t q2, uint16_t q3, uint16_t q4, int bd) argument 407 highbd_hev_mask(uint8_t thresh, uint16_t p1, uint16_t p0, uint16_t q0, uint16_t q1, int bd) argument 416 highbd_filter4(int8_t mask, uint8_t thresh, uint16_t *op1, uint16_t *op0, uint16_t *oq0, uint16_t *oq1, int bd) argument 451 vpx_highbd_lpf_horizontal_4_c(uint16_t *s, int p , const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int count, int bd) argument 474 vpx_highbd_lpf_horizontal_4_dual_c(uint16_t *s, int p, const uint8_t *blimit0, const uint8_t *limit0, const uint8_t *thresh0, const uint8_t *blimit1, const uint8_t *limit1, const uint8_t *thresh1, int bd) argument 486 vpx_highbd_lpf_vertical_4_c(uint16_t *s, int pitch, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int count, int bd) argument 503 vpx_highbd_lpf_vertical_4_dual_c(uint16_t *s, int pitch, const uint8_t *blimit0, const uint8_t *limit0, const uint8_t *thresh0, const uint8_t *blimit1, const uint8_t *limit1, const uint8_t *thresh1, int bd) argument 516 highbd_filter8(int8_t mask, uint8_t thresh, uint8_t flat, uint16_t *op3, uint16_t *op2, uint16_t *op1, uint16_t *op0, uint16_t *oq0, uint16_t *oq1, uint16_t *oq2, uint16_t *oq3, int bd) argument 537 vpx_highbd_lpf_horizontal_8_c(uint16_t *s, int p, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int count, int bd) argument 559 vpx_highbd_lpf_horizontal_8_dual_c(uint16_t *s, int p, const uint8_t *blimit0, const uint8_t *limit0, const uint8_t *thresh0, const uint8_t *blimit1, const uint8_t *limit1, const uint8_t *thresh1, int bd) argument 571 vpx_highbd_lpf_vertical_8_c(uint16_t *s, int pitch, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int count, int bd) argument 591 vpx_highbd_lpf_vertical_8_dual_c(uint16_t *s, int pitch, const uint8_t *blimit0, const uint8_t *limit0, const uint8_t *thresh0, const uint8_t *blimit1, const uint8_t *limit1, const uint8_t *thresh1, int bd) argument 604 highbd_filter16(int8_t mask, uint8_t thresh, uint8_t flat, uint8_t flat2, uint16_t *op7, uint16_t *op6, uint16_t *op5, uint16_t *op4, uint16_t *op3, uint16_t *op2, uint16_t *op1, uint16_t *op0, uint16_t *oq0, uint16_t *oq1, uint16_t *oq2, uint16_t *oq3, uint16_t *oq4, uint16_t *oq5, uint16_t *oq6, uint16_t *oq7, int bd) argument 667 vpx_highbd_lpf_horizontal_16_c(uint16_t *s, int p, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int count, int bd) argument 701 highbd_mb_lpf_vertical_edge_w(uint16_t *s, int p, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int count, int bd) argument 732 vpx_highbd_lpf_vertical_16_c(uint16_t *s, int p, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int bd) argument 738 vpx_highbd_lpf_vertical_16_dual_c(uint16_t *s, int p, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int bd) argument [all...] |
H A D | ssim.h | 87 unsigned int bd); 94 unsigned int bd);
|
H A D | subtract.c | 40 int bd) { 44 (void) bd; 36 vpx_highbd_subtract_block_c(int rows, int cols, int16_t *diff, ptrdiff_t diff_stride, const uint8_t *src8, ptrdiff_t src_stride, const uint8_t *pred8, ptrdiff_t pred_stride, int bd) argument
|
/external/libvpx/libvpx/vp9/common/ |
H A D | vp9_idct.h | 34 typedef void (*highbd_transform_1d)(const tran_low_t*, tran_low_t*, int bd); 61 int eob, int bd); 63 int eob, int bd); 65 int eob, int bd); 67 int stride, int eob, int bd); 69 int stride, int eob, int bd); 71 uint8_t *dest, int stride, int eob, int bd); 73 uint8_t *dest, int stride, int eob, int bd); 75 uint8_t *dest, int stride, int eob, int bd);
|
H A D | vp9_idct.c | 210 int stride, int tx_type, int bd) { 226 IHT_4[tx_type].rows(input, outptr, bd); 235 IHT_4[tx_type].cols(temp_in, temp_out, bd); 238 dest[j * stride + i], ROUND_POWER_OF_TWO(temp_out[j], 4), bd); 251 int stride, int tx_type, int bd) { 261 ht.rows(input, outptr, bd); 270 ht.cols(temp_in, temp_out, bd); 273 dest[j * stride + i], ROUND_POWER_OF_TWO(temp_out[j], 5), bd); 286 int stride, int tx_type, int bd) { 296 ht.rows(input, outptr, bd); 209 vp9_highbd_iht4x4_16_add_c(const tran_low_t *input, uint8_t *dest8, int stride, int tx_type, int bd) argument 250 vp9_highbd_iht8x8_64_add_c(const tran_low_t *input, uint8_t *dest8, int stride, int tx_type, int bd) argument 285 vp9_highbd_iht16x16_256_add_c(const tran_low_t *input, uint8_t *dest8, int stride, int tx_type, int bd) argument 314 vp9_highbd_idct4x4_add(const tran_low_t *input, uint8_t *dest, int stride, int eob, int bd) argument 323 vp9_highbd_iwht4x4_add(const tran_low_t *input, uint8_t *dest, int stride, int eob, int bd) argument 331 vp9_highbd_idct8x8_add(const tran_low_t *input, uint8_t *dest, int stride, int eob, int bd) argument 350 vp9_highbd_idct16x16_add(const tran_low_t *input, uint8_t *dest, int stride, int eob, int bd) argument 364 vp9_highbd_idct32x32_add(const tran_low_t *input, uint8_t *dest, int stride, int eob, int bd) argument 377 vp9_highbd_iht4x4_add(TX_TYPE tx_type, const tran_low_t *input, uint8_t *dest, int stride, int eob, int bd) argument 385 vp9_highbd_iht8x8_add(TX_TYPE tx_type, const tran_low_t *input, uint8_t *dest, int stride, int eob, int bd) argument 394 vp9_highbd_iht16x16_add(TX_TYPE tx_type, const tran_low_t *input, uint8_t *dest, int stride, int eob, int bd) argument [all...] |
/external/libpng/contrib/libtests/ |
H A D | gentests.sh | 88 for bd in 1 2 4 8 90 doit "$ct" "$bd" 98 for bd in 8 16 100 doit "$ct" "$bd"
|
/external/fio/engines/ |
H A D | binject.c | 35 static void binject_buc_init(struct binject_data *bd, struct io_u *io_u) argument 97 struct binject_data *bd = td->io_ops->data; local 99 void *buf = bd->cmds; 113 bd->fd_flags[i] = fio_set_fd_nonblocking(bf->fd, "binject"); 115 bd->fd_flags[i] = -1; 117 bd->pfds[i].fd = bf->fd; 118 bd->pfds[i].events = POLLIN; 123 ret = poll(bd->pfds, td->o.nr_files, -1); 132 if (pollin_events(bd->pfds, td->o.nr_files)) 150 bd 188 struct binject_data *bd = td->io_ops->data; local 237 struct binject_data *bd = td->io_ops->data; local 379 struct binject_data *bd = td->io_ops->data; local 392 struct binject_data *bd; local [all...] |
/external/mesa3d/src/mesa/drivers/dri/i965/ |
H A D | brw_fs_live_variables.cpp | 70 if (!bd[b].def[reg]) 71 bd[b].use[reg] = true; 85 if (!bd[b].use[reg]) 86 bd[b].def[reg] = true; 111 if (bd[b].use[i] || (bd[b].liveout[i] && !bd[b].def[i])) { 112 if (!bd[b].livein[i]) { 113 bd[b].livein[i] = true; 125 if (bd[bloc [all...] |
H A D | brw_fs_live_variables.h | 78 struct block_data *bd; member in class:brw::fs_live_variables
|
/external/llvm/test/MC/MachO/ARM/ |
H A D | llvm-objdump-macho.s | 14 # CHECK: 2: 80 bd pop {r7, pc} 17 # CHECK: 6: 80 bd pop {r7, pc}
|
/external/v8/src/ |
H A D | diy-fp.cc | 26 uint64_t bd = b * d; local 27 uint64_t tmp = (bd >> 32) + (ad & kM32) + (bc & kM32);
|
/external/libvpx/libvpx/vp9/encoder/ |
H A D | vp9_resize.h | 77 int bd); 92 int bd); 107 int bd); 122 int bd);
|
H A D | vp9_resize.c | 542 uint16_t *output, int outlength, int bd) { 582 *optr++ = clip_pixel_highbd(ROUND_POWER_OF_TWO(sum, FILTER_BITS), bd); 596 *optr++ = clip_pixel_highbd(ROUND_POWER_OF_TWO(sum, FILTER_BITS), bd); 607 *optr++ = clip_pixel_highbd(ROUND_POWER_OF_TWO(sum, FILTER_BITS), bd); 620 *optr++ = clip_pixel_highbd(ROUND_POWER_OF_TWO(sum, FILTER_BITS), bd); 626 uint16_t *output, int bd) { 646 *optr++ = clip_pixel_highbd(sum, bd); 656 *optr++ = clip_pixel_highbd(sum, bd); 665 *optr++ = clip_pixel_highbd(sum, bd); 676 *optr++ = clip_pixel_highbd(sum, bd); 541 highbd_interpolate(const uint16_t *const input, int inlength, uint16_t *output, int outlength, int bd) argument 625 highbd_down2_symeven(const uint16_t *const input, int length, uint16_t *output, int bd) argument 681 highbd_down2_symodd(const uint16_t *const input, int length, uint16_t *output, int bd) argument 736 highbd_resize_multistep(const uint16_t *const input, int length, uint16_t *output, int olength, uint16_t *buf, int bd) argument 805 vp9_highbd_resize_plane(const uint8_t *const input, int height, int width, int in_stride, uint8_t *output, int height2, int width2, int out_stride, int bd) argument 821 intbuf + width2 * i, width2, tmpbuf, bd); local 883 vp9_highbd_resize_frame420(const uint8_t *const y, int y_stride, const uint8_t *const u, const uint8_t *const v, int uv_stride, int height, int width, uint8_t *oy, int oy_stride, uint8_t *ou, uint8_t *ov, int ouv_stride, int oheight, int owidth, int bd) argument 899 vp9_highbd_resize_frame422(const uint8_t *const y, int y_stride, const uint8_t *const u, const uint8_t *const v, int uv_stride, int height, int width, uint8_t *oy, int oy_stride, uint8_t *ou, uint8_t *ov, int ouv_stride, int oheight, int owidth, int bd) argument 914 vp9_highbd_resize_frame444(const uint8_t *const y, int y_stride, const uint8_t *const u, const uint8_t *const v, int uv_stride, int height, int width, uint8_t *oy, int oy_stride, uint8_t *ou, uint8_t *ov, int ouv_stride, int oheight, int owidth, int bd) argument [all...] |
/external/libvpx/libvpx/vpx_dsp/x86/ |
H A D | convolve.h | 148 int bd 160 int w, int h, int bd) { \ 172 bd); \ 184 bd); \ 196 bd); \ 209 bd); \ 221 bd); \ 233 bd); \ 243 w, h, bd); \ 252 int w, int h, int bd) { \ [all...] |
H A D | highbd_loopfilter_sse2.c | 17 static INLINE __m128i signed_char_clamp_bd_sse2(__m128i value, int bd) { argument 26 if (bd == 8) { 30 } else if (bd == 10) { 34 } else { // bd == 12 59 int bd) { 78 if (bd == 8) { 82 } else if (bd == 10) { 89 } else { // bd == 12 151 if (bd == 8) 153 else if (bd 54 highbd_mb_lpf_horizontal_edge_w_sse2_8(uint16_t *s, int p, const uint8_t *_blimit, const uint8_t *_limit, const uint8_t *_thresh, int bd) argument 499 highbd_mb_lpf_horizontal_edge_w_sse2_16(uint16_t *s, int p, const uint8_t *_blimit, const uint8_t *_limit, const uint8_t *_thresh, int bd) argument 511 vpx_highbd_lpf_horizontal_16_sse2(uint16_t *s, int p, const uint8_t *_blimit, const uint8_t *_limit, const uint8_t *_thresh, int count, int bd) argument 522 vpx_highbd_lpf_horizontal_8_sse2(uint16_t *s, int p, const uint8_t *_blimit, const uint8_t *_limit, const uint8_t *_thresh, int count, int bd) argument 759 vpx_highbd_lpf_horizontal_8_dual_sse2(uint16_t *s, int p, const uint8_t *_blimit0, const uint8_t *_limit0, const uint8_t *_thresh0, const uint8_t *_blimit1, const uint8_t *_limit1, const uint8_t *_thresh1, int bd) argument 772 vpx_highbd_lpf_horizontal_4_sse2(uint16_t *s, int p, const uint8_t *_blimit, const uint8_t *_limit, const uint8_t *_thresh, int count, int bd) argument 939 vpx_highbd_lpf_horizontal_4_dual_sse2(uint16_t *s, int p, const uint8_t *_blimit0, const uint8_t *_limit0, const uint8_t *_thresh0, const uint8_t *_blimit1, const uint8_t *_limit1, const uint8_t *_thresh1, int bd) argument 1057 vpx_highbd_lpf_vertical_4_sse2(uint16_t *s, int p, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int count, int bd) argument 1084 vpx_highbd_lpf_vertical_4_dual_sse2(uint16_t *s, int p, const uint8_t *blimit0, const uint8_t *limit0, const uint8_t *thresh0, const uint8_t *blimit1, const uint8_t *limit1, const uint8_t *thresh1, int bd) argument 1111 vpx_highbd_lpf_vertical_8_sse2(uint16_t *s, int p, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int count, int bd) argument 1138 vpx_highbd_lpf_vertical_8_dual_sse2(uint16_t *s, int p, const uint8_t *blimit0, const uint8_t *limit0, const uint8_t *thresh0, const uint8_t *blimit1, const uint8_t *limit1, const uint8_t *thresh1, int bd) argument 1166 vpx_highbd_lpf_vertical_16_sse2(uint16_t *s, int p, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int bd) argument 1195 vpx_highbd_lpf_vertical_16_dual_sse2(uint16_t *s, int p, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int bd) argument [all...] |
/external/libvpx/libvpx/vp8/encoder/mips/msa/ |
H A D | encodeopt_msa.c | 46 BLOCKD *bd; local 65 bd = &mb->e_mbd.block[2 * loop_cnt]; 67 dq_coeff_ptr = bd->dqcoeff; 75 bd = &mb->e_mbd.block[2 * loop_cnt + 1]; 77 dq_coeff_ptr = bd->dqcoeff; 115 BLOCKD *bd; local 127 bd = &mb->e_mbd.block[loop_cnt]; 129 dq_coeff_ptr = bd->dqcoeff; 137 bd = &mb->e_mbd.block[loop_cnt + 1]; 139 dq_coeff_ptr = bd [all...] |
/external/libvpx/libvpx/vp8/encoder/ |
H A D | encodemb.h | 22 void vp8_subtract_b(BLOCK *be, BLOCKD *bd, int pitch);
|
/external/icu/icu4c/source/common/ |
H A D | ubidi.c | 672 bracketInit(UBiDi *pBiDi, BracketData *bd) { argument 673 bd->pBiDi=pBiDi; 674 bd->isoRunLast=0; 675 bd->isoRuns[0].start=0; 676 bd->isoRuns[0].limit=0; 677 bd->isoRuns[0].level=GET_PARALEVEL(pBiDi, 0); 678 bd->isoRuns[0].lastStrong=bd->isoRuns[0].lastBase=bd->isoRuns[0].contextDir=GET_PARALEVEL(pBiDi, 0)&1; 679 bd 693 bracketProcessB(BracketData *bd, UBiDiLevel level) argument 703 bracketProcessBoundary(BracketData *bd, int32_t lastCcPos, UBiDiLevel contextLevel, UBiDiLevel embeddingLevel) argument 719 bracketProcessLRI_RLI(BracketData *bd, UBiDiLevel level) argument 734 bracketProcessPDI(BracketData *bd) argument 743 bracketAddOpening(BracketData *bd, UChar match, int32_t position) argument 768 fixN0c(BracketData *bd, int32_t openingIndex, int32_t newPropPosition, DirProp newProp) argument 795 bracketProcessClosing(BracketData *bd, int32_t openIdx, int32_t position) argument 873 bracketProcessChar(BracketData *bd, int32_t position) argument [all...] |
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/ |
H A D | TreeTraverserTest.java | 110 static final BinaryTree bd = new BinaryTree('d', bb, be); field in class:TreeTraverserTest 130 ASSERT.that(binaryIterationOrder(BIN_ADAPTER.preOrderTraversal(bd))).is("dbacefg"); 135 ASSERT.that(binaryIterationOrder(BIN_ADAPTER.postOrderTraversal(bd))).is("acbgfed"); 140 ASSERT.that(binaryIterationOrder(BIN_ADAPTER.breadthFirstTraversal(bd))).is("dbeacfg"); 144 ASSERT.that(binaryIterationOrder(BIN_ADAPTER.inOrderTraversal(bd))).is("abcdegf");
|