| /netbsd-src/external/gpl3/gcc.old/dist/gcc/ |
| H A D | omp-offload.c | 326 tree diff_type = TREE_TYPE (range); in oacc_xform_loop() local 432 r = fold_convert (diff_type, r); in oacc_xform_loop() 441 volume = fold_convert (diff_type, volume); in oacc_xform_loop() 443 chunk_size = fold_convert (diff_type, chunk_size); in oacc_xform_loop() 446 tree per = fold_build2 (MULT_EXPR, diff_type, volume, step); in oacc_xform_loop() 448 chunk_size = build2 (MINUS_EXPR, diff_type, range, dir); in oacc_xform_loop() 449 chunk_size = build2 (PLUS_EXPR, diff_type, chunk_size, per); in oacc_xform_loop() 450 chunk_size = build2 (TRUNC_DIV_EXPR, diff_type, chunk_size, per); in oacc_xform_loop() 453 tree span = build2 (MULT_EXPR, diff_type, chunk_size, in oacc_xform_loop() 454 fold_convert (diff_type, inner_size)); in oacc_xform_loop() [all …]
|
| H A D | omp-expand.c | 1551 oacc_collapse *counts, tree diff_type, in expand_oacc_collapse_init() argument 1587 counts[ix].tile = create_tmp_var (diff_type, ".tile"); in expand_oacc_collapse_init() 1604 tree dir = build_int_cst (diff_type, up ? +1 : -1); in expand_oacc_collapse_init() 1617 s = fold_convert (diff_type, s); in expand_oacc_collapse_init() 1619 s = fold_build1 (NEGATE_EXPR, diff_type, s); in expand_oacc_collapse_init() 1628 expr = fold_convert (diff_type, expr); in expand_oacc_collapse_init() 1630 expr = fold_build1 (NEGATE_EXPR, diff_type, expr); in expand_oacc_collapse_init() 1635 expr = fold_build2 (MINUS_EXPR, diff_type, range, dir); in expand_oacc_collapse_init() 1636 expr = fold_build2 (PLUS_EXPR, diff_type, expr, s); in expand_oacc_collapse_init() 1637 expr = fold_build2 (TRUNC_DIV_EXPR, diff_type, expr, s); in expand_oacc_collapse_init() [all …]
|
| /netbsd-src/usr.bin/patch/ |
| H A D | patch.c | 90 int diff_type = 0; variable 232 if (diff_type == ED_DIFF) { in main() 452 diff_type = 0; in reinitialize_almost_everything() 528 diff_type = CONTEXT_DIFF; in get_some_switches() 549 diff_type = ED_DIFF; in get_some_switches() 569 diff_type = NORMAL_DIFF; in get_some_switches() 596 diff_type = UNI_DIFF; in get_some_switches() 663 if (verbose && fuzz == 0 && (diff_type == CONTEXT_DIFF in locate_hunk() 664 || diff_type == NEW_CONTEXT_DIFF in locate_hunk() 665 || diff_type == UNI_DIFF)) { in locate_hunk() [all …]
|
| H A D | pch.c | 200 diff_type = intuit_diff_type(); in there_is_another_patch() 201 if (!diff_type) { in there_is_another_patch() 212 diff_type == UNI_DIFF ? "a unified diff" : in there_is_another_patch() 213 diff_type == CONTEXT_DIFF ? "a context diff" : in there_is_another_patch() 214 diff_type == NEW_CONTEXT_DIFF ? "a new-style context diff" : in there_is_another_patch() 215 diff_type == NORMAL_DIFF ? "a normal diff" : in there_is_another_patch() 328 if ((!diff_type || diff_type == ED_DIFF) && in intuit_diff_type() 337 if ((!diff_type || diff_type == UNI_DIFF) && strnEQ(s, "@@ -", 4)) { in intuit_diff_type() 347 if ((!diff_type || diff_type == CONTEXT_DIFF) && stars_last_line && in intuit_diff_type() 363 if ((!diff_type || diff_type == NORMAL_DIFF) && in intuit_diff_type() [all …]
|
| H A D | common.h | 118 extern int diff_type;
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/ |
| H A D | omp-offload.cc | 552 tree diff_type = TREE_TYPE (range); in oacc_xform_loop() local 658 r = fold_convert (diff_type, r); in oacc_xform_loop() 667 volume = fold_convert (diff_type, volume); in oacc_xform_loop() 669 chunk_size = fold_convert (diff_type, chunk_size); in oacc_xform_loop() 672 tree per = fold_build2 (MULT_EXPR, diff_type, volume, step); in oacc_xform_loop() 674 chunk_size = build2 (MINUS_EXPR, diff_type, range, dir); in oacc_xform_loop() 675 chunk_size = build2 (PLUS_EXPR, diff_type, chunk_size, per); in oacc_xform_loop() 676 chunk_size = build2 (TRUNC_DIV_EXPR, diff_type, chunk_size, per); in oacc_xform_loop() 679 tree span = build2 (MULT_EXPR, diff_type, chunk_size, in oacc_xform_loop() 680 fold_convert (diff_type, inner_size)); in oacc_xform_loop() [all …]
|
| H A D | omp-expand.cc | 1553 oacc_collapse *counts, tree diff_type, in expand_oacc_collapse_init() argument 1589 counts[ix].tile = create_tmp_var (diff_type, ".tile"); in expand_oacc_collapse_init() 1606 tree dir = build_int_cst (diff_type, up ? +1 : -1); in expand_oacc_collapse_init() 1619 s = fold_convert (diff_type, s); in expand_oacc_collapse_init() 1621 s = fold_build1 (NEGATE_EXPR, diff_type, s); in expand_oacc_collapse_init() 1630 expr = fold_convert (diff_type, expr); in expand_oacc_collapse_init() 1632 expr = fold_build1 (NEGATE_EXPR, diff_type, expr); in expand_oacc_collapse_init() 1637 expr = fold_build2 (MINUS_EXPR, diff_type, range, dir); in expand_oacc_collapse_init() 1638 expr = fold_build2 (PLUS_EXPR, diff_type, expr, s); in expand_oacc_collapse_init() 1639 expr = fold_build2 (TRUNC_DIV_EXPR, diff_type, expr, s); in expand_oacc_collapse_init() [all …]
|
| H A D | ChangeLog-2020 | 3010 Use now passed diff_type. 3011 (expand_oacc_for): Take largest type for diff_type, taking tiling
|
| H A D | ChangeLog-2018 | 30135 * omp-expand.c (expand_oacc_collapse_init): Ensure diff_type is large
|
| H A D | ChangeLog-2017 | 21272 * omp-expand.c (expand_oacc_for): Ensure diff_type is large enough.
|
| /netbsd-src/external/gpl2/xcvs/dist/diff/ |
| H A D | diff3.c | 73 enum diff_type { enum 95 enum diff_type correspond; /* Type of diff */ 199 static enum diff_type process_diff_control PARAMS((char **, struct diff_block *)); 1083 enum diff_type dt; 1192 static enum diff_type 1199 enum diff_type type; 1602 enum diff_type type 1605 ((enum diff_type) 1729 enum diff_type type 1732 ((enum diff_type)
|
| /netbsd-src/external/gpl2/diffutils/dist/src/ |
| H A D | diff3.c | 70 enum diff_type { enum 92 enum diff_type correspond; /* Type of diff */ 187 static enum diff_type process_diff_control (char **, struct diff_block *); 952 enum diff_type dt; in process_diff() 1067 static enum diff_type 1072 enum diff_type type; in process_diff_control() 1502 enum diff_type type in output_diff3_edscript() 1620 enum diff_type type in output_diff3_merge()
|
| /netbsd-src/external/cddl/osnet/dist/uts/common/fs/zfs/sys/ |
| H A D | zfs_ioctl.h | 288 typedef enum diff_type { enum
|