/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/ |
H A D | FuzzerTracePC.cpp | 65 size_t Size = ModuleCounters[i].Stop - Beg; in IterateInline8bitCounters() 66 assert(Size == (size_t)(ModulePCTable[i].Stop - ModulePCTable[i].Start)); in IterateInline8bitCounters() 113 void TracePC::HandleInline8bitCountersInit(uint8_t *Start, uint8_t *Stop) { in HandleInline8bitCountersInit() argument 114 if (Start == Stop) return; in HandleInline8bitCountersInit() 119 ModuleCounters[NumModulesWithInline8bitCounters++] = {Start, Stop}; in HandleInline8bitCountersInit() 120 NumInline8bitCounters += Stop - Start; in HandleInline8bitCountersInit() 123 void TracePC::HandlePCsInit(const uintptr_t *Start, const uintptr_t *Stop) { in HandlePCsInit() argument 125 const PCTableEntry *E = reinterpret_cast<const PCTableEntry *>(Stop); in HandlePCsInit() 132 void TracePC::HandleInit(uint32_t *Start, uint32_t *Stop) { in HandleInit() argument 133 if (Start == Stop || *Start) return; in HandleInit() [all …]
|
H A D | FuzzerTracePC.h | 82 void HandleInit(uint32_t *Start, uint32_t *Stop); 83 void HandleInline8bitCountersInit(uint8_t *Start, uint8_t *Stop); 84 void HandlePCsInit(const uintptr_t *Start, const uintptr_t *Stop); 163 uint32_t *Start, *Stop; member 170 struct { uint8_t *Start, *Stop; } ModuleCounters[4096]; member 178 struct { const PCTableEntry *Start, *Stop; } ModulePCTable[4096]; member 273 ForEachNonZeroByte(ModuleCounters[i].Start, ModuleCounters[i].Stop, in CollectFeatures() 275 FirstFeature += 8 * (ModuleCounters[i].Stop - ModuleCounters[i].Start); in CollectFeatures()
|
/netbsd-src/external/gpl2/gmake/dist/tests/scripts/functions/ |
H A D | word | 59 "#MAKEFILE#:3: *** non-numeric first argument to `word' function: ''. Stop.", 64 "#MAKEFILE#:4: *** non-numeric first argument to `word' function: 'abc '. Stop.", 69 "#MAKEFILE#:5: *** non-numeric first argument to `word' function: '1a'. Stop.", 74 "#MAKEFILE#:7: *** non-numeric first argument to `wordlist' function: ''. Stop.", 79 "#MAKEFILE#:8: *** non-numeric first argument to `wordlist' function: 'abc '. Stop.", 84 … "#MAKEFILE#:9: *** non-numeric second argument to `wordlist' function: ' 12a '. Stop.", 97 "#MAKEFILE#:3: *** non-numeric first argument to `word' function: ''. Stop.", 102 "#MAKEFILE#:3: *** non-numeric first argument to `word' function: 'abc'. Stop.", 107 "#MAKEFILE#:3: *** first argument to `word' function must be greater than 0. Stop.", 112 "#MAKEFILE#:4: *** non-numeric first argument to `wordlist' function: ''. Stop.", [all …]
|
H A D | error | 39 $answer = "$makefile:4: *** error is yes. Stop.\n"; 45 $answer = "$makefile:8: *** error is no. Stop.\n"; 51 $answer = "Some stuff\n$makefile:12: *** error is maybe. Stop.\n"; 57 $answer = "Some stuff\n$makefile:16: *** error is definitely. Stop.\n"; 63 $answer = "$makefile:22: *** Error found!. Stop.\n";
|
H A D | foreach | 65 … "#MAKEFILE#:2: *** insufficient number of arguments (1) to function `foreach'. Stop.", 74 … "#MAKEFILE#:2: *** insufficient number of arguments (1) to function `foreach'. Stop.",
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
H A D | InterferenceCache.cpp | 132 SlotIndex Start, Stop; in update() local 133 std::tie(Start, Stop) = Indexes->getMBBRange(MBBNum); in update() 169 if (StartI >= Stop) in update() 182 if (StartI >= Stop) in update() 191 SlotIndex Limit = BI->First.isValid() ? BI->First : Stop; in update() 200 PrevPos = Stop; in update() 211 std::tie(Start, Stop) = Indexes->getMBBRange(MBBNum); in update() 217 if (!I.valid() || I.start() >= Stop) in update() 219 I.advanceTo(Stop); in update() 220 bool Backup = !I.valid() || I.start() >= Stop; in update() [all …]
|
H A D | SplitKit.cpp | 232 SlotIndex Start, Stop; in calcLiveBlockInfo() local 233 std::tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB); in calcLiveBlockInfo() 238 if (UseI == UseE || *UseI >= Stop) { in calcLiveBlockInfo() 243 if (LVI->end < Stop) in calcLiveBlockInfo() 250 while (UseI != UseE && *UseI < Stop); in calcLiveBlockInfo() 252 assert(BI.LastInstr < Stop); in calcLiveBlockInfo() 266 while (LVI->end < Stop) { in calcLiveBlockInfo() 268 if (++LVI == LVE || LVI->start >= Stop) { in calcLiveBlockInfo() 304 if (LVI->end == Stop && ++LVI == LVE) in calcLiveBlockInfo() 308 if (LVI->start < Stop) in calcLiveBlockInfo() [all …]
|
H A D | LiveDebugVariables.cpp | 924 SlotIndex Stop = LIS.getMBBEndIdx(MBB); in extendDef() local 934 if (Segment->end < Stop) { in extendDef() 935 Stop = Segment->end; in extendDef() 936 Kills = {Stop, {LII.first}}; in extendDef() 937 } else if (Segment->end == Stop && Kills.hasValue()) { in extendDef() 958 if (I.valid() && I.start() < Stop) { in extendDef() 959 Stop = I.start(); in extendDef() 964 if (Start < Stop) { in extendDef() 966 I.insert(Start, Stop, std::move(ExtDbgValue)); in extendDef() 1647 SlotIndex Stop = I.stop(); in emitDebugValues() local [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/ |
H A D | CoalescingBitVector.h | 147 IndexT Stop = It.stop(); in reset() local 148 assert(Index <= Stop && "Wrong interval for index"); in reset() 152 if (Index < Stop) in reset() 153 insert(Index + 1, Stop); in reset() 167 IndexT Stop = It.stop(); 169 getNonOverlappingParts(Start, Stop, Overlaps, NonOverlappingParts); 418 void getNonOverlappingParts(IndexT Start, IndexT Stop, in getNonOverlappingParts() argument 428 bool DoesOverlap = OlapStart <= Stop && Start <= OlapStop; in getNonOverlappingParts() 437 if (NextUncoveredBit > Stop) in getNonOverlappingParts() 440 if (NextUncoveredBit <= Stop) in getNonOverlappingParts() [all …]
|
H A D | IntervalMap.h | 754 void insert(unsigned i, unsigned Size, NodeRef Node, KeyT Stop) { in insert() argument 759 stop(i) = Stop; in insert() 1533 void setNodeStop(unsigned Level, KeyT Stop); 1534 bool insertNode(unsigned Level, IntervalMapImpl::NodeRef Node, KeyT Stop); 1540 bool canCoalesceRight(KeyT Stop, ValT x); 1647 iterator::canCoalesceRight(KeyT Stop, ValT Value) { in canCoalesceRight() argument 1655 return Node.value(i) == Value && Traits::adjacent(Stop, Node.start(i)); in canCoalesceRight() 1660 return Node.value(i) == Value && Traits::adjacent(Stop, Node.start(i)); in canCoalesceRight() 1663 return Node.value(0) == Value && Traits::adjacent(Stop, Node.start(0)); in canCoalesceRight() 1671 iterator::setNodeStop(unsigned Level, KeyT Stop) { in setNodeStop() argument [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/ |
H A D | Parallel.cpp | 53 if (Stop) in ThreadPoolExecutor() 64 if (Stop) in stop() 66 Stop = true; in stop() 102 Cond.wait(Lock, [&] { return Stop || !WorkStack.empty(); }); in work() 103 if (Stop) in work() 112 std::atomic<bool> Stop{false}; member in llvm::parallel::detail::__anon096d2ab40111::ThreadPoolExecutor
|
/netbsd-src/external/gpl3/binutils/dist/zlib/contrib/ada/ |
H A D | mtest.adb | 24 Stop : Boolean := False; variable 26 pragma Atomic (Stop); 138 exit Main when Stop; 144 Stop := True; 155 Stop := True;
|
/netbsd-src/external/gpl3/gdb/dist/zlib/contrib/ada/ |
H A D | mtest.adb | 24 Stop : Boolean := False; variable 26 pragma Atomic (Stop); 138 exit Main when Stop; 144 Stop := True; 155 Stop := True;
|
/netbsd-src/common/dist/zlib/contrib/ada/ |
H A D | mtest.adb | 24 Stop : Boolean := False; variable 26 pragma Atomic (Stop); 138 exit Main when Stop; 144 Stop := True; 155 Stop := True;
|
/netbsd-src/external/gpl3/binutils.old/dist/zlib/contrib/ada/ |
H A D | mtest.adb | 24 Stop : Boolean := False; variable 26 pragma Atomic (Stop); 138 exit Main when Stop; 144 Stop := True; 155 Stop := True;
|
/netbsd-src/external/gpl2/gmake/dist/tests/scripts/variables/ |
H A D | negative | 15 '', '#MAKEFILE#:3: *** unterminated variable reference. Stop.', 22 '#MAKEFILE#:4: *** unterminated variable reference. Stop.', 36 '', '#MAKEFILE#:3: *** unterminated variable reference. Stop.', 43 '#MAKEFILE#:4: *** unterminated variable reference. Stop.',
|
H A D | DEFAULT_GOAL | 45 '#MAKE#: *** No rule to make target `foo\'. Stop.', 55 '#MAKE#: *** .DEFAULT_GOAL contains more than one target. Stop.',
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
H A D | FormatStringParsing.h | 75 bool Stop; variable 78 : Start(nullptr), Stop(stop) {} in Start() 81 : FS(fs), Start(start), Stop(false) {} in SpecifierResult() 84 bool shouldStop() const { return Stop; } in shouldStop()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/ |
H A D | Use.cpp | 37 void Use::zap(Use *Start, const Use *Stop, bool del) { in zap() argument 38 while (Start != Stop) in zap() 39 (--Stop)->~Use(); in zap()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/M68k/ |
H A D | M68kCollapseMOVEMPass.cpp | 46 int Stop; member in __anon55c4489a0111::MOVEMState 55 : Begin(nullptr), End(nullptr), Base(0), Start(INT_MIN), Stop(INT_MAX), in MOVEMState() 110 Start = Stop = O; in update() 117 } else if (Type == Ascending && O == Stop + 4) { in update() 118 Stop += 4; in update()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/ |
H A D | InfoStream.cpp | 55 bool Stop = false; in reload() local 56 while (!Stop && !Reader.empty()) { in reload() 67 Stop = true; in reload()
|
/netbsd-src/external/gpl2/gmake/dist/tests/scripts/features/ |
H A D | escape | 29 "#MAKEFILE#:2: *** target pattern contains no `%'. Stop.", 42 "#MAKEFILE#:2: *** target pattern contains no `%'. Stop.",
|
/netbsd-src/external/mit/libuv/dist/docs/src/ |
H A D | timer.rst | 52 Stop the timer, the callback will not be called anymore. 56 Stop the timer, and if it is repeating restart it using the repeat value
|
/netbsd-src/external/bsd/openpam/dist/ |
H A D | TODO | 9 - Stop using PAM_SYMBOL_ERR incorrectly.
|
/netbsd-src/sys/arch/emips/stand/common/ |
H A D | start.h | 42 extern volatile void Stop(void);
|