Searched refs:new_dst (Results 1 – 3 of 3) sorted by relevance
/third_party/lz4/contrib/meson/meson/ |
D | InstallSymlink.py | 22 new_dst = install_dir.joinpath(dst) 23 if new_dst.is_symlink() and os.readlink(new_dst) == src: 24 print('File exists: {!r} -> {!r}'.format(new_dst, src)) 26 print('Installing symlink {!r} -> {!r}'.format(new_dst, src)) 27 new_dst.symlink_to(src, target_is_directory=dst_is_dir)
|
/third_party/ffmpeg/tests/checkasm/ |
D | flacdsp.c | 44 static void check_decorrelate(uint8_t **ref_dst, uint8_t **ref_src, uint8_t **new_dst, uint8_t **ne… in check_decorrelate() argument 50 call_new(new_dst, (int32_t **)new_src, channels, BUF_SIZE / sizeof(int32_t), 8); in check_decorrelate() 51 if (memcmp(*ref_dst, *new_dst, bits == 16 ? BUF_SIZE * (channels/2) : BUF_SIZE * channels) || in check_decorrelate() 54 bench_new(new_dst, (int32_t **)new_src, channels, BUF_SIZE / sizeof(int32_t), 8); in check_decorrelate() 61 LOCAL_ALIGNED_16(uint8_t, new_dst, [BUF_SIZE*MAX_CHANNELS]); in checkasm_check_flacdsp() 82 check_decorrelate(&ref_dst, ref_src, &new_dst, new_src, 2, fmts[i].bits); in checkasm_check_flacdsp() 86 check_decorrelate(&ref_dst, ref_src, &new_dst, new_src, j, fmts[i].bits); in checkasm_check_flacdsp()
|
/third_party/mesa3d/src/freedreno/ir3/ |
D | ir3_parser.y | 168 static struct ir3_register * new_dst(int num, unsigned flags) in new_dst() function 182 return new_dst(0, 0); in dummy_dst() 827 new_dst((61 << 3) + 2, IR3_REG_HALF); 834 new_dst((61 << 3), IR3_REG_HALF); 1055 cat6_prefetch: T_OP_PREFETCH { new_instr(OPC_PREFETCH); new_dst(0,0); /* dummy dst */ } 'g' '['… 1167 dst: T_REGISTER { $$ = new_dst($1, 0); } 1168 | T_A0 { $$ = new_dst((61 << 3), IR3_REG_HALF); } 1169 | T_A1 { $$ = new_dst((61 << 3) + 1, IR3_REG_HALF); } 1170 | T_P0 { $$ = new_dst((62 << 3) + $1, 0); } 1223 relative_gpr_dst: 'r' '<' T_A0 offset '>' { new_dst(0, IR3_REG_RELATIV)->array.offset = $4; } [all …]
|