| /src/external/gpl3/binutils/dist/ld/emultempl/ |
| spu_icache.S | 4 stop 7 stop
|
| /src/external/gpl3/binutils.old/dist/ld/emultempl/ |
| spu_icache.S | 4 stop 7 stop
|
| /src/external/gpl3/gdb/dist/sim/ppc/ |
| bits.c | 30 int stop) 32 word &= LSMASK64 (start, stop); 40 int stop) 43 val >>= (64 - 1 - start) + (stop); /* drop low bits */ 51 unsigned stop) 53 return (word & MASK32(start, stop)); 60 unsigned stop) 62 return (word & MASK64(start, stop)); 69 unsigned stop) 71 return ((word) & MASK(start, stop)); [all...] |
| /src/external/gpl3/gdb.old/dist/sim/ppc/ |
| bits.c | 30 int stop) 32 word &= LSMASK64 (start, stop); 40 int stop) 43 val >>= (64 - 1 - start) + (stop); /* drop low bits */ 51 unsigned stop) 53 return (word & MASK32(start, stop)); 60 unsigned stop) 62 return (word & MASK64(start, stop)); 69 unsigned stop) 71 return ((word) & MASK(start, stop)); [all...] |
| /src/external/gpl3/gdb.old/dist/sim/common/ |
| sim-bits.c | 38 int stop) 40 /* NOTE - start, stop can wrap */ 41 val &= LSMASK (start, stop); 50 int stop) 52 /* NOTE - start, stop can wrap */ 53 val &= MSMASK (start, stop); 62 int stop) 64 ASSERT (start >= stop); 66 return LSEXTRACTED64 (val, start, stop); 69 if (stop >= 32 75 val >>= stop; local 86 val >>= stop; local 145 val <<= stop; local 157 val <<= stop; local [all...] |
| /src/external/gpl3/gdb/dist/sim/common/ |
| sim-bits.c | 38 int stop) 40 /* NOTE - start, stop can wrap */ 41 val &= LSMASK (start, stop); 50 int stop) 52 /* NOTE - start, stop can wrap */ 53 val &= MSMASK (start, stop); 62 int stop) 64 ASSERT (start >= stop); 66 return LSEXTRACTED64 (val, start, stop); 69 if (stop >= 32 75 val >>= stop; local 86 val >>= stop; local 145 val <<= stop; local 157 val <<= stop; local [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.dap/ |
| modules.c | 21 stop (void) function 31 stop (); 37 func (stop); 40 stop ();
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.threads/ |
| step-N-all-progress.exp | 17 # steps. GDB used to have a bug where in target-non-stop targets, and 18 # in all-stop mode, after the first "next" (or "step/stepi/nexti"), 19 # GDB would prematurely stop all threads. For the subsequent N-1 30 proc test {non-stop target-non-stop} { 32 append ::GDBFLAGS " -ex \"maintenance set target-non-stop ${target-non-stop}\"" 33 append ::GDBFLAGS " -ex \"set non-stop ${non-stop}\"" 50 foreach_with_prefix non-stop {off on} [all...] |
| vfork-multi-thread.exp | 56 proc do_test { target-non-stop non-stop follow-fork-mode detach-on-fork schedule-multiple } { 58 append ::GDBFLAGS " -ex \"maintenance set target-non-stop ${target-non-stop}\"" 59 append ::GDBFLAGS " -ex \"set non-stop ${non-stop}\"" 86 foreach_with_prefix target-non-stop {auto on off} { 87 foreach_with_prefix non-stop {off on} { 91 do_test ${target-non-stop} ${non-stop} ${follow-fork-mode} ${detach-on-fork} ${schedule-multiple [all...] |
| step-over-thread-exit.exp | 46 # NS_STOP_ALL is only used if testing "set non-stop on", and indicates 47 # whether to have GDB explicitly stop all threads before continuing to 50 proc test {step_over_mode non-stop target-non-stop schedlock cmd ns_stop_all} { 51 if {${non-stop} == "off" && $ns_stop_all} { 56 append ::GDBFLAGS " -ex \"maintenance set target-non-stop ${target-non-stop}\"" 57 append ::GDBFLAGS " -ex \"set non-stop ${non-stop}\"" 72 || (${non-stop} == "on" && $ns_stop_all)} [all...] |
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.dap/ |
| modules.c | 21 stop (void) function 31 stop (); 37 func (stop); 40 stop ();
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.threads/ |
| step-N-all-progress.exp | 17 # steps. GDB used to have a bug where in target-non-stop targets, and 18 # in all-stop mode, after the first "next" (or "step/stepi/nexti"), 19 # GDB would prematurely stop all threads. For the subsequent N-1 30 proc test {non-stop target-non-stop} { 32 append ::GDBFLAGS " -ex \"maintenance set target-non-stop ${target-non-stop}\"" 33 append ::GDBFLAGS " -ex \"set non-stop ${non-stop}\"" 50 foreach_with_prefix non-stop {off on} [all...] |
| vfork-multi-thread.exp | 58 proc do_test { target-non-stop non-stop follow-fork-mode detach-on-fork schedule-multiple } { 60 append ::GDBFLAGS " -ex \"maintenance set target-non-stop ${target-non-stop}\"" 61 append ::GDBFLAGS " -ex \"set non-stop ${non-stop}\"" 88 foreach_with_prefix target-non-stop {auto on off} { 89 foreach_with_prefix non-stop {off on} { 93 do_test ${target-non-stop} ${non-stop} ${follow-fork-mode} ${detach-on-fork} ${schedule-multiple [all...] |
| step-over-thread-exit.exp | 46 # NS_STOP_ALL is only used if testing "set non-stop on", and indicates 47 # whether to have GDB explicitly stop all threads before continuing to 50 proc test {step_over_mode non-stop target-non-stop schedlock cmd ns_stop_all} { 51 if {${non-stop} == "off" && $ns_stop_all} { 56 append ::GDBFLAGS " -ex \"maintenance set target-non-stop ${target-non-stop}\"" 57 append ::GDBFLAGS " -ex \"set non-stop ${non-stop}\"" 72 || (${non-stop} == "on" && $ns_stop_all)} [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/ |
| info-shared.c | 21 stop (void) function 33 stop (); 37 stop (); 46 stop (); 49 stop ();
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/ |
| info-shared.c | 21 stop (void) function 33 stop (); 37 stop (); 46 stop (); 49 stop ();
|
| /src/external/gpl3/gcc/dist/gcc/analyzer/ |
| sm-file.dot | 44 /* Stop state, for a FILE * we don't want to track any more. */ 45 stop; 58 closed -> stop [label="on 'close(X);':\nWarn('double fclose')"]; 65 unchecked -> stop [label="on leak:\nWarn('leak')"]; 66 nonnull -> stop [label="on leak:\nWarn('leak')"];
|
| sm-malloc.dot | 51 /* Stop state, for pointers we don't want to track any more. */ 52 stop; 67 freed -> stop [label="on 'free(X);':\n Warn('double-free')"]; 68 non_heap -> stop [label="on 'free(X);':\n Warn('free of non-heap')"]; 72 null -> stop [label="on 'FN(X)' with __attribute__((nonnull)):\nWarn('NULL arg')"]; 86 null -> stop [label="on '*X':\nWarn('NULL deref')"]; 87 freed -> stop [label="on '*X':\nWarn('use after free')"]; 92 assumed_non_null -> stop [label="on 'if (X)':\nWarn('deref-before-check')"]; 94 unchecked -> stop [label="on leak:\nWarn('leak')"]; 95 nonnull -> stop [label="on leak:\nWarn('leak')"] [all...] |
| sm-fd.dot | 76 stop; 105 closed -> stop [label="on 'close(X);':\nWarn('double close')"]; 152 new_unknown_socket -> stop [label="when 'connect(X, ...)' succeeds"]; 153 start -> stop [label="when 'connect(X, ...)' succeeds"]; 154 constant_fd -> stop [label="when 'connect(X, ...)' succeeds"]; 165 unchecked_read_write -> stop [label="on leak:\nWarn('leak')"]; 166 unchecked_read_only -> stop [label="on leak:\nWarn('leak')"]; 167 unchecked_write_only -> stop [label="on leak:\nWarn('leak')"]; 168 valid_read_write -> stop [label="on leak:\nWarn('leak')"]; 169 valid_read_only -> stop [label="on leak:\nWarn('leak')"] [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/analyzer/ |
| sm-malloc.dot | 48 /* Stop state, for pointers we don't want to track any more. */ 49 stop; 63 freed -> stop [label="on 'free(X);':\n Warn('double-free')"]; 64 non_heap -> stop [label="on 'free(X);':\n Warn('free of non-heap')"]; 68 null -> stop [label="on 'FN(X)' with __attribute__((nonnull)):\nWarn('NULL arg')"]; 80 null -> stop [label="on '*X':\nWarn('NULL deref')"]; 81 freed -> stop [label="on '*X':\nWarn('use after free')"]; 87 unchecked -> stop [label="on leak:\nWarn('leak')"]; 88 nonnull -> stop [label="on leak:\nWarn('leak')"];
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.server/ |
| attach-flag.exp | 31 proc run_one_test { non-stop target-non-stop } { 55 gdb_test_no_output "set non-stop ${non-stop}" 56 gdb_test_no_output "maint set target-non-stop ${target-non-stop}" 66 foreach_with_prefix non-stop {0 1} { 67 foreach_with_prefix target-non-stop {0 1} { 69 if { ${non-stop} == 1 && ${target-non-stop} == 0} [all...] |
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.server/ |
| attach-flag.exp | 31 proc run_one_test { non-stop target-non-stop } { 55 gdb_test_no_output "set non-stop ${non-stop}" 56 gdb_test_no_output "maint set target-non-stop ${target-non-stop}" 66 foreach_with_prefix non-stop {0 1} { 67 foreach_with_prefix target-non-stop {0 1} { 69 if { ${non-stop} == 1 && ${target-non-stop} == 0} [all...] |
| /src/usr.bin/colrm/ |
| colrm.c | 63 u_long column, start, stop; local 76 start = stop = 0; 79 stop = strtol(argv[1], &p, 10); 80 if (stop <= 0 || *p) 94 if (stop && start > stop) 95 err(1, "illegal start and stop columns"); 117 if ((!start || column < start || (stop && column > stop)) && 135 (void)fprintf(stderr, "usage: colrm [start [stop]]\n") [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.multi/ |
| multi-target-continue.exp | 16 # Test "continue" to breakpoints in different targets. In non-stop 25 proc test_continue {non-stop} { 26 if {![setup ${non-stop}]} { 39 upvar 1 non-stop non-stop 49 if {${non-stop} == "off"} { 66 set msg "stop all threads" 100 foreach_with_prefix non-stop {"off" "on"} { 101 test_continue ${non-stop}
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.multi/ |
| multi-target-continue.exp | 16 # Test "continue" to breakpoints in different targets. In non-stop 25 proc test_continue {non-stop} { 26 if {![setup ${non-stop}]} { 39 upvar 1 non-stop non-stop 49 if {${non-stop} == "off"} { 66 set msg "stop all threads" 100 foreach_with_prefix non-stop {"off" "on"} { 101 test_continue ${non-stop}
|