Home
last modified time | relevance | path

Searched full:arithmetic (Results 1 – 25 of 103) sorted by relevance

12345

/ark/js_runtime/ecmascript/regexp/
Dregexp_executor.h89 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in AdvanceOffset()
109 *pp += 1; // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in GetChar()
113 … cptr += WIDE_CHAR_SIZE; // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in GetChar()
118 … cptr += WIDE_CHAR_SIZE; // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in GetChar()
135 … cptr += WIDE_CHAR_SIZE; // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in PeekChar()
140 … cptr += WIDE_CHAR_SIZE; // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in PeekChar()
151 *pp += 1; // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in AdvancePtr()
154 …ptr += WIDE_CHAR_SIZE; // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in AdvancePtr()
158 … cptr += WIDE_CHAR_SIZE; // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in AdvancePtr()
170 c = *(cptr - 1); // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in PeekPrevChar()
[all …]
Ddyn_chunk.h89 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in GetU32()
95 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in PutU32()
101 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in GetU16()
107 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in PutU16()
113 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in GetU8()
119 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in PutU8()
Ddyn_chunk.cpp62 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in Insert()
78 if (memcpy_s(buf_ + size_, // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic) in Emit()
99 if (memcpy_s(buf_ + size_, // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic) in EmitSelf()
101 buf_ + offset, // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic) in EmitSelf()
Dregexp_executor.cpp56 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in Execute()
167 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in HandleOpWordBoundary()
190 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in HandleOpLineStart()
204 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in HandleOpLineEnd()
219 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in HandleOpSaveStart()
229 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in HandleOpSaveEnd()
241 … &captureResultList_[i]; // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in HandleOpSaveReset()
398 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in HandleOpBackReference()
400 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in HandleOpBackReference()
603 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in DumpResult()
[all …]
Dregexp_parser.cpp175 … uint8_t *start = pc_ - 1; // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in ParseUnicodeEscape()
191 … uint8_t *start = pc_ - 1; // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in ParseUnicodeEscape()
208 uint8_t *start = pc_ - 1; // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in ParseHexEscape()
381 … uint8_t *begin = pc_ - 1; // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in ParseAlternative()
416 … U8_NEXT(pc_, i, length, c); // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in ParseAlternative()
418 … pc_ += i; // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in ParseAlternative()
446 …emmove_s(buffer_.buf_ + start + // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in ParseAlternative()
447 … termSize, // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in ParseAlternative()
449 … buffer_.buf_ + start, // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in ParseAlternative()
454 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in ParseAlternative()
[all …]
Dregexp_parser.h80 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in Init()
190 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in Advance()
199 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in Advance()
207 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in Prev()
/ark/js_runtime/ecmascript/hprof/
Dstring_hashmap.cpp55 if (charSeq[i] == '\"') { // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic) in FormatString()
56 charSeq[i] = '`'; // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic) in FormatString()
57 } else if (charSeq[i] == '\r') { // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic) in FormatString()
58 charSeq[i] = '`'; // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic) in FormatString()
59 } else if (charSeq[i] == '\n') { // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic) in FormatString()
60 charSeq[i] = '`'; // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic) in FormatString()
61 } else if (charSeq[i] == '\\') { // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic) in FormatString()
62 charSeq[i] = '`'; // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic) in FormatString()
63 } else if (charSeq[i] == '\t') { // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic) in FormatString()
64 charSeq[i] = '`'; // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic) in FormatString()
[all …]
/ark/runtime_core/libpandabase/utils/
Dutf.cpp147 while (*mutf8_in != '\0') { // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic) in IsMUtf8OnlySingleBytes()
148 if (*mutf8_in >= MASK1) { // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic) in IsMUtf8OnlySingleBytes()
151 mutf8_in += 1; // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic) in IsMUtf8OnlySingleBytes()
165 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in ConvertRegionUtf16ToMUtf8()
167 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in ConvertRegionUtf16ToMUtf8()
173 … mutf8_out[mutf8_pos++] = ch.ch[c]; // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic) in ConvertRegionUtf16ToMUtf8()
190 *utf16_out++ = p_hi; // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic) in ConvertMUtf8ToUtf16()
192 *utf16_out++ = p_lo; // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic) in ConvertMUtf8ToUtf16()
194 mutf8_in += nbytes; // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic) in ConvertMUtf8ToUtf16()
208 mutf8_in += nbytes; // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic) in ConvertRegionMUtf8ToUtf16()
[all …]
Dhash.h103 …LINTNEXTLINE(readability-implicit-bool-conversion, cppcoreguidelines-pro-bounds-pointer-arithmetic)
108 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic)
110 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic)
112 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic)
114 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic)
117 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic)
122 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic)
Dbit_memory_region.h135 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in Read()
144 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in Write()
146 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in Write()
169 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in Read()
171 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in Read()
189 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in ReadBit()
214 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in Write()
216 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in Write()
220 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in Write()
222 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in Write()
Dspan.h91 return data_ + size_; // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in end()
97 return data_ + size_; // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in end()
103 return data_ + size_; // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in cend()
146 return data_[index]; // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic)
153 return data_[index]; // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic)
196 … return Span(data_ + position, length); // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic) in SubSpan()
202 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in SubSpan()
211 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in SubSpan()
Dleb128.h43 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in DecodeUnsigned()
47 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in DecodeUnsigned()
70 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in DecodeSigned()
105 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in EncodeUnsigned()
111 out[i++] = byte; // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic) in EncodeUnsigned()
131 out[i++] = byte; // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic) in EncodeSigned()
/ark/js_runtime/ecmascript/base/
Dutf_helper.cpp122 …&& utf16[0] >= utf::HI_SURROGATE_MIN && // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic) in Utf16ToUtf8Size()
123 …utf::LO_SURROGATE_MAX) { // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic) in Utf16ToUtf8Size()
129 if (utf16[i] == 0) { // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic) in Utf16ToUtf8Size()
133 … } else if (utf16[i] <= UTF8_1B_MAX) { // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic) in Utf16ToUtf8Size()
135 … } else if (utf16[i] <= UTF8_2B_MAX) { // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic) in Utf16ToUtf8Size()
137 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in Utf16ToUtf8Size()
142 …tf16[i + 1] >= utf::LO_SURROGATE_MIN && // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic) in Utf16ToUtf8Size()
143 …tf16[i + 1] <= utf::LO_SURROGATE_MAX) { // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic) in Utf16ToUtf8Size()
163 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in ConvertRegionUtf16ToUtf8()
168 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in ConvertRegionUtf16ToUtf8()
[all …]
/ark/js_runtime/ecmascript/interpreter/
Dframe_handler.cpp71 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in PrevFrame()
85 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in GetPrevFrame()
93 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in GetVRegValue()
100 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in SetVRegValue()
107 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in GetAcc()
115 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in GetSize()
126 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in GetBytecodeOffset()
136 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in GetMethod()
144 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in GetFunction()
152 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in GetPc()
[all …]
/ark/js_runtime/ecmascript/
Decma_string-inl.h133 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in WriteData()
139 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in WriteData()
146 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in WriteData()
158 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in WriteData()
161 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in WriteData()
174 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in FastSubUtf8String()
193 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in FastSubUtf16String()
197 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in FastSubUtf16String()
/ark/runtime_core/runtime/include/
Dcframe.h190 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in GetValueFromSlot()
196 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in SetValueToSlot()
212 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in ReadCalleeSavedRegister()
214 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in ReadCalleeSavedRegister()
227 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in WriteCalleeSavedRegister()
229 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in WriteCalleeSavedRegister()
236 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in GetPtr()
242 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in GetPtr()
Dstack_walker.h241 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic)
281 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic)
288 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic)
295 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic)
302 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic)
309 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic)
/ark/runtime_core/runtime/
Dcframe.cpp85 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in Dump()
87 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in Dump()
89 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in Dump()
109 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in DumpCalleeRegs()
120 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in DumpCalleeFPRegs()
132 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in DumpCallerRegs()
143 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in DumpCallerFPRegs()
153 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in DumpLocals()
/ark/js_runtime/ecmascript/compiler/
Dcircuit.cpp50 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in AllocateSpace()
56 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in AllocateGateSpace()
76 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in NewGate()
107 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in NewGate()
149 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in GetAllGates()
151 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in GetAllGates()
160 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in SaveGatePtr()
166 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in LoadGatePtr()
172 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in LoadGatePtrConst()
410 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in GetSpaceDataStartPtrConst()
[all …]
Dgate.cpp656 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in SetNextOut()
662 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in GetNextOut()
668 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in GetNextOutConst()
675 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in SetPrevOut()
681 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in GetPrevOut()
687 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in GetPrevOutConst()
703 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in GetGate()
709 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in GetGateConst()
736 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in SetGate()
742 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in GetGate()
[all …]
/ark/runtime_core/runtime/mem/gc/
Dcard_table-inl.h73 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in VisitMarked()
77 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in VisitMarked()
81 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in VisitMarked()
90 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in VisitMarked()
94 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in VisitMarked()
/ark/js_runtime/ecmascript/mem/
Dmark_stack.h43 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in PopBackChecked()
49 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in PushBackUnchecked()
55 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in PopBackUnchecked()
64 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in PushBackChecked()
/ark/runtime_core/libpandabase/mem/
Dalloc_tracker.cpp157 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in Dump()
164 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in Dump()
166 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in Dump()
169 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in Dump()
178 // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) in Dump()
/ark/runtime_core/libpandabase/os/unix/
Dnative_stack.cpp81 …_stack_build = remove_bracket + MOVE_2; // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic) in DumpKernelStack()
170 if (descriptor[0] == 'L') { // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic) in ChangeJaveStackFormat()
182 if (descriptor[0] == '[') { // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic) in ChangeJaveStackFormat()
189 switch (descriptor[0]) { // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic) in ChangeJaveStackFormat()
/ark/runtime_core/libpandafile/
Dshorty_iterator.h30 shorty_ = *shorty_ptr_++; // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic) in ShortyIterator()
63 shorty_ = *shorty_ptr_++; // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic)

12345