| /src/external/gpl2/diffutils/dist/src/ |
| normal.c | 40 describing changes in consecutive lines. */ 49 enum changes changes = analyze_hunk (hunk, &first0, &last0, &first1, &last1); local 50 if (!changes) 57 fprintf (outfile, "%c", change_letter[changes]); 62 if (changes & OLD) 66 if (changes == CHANGED) 70 if (changes & NEW)
|
| ed.c | 46 enum changes changes; 53 changes = analyze_hunk (hunk, &f0, &l0, &f1, &l1); 54 if (!changes) 61 fprintf (outfile, "%c\n", change_letter[changes]); 64 if (changes != OLD) 87 but print the changes in the order they appear in the input files, 102 enum changes changes = analyze_hunk (hunk, &f0, &l0, &f1, &l1); 103 if (!changes) 45 enum changes changes; local 100 enum changes changes = analyze_hunk (hunk, &f0, &l0, &f1, &l1); local 143 enum changes changes = analyze_hunk (hunk, &f0, &l0, &f1, &l1); local [all...] |
| ifdef.c | 66 describing changes in consecutive lines. */ 74 enum changes changes = analyze_hunk (hunk, &first0, &last0, &first1, &last1); local 75 if (!changes) 87 format_ifdef (group_format[changes], first0, next_line, first1, last1 + 1);
|
| side.c | 236 describing changes in consecutive lines. */ 245 enum changes changes = local 247 if (!changes) 261 if (changes == CHANGED) 265 changes = (i <= last0 ? OLD : 0) + (j <= last1 ? NEW : 0); 271 if (changes & NEW) 279 if (changes & OLD)
|
| context.c | 172 enum changes changes = analyze_hunk (hunk, &first0, &last0, &first1, &last1); 173 if (! changes) 207 if (changes & OLD) 213 /* Skip past changes that apply (in file 0) 236 if (changes & NEW) 242 /* Skip past changes that apply (in file 1) 399 changes, but only CONTEXT if one is ignorable. Watch out for 169 enum changes changes = analyze_hunk (hunk, &first0, &last0, &first1, &last1); local
|
| analyze.c | 185 of changes, the algorithm is linear in the file size. */ 603 /* Adjust inserts/deletes of identical lines to join changes 631 /* Scan forwards to find beginning of another run of changes. 646 /* Find the end of this run of changes. */ 655 /* Record the length of this run of changes, so that 696 /* If possible, move the fully-merged run of changes 805 /* If CHANGES, briefly report that two files differed. 806 Return 2 if trouble, CHANGES otherwise. */ 808 briefly_report (int changes, struct file_data const filevec[]) 810 if (changes) 830 int changes; local [all...] |
| diff.h | 30 /* What kind of changes a hunk contains. */ 31 enum changes enum 33 /* No changes: lines common to both files. */ 111 /* Ignore changes due to tab expansion (-E). */ 114 /* Ignore changes in horizontal white space (-b). */ 121 /* Ignore changes that affect only blank lines (-B). */ 140 /* Ignore changes that affect only lines matching this regexp (-I). */ 191 density of changes. */ 198 slower) but will find a guaranteed minimal set of changes. */ 364 enum changes analyze_hunk (struct change *, lin *, lin *, lin *, lin *) [all...] |
| /src/external/gpl3/gcc/dist/gcc/rtl-ssa/ |
| change-utils.h | 22 // Return true if INSN is one of the instructions being changed by CHANGES. 24 insn_is_changing (array_slice<insn_change *const> changes, 27 for (const insn_change *change : changes) 41 insn_is_changing (array_slice<insn_change *const> changes) 43 return insn_is_changing_closure (changes); 122 // Check whether insn costs indicate that the net effect of the changes 123 // in CHANGES is worthwhile. Require a strict improvement if STRICT_P, 126 bool changes_are_worthwhile (array_slice<insn_change *const> changes, 133 insn_change *changes[] = { &change }; local 134 return changes_are_worthwhile (changes, strict_p) [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/rtl-ssa/ |
| change-utils.h | 22 // Return true if INSN is one of the instructions being changed by CHANGES. 24 insn_is_changing (array_slice<insn_change *const> changes, 27 for (const insn_change *change : changes) 41 insn_is_changing (array_slice<insn_change *const> changes) 43 return insn_is_changing_closure (changes); 122 // Check whether insn costs indicate that the net effect of the changes 123 // in CHANGES is worthwhile. Require a strict improvement if STRICT_P, 126 bool changes_are_worthwhile (array_slice<insn_change *const> changes, 133 insn_change *changes[] = { &change }; local 134 return changes_are_worthwhile (changes, strict_p) [all...] |
| changes.cc | 98 function_info::verify_insn_changes (array_slice<insn_change *const> changes) 105 for (insn_change *change : changes) 108 // Make sure that the changes can be kept in their current order 169 rtl_ssa::changes_are_worthwhile (array_slice<insn_change *const> changes, 174 for (insn_change *change : changes) 190 for (const insn_change *change : changes) 197 for (const insn_change *change : changes) 274 // Record any changes related to CHANGE that need to be queued for later. 445 // insns or if they have been used by earlier changes. Doing this 580 function_info::change_insns (array_slice<insn_change *> changes) 716 insn_change *changes[] = { &change }; local [all...] |
| /src/games/ching/printching/ |
| printching.c | 62 static int changes(void); 128 if (changes()) 187 * Compute the changes based on moving lines; return 1 if any lines moved, 191 changes(void) function
|
| /src/tests/fs/tmpfs/ |
| h_tools.c | 120 struct kevent *changes, event; local 128 changes = malloc(sizeof(struct kevent) * argc); 129 if (changes == NULL) 139 EV_SET(&changes[i], fd, EVFILT_VNODE, 157 (void)kevent(kq, changes, argc, &event, 1, &to); 167 nev = kevent(kq, changes, argc, &event, 1, &to); 172 if (event.ident == changes[i].ident) 194 close(changes[i].ident); 195 free(changes);
|
| /src/external/bsd/libevent/dist/ |
| devpoll.c | 63 struct pollfd *changes; member in struct:devpollop 94 if (pwrite(devpollop->dpfd, devpollop->changes, 115 pfd = &devpollop->changes[devpollop->nchanges++]; 157 devpollop->changes = mm_calloc(nfiles, sizeof(struct pollfd)); 158 if (devpollop->changes == NULL) { 305 if (devpollop->changes) 306 mm_free(devpollop->changes);
|
| kqueue.c | 81 struct kevent *changes; member in struct:kqop 144 kqueueop->changes = mm_calloc(NEVENT, sizeof(struct kevent)); 145 if (kqueueop->changes == NULL) 153 memset(&kqueueop->changes[0], 0, sizeof kqueueop->changes[0]); 154 kqueueop->changes[0].ident = -1; 155 kqueueop->changes[0].filter = EVFILT_READ; 156 kqueueop->changes[0].flags = EV_ADD; 163 kqueueop->changes, 1, kqueueop->events, NEVENT, NULL) != 1 || 215 struct event_change *in_ch = &changelist->changes[i] 274 struct kevent *changes; local [all...] |
| /src/external/bsd/ntp/dist/sntp/libevent/ |
| devpoll.c | 62 struct pollfd *changes; member in struct:devpollop 93 if (pwrite(devpollop->dpfd, devpollop->changes, 114 pfd = &devpollop->changes[devpollop->nchanges++]; 156 devpollop->changes = mm_calloc(nfiles, sizeof(struct pollfd)); 157 if (devpollop->changes == NULL) { 304 if (devpollop->changes) 305 mm_free(devpollop->changes);
|
| kqueue.c | 80 struct kevent *changes; member in struct:kqop 143 kqueueop->changes = mm_calloc(NEVENT, sizeof(struct kevent)); 144 if (kqueueop->changes == NULL) 152 memset(&kqueueop->changes[0], 0, sizeof kqueueop->changes[0]); 153 kqueueop->changes[0].ident = -1; 154 kqueueop->changes[0].filter = EVFILT_READ; 155 kqueueop->changes[0].flags = EV_ADD; 162 kqueueop->changes, 1, kqueueop->events, NEVENT, NULL) != 1 || 214 struct event_change *in_ch = &changelist->changes[i] 273 struct kevent *changes; local [all...] |
| /src/external/gpl3/gcc/dist/gcc/config/aarch64/ |
| aarch64-cc-fusion.cc | 184 insn_change *changes[] = { &other_change, &cc_change }; local 186 if (!restrict_movement_ignoring (cc_change, insn_is_changing (changes))) 208 if (!recog_ignoring (attempt, cc_change, insn_is_changing (changes)) 209 || !changes_are_worthwhile (changes) 210 || !crtl->ssa->verify_insn_changes (changes)) 215 crtl->ssa->change_insns (changes);
|
| /src/external/gpl3/gcc.old/dist/gcc/config/aarch64/ |
| aarch64-cc-fusion.cc | 184 insn_change *changes[] = { &other_change, &cc_change }; local 186 if (!restrict_movement_ignoring (cc_change, insn_is_changing (changes))) 208 if (!recog_ignoring (attempt, cc_change, insn_is_changing (changes)) 209 || !changes_are_worthwhile (changes) 210 || !crtl->ssa->verify_insn_changes (changes)) 215 crtl->ssa->change_insns (changes);
|
| /src/sys/net/ |
| slcompress.c | 182 u_int changes = 0; local 290 * expects changes in the order: urgent, window, ack, seq (the order 296 changes |= NEW_U; 308 changes |= NEW_W; 316 changes |= NEW_A; 324 changes |= NEW_S; 327 switch (changes) { 346 * actual changes match one of our special case encodings -- 355 changes = SPECIAL_I; 363 changes = SPECIAL_D 476 u_int hlen, changes; local [all...] |
| /src/external/gpl2/xcvs/dist/src/ |
| logmsg.c | 23 const char *message, FILE * logfp, List * changes); 29 static void setup_tmpfile (FILE * xfp, char *xprefix, List * changes); 54 List *changes; member in struct:verifymsg_proc_data 65 setup_tmpfile (FILE *xfp, char *xprefix, List *changes) 72 if (walklist (changes, find_type, NULL) != 0) 76 (void) walklist (changes, fmt_proc, NULL); 85 if (walklist (changes, find_type, NULL) != 0) 89 (void) walklist (changes, fmt_proc, NULL); 98 if (walklist (changes, find_type, NULL) != 0) 102 (void) walklist (changes, fmt_proc, NULL) 566 List *changes; member in struct:ulp_data [all...] |
| /src/external/gpl3/gdb/dist/gdb/mi/ |
| mi-cmd-var.c | 678 std::vector<varobj_update_result> changes = varobj_update (&var, is_explicit); local 680 for (const varobj_update_result &r : changes)
|
| /src/external/gpl3/gdb.old/dist/gdb/mi/ |
| mi-cmd-var.c | 678 std::vector<varobj_update_result> changes = varobj_update (&var, is_explicit); local 680 for (const varobj_update_result &r : changes)
|
| /src/external/mpl/bind/dist/tests/dns/ |
| sigs_test.c | 71 const zonechange_t *changes; /* array of "raw" zone changes */ member in struct:__anon24220 72 const zonediff_t *zonediff; /* array of "processed" zone changes 213 REQUIRE(test->changes != NULL); 225 * Create a diff representing the supplied changes. 227 result = dns_test_difffromchanges(&raw_diff, test->changes, false); 284 * Apply changes to zone database contents and clean up. 323 * Define the tests to be run. Note that changes to zone database 341 .changes = changes_add, 359 .changes = changes_append [all...] |
| /src/external/gpl2/xcvs/dist/diff/ |
| analyze.c | 187 of changes, the algorithm is linear in the file size. */ 610 /* Adjust inserts/deletes of identical lines to join changes 644 /* Scan forwards to find beginning of another run of changes. 659 /* Find the end of this run of changes. */ 668 /* Record the length of this run of changes, so that 709 /* If possible, move the fully-merged run of changes 821 /* If CHANGES, briefly report that two files differed. */ 823 briefly_report (changes, filevec) 824 int changes; 827 if (changes) 839 int changes; local [all...] |
| /src/usr.sbin/inetd/ |
| inetd.c | 255 size_t changes; variable 423 n = my_kevent(changebuf, changes, eventbuf, __arraycount(eventbuf)); 424 changes = 0; 1717 if (changes == __arraycount(changebuf)) { 1719 changes = 0; 1722 return (&changebuf[changes++]);
|