/arkcompiler/ets_frontend/es2panda/util/ |
D | enumbitops.h | 25 /* NOLINTNEXTLINE(hicpp-signed-bitwise) */ \ 32 /* NOLINTNEXTLINE(hicpp-signed-bitwise) */ \ 39 /* NOLINTNEXTLINE(hicpp-signed-bitwise) */ \ 46 /* NOLINTNEXTLINE(hicpp-signed-bitwise) */ \ 53 /* NOLINTNEXTLINE(hicpp-signed-bitwise) */ \ 59 /* NOLINTNEXTLINE(hicpp-signed-bitwise) */ \ 66 /* NOLINTNEXTLINE(hicpp-signed-bitwise) */ \ 72 /* NOLINTNEXTLINE(hicpp-signed-bitwise) */ \
|
D | dumper.cpp | 36 std::cout << " val: " << signed(element) << std::endl; in DumpLiterals()
|
/arkcompiler/runtime_core/libpandafile/ |
D | types.yaml | 39 - signed 55 - signed 71 - signed 87 - signed 95 - signed 103 - signed
|
D | bytecode_instruction-inl.h | 43 // NOLINTNEXTLINE(hicpp-signed-bitwise) in ReadHelper() 46 // NOLINTNEXTLINE(hicpp-signed-bitwise) in ReadHelper()
|
D | proto_data_accessor-inl.h | 82 uint8_t s1 = (v1 >> shift) & SHORTY_ELEM_MASK; // NOLINT(hicpp-signed-bitwise) in IsEqual() 83 uint8_t s2 = (v2 >> shift) & SHORTY_ELEM_MASK; // NOLINT(hicpp-signed-bitwise) in IsEqual()
|
/arkcompiler/runtime_core/libpandabase/utils/ |
D | leb128.h | 97 static_assert(std::is_signed_v<T>, "T must be signed"); in DecodeSigned() 110 // NOLINTNEXTLINE(hicpp-signed-bitwise) in DecodeSigned() 115 // NOLINTNEXTLINE(hicpp-signed-bitwise) in DecodeSigned() 117 // NOLINTNEXTLINE(hicpp-signed-bitwise) in DecodeSigned() 122 // NOLINTNEXTLINE(hicpp-signed-bitwise) in DecodeSigned() 153 static_assert(std::is_signed_v<T>, "T must be signed"); in EncodeSigned() 160 // NOLINTNEXTLINE(hicpp-signed-bitwise) in EncodeSigned() 181 // NOLINTNEXTLINE(hicpp-signed-bitwise) in SignedEncodingSize()
|
D | utf.cpp | 402 // NOLINTNEXTLINE(hicpp-signed-bitwise, readability-magic-numbers) in IsValidModifiedUTF8() 425 if ((*elems & 0x08) == 0) { // NOLINT(hicpp-signed-bitwise) in IsValidModifiedUTF8() 428 … if ((*elems & 0xc0) != 0x80) { // NOLINT(hicpp-signed-bitwise, readability-magic-numbers) in IsValidModifiedUTF8() 441 … if ((*elems & 0xc0) != 0x80) { // NOLINT(hicpp-signed-bitwise, readability-magic-numbers) in IsValidModifiedUTF8() 451 … if ((*elems & 0xc0) != 0x80) { // NOLINT(hicpp-signed-bitwise, readability-magic-numbers) in IsValidModifiedUTF8()
|
D | utils.h | 38 // NOLINTNEXTLINE(hicpp-signed-bitwise) in HexValue()
|
/arkcompiler/runtime_core/platforms/unix/libpandabase/ |
D | file.cpp | 35 return O_WRONLY | O_CREAT | O_TRUNC; // NOLINT(hicpp-signed-bitwise) in GetFlags() 38 return O_RDWR | O_CREAT; // NOLINT(hicpp-signed-bitwise) in GetFlags() 49 // NOLINTNEXTLINE(hicpp-signed-bitwise) in Open()
|
D | exec.cpp | 52 if (WIFEXITED(status)) { // NOLINT(hicpp-signed-bitwise) in Exec() 53 return WEXITSTATUS(status); // NOLINT(hicpp-signed-bitwise) in Exec()
|
D | mem.cpp | 59 // NOLINTNEXTLINE(hicpp-signed-bitwise) in MapExecuted() 79 // NOLINTNEXTLINE(hicpp-signed-bitwise) in MakeMemReadExec() 85 // NOLINTNEXTLINE(hicpp-signed-bitwise) in MakeMemReadWrite() 147 // NOLINTNEXTLINE(hicpp-signed-bitwise) in MapRWAnonymousRaw() 205 void *result = // NOLINTNEXTLINE(hicpp-signed-bitwise) in MapRWAnonymousFixedRaw()
|
/arkcompiler/runtime_core/platforms/windows/libpandabase/ |
D | file.cpp | 40 return _O_WRONLY | _O_CREAT | _O_TRUNC | _O_BINARY; // NOLINT(hicpp-signed-bitwise) in GetFlags() 43 return _O_RDWR | _O_CREAT | _O_BINARY; // NOLINT(hicpp-signed-bitwise) in GetFlags() 55 // NOLINTNEXTLINE(hicpp-signed-bitwise) in Open()
|
D | mem.cpp | 176 // NOLINTNEXTLINE(hicpp-signed-bitwise) in MapExecuted() 197 // NOLINTNEXTLINE(hicpp-signed-bitwise) in MakeMemReadExec() 203 // NOLINTNEXTLINE(hicpp-signed-bitwise) in MakeMemReadWrite() 226 // NOLINTNEXTLINE(hicpp-signed-bitwise) in MapRWAnonymousRaw()
|
/arkcompiler/ets_runtime/ecmascript/ic/ |
D | ic_binary_op.h | 303 …static_cast<uint32_t>(opNumber1) & 0x1f; // NOLINT(hicpp-signed-bitwise, readability-magic-number… in ShlWithTSType() 306 …tic_cast<int32_t>(static_cast<unsigned_type>(opNumber0) << shift); // NOLINT(hicpp-signed-bitwise) in ShlWithTSType() 319 …static_cast<uint32_t>(opNumber1) & 0x1f; // NOLINT(hicpp-signed-bitwise, readability-magic-num… in ShrWithTSType() 320 auto ret = static_cast<int32_t>(opNumber0 >> shift); // NOLINT(hicpp-signed-bitwise) in ShrWithTSType() 333 …static_cast<uint32_t>(opNumber1) & 0x1f; // NOLINT(hicpp-signed-bitwise, readability-magic-number… in AshrWithTSType() 336 …ic_cast<uint32_t>(static_cast<unsigned_type>(opNumber0) >> shift); // NOLINT(hicpp-signed-bitwise) in AshrWithTSType() 348 // NOLINT(hicpp-signed-bitwise) in AndWithTSType() 361 // NOLINT(hicpp-signed-bitwise) in OrWithTSType() 374 // NOLINT(hicpp-signed-bitwise) in XorWithTSType()
|
/arkcompiler/runtime_core/platforms/unix/libpandabase/futex/ |
D | mutex.cpp | 155 // NOLINTNEXTLINE(hicpp-signed-bitwise) in WriteLock() 185 // NOLINTNEXTLINE(hicpp-signed-bitwise) in HandleReadLockWait() 270 // NOLINTNEXTLINE(hicpp-signed-bitwise) in WriteUnlock() 323 // NOLINTNEXTLINE(hicpp-signed-bitwise) in Wait() 385 // NOLINTNEXTLINE(hicpp-signed-bitwise) in TimedWait() 387 // NOLINTNEXTLINE(hicpp-signed-bitwise) in TimedWait() 392 // NOLINTNEXTLINE(hicpp-signed-bitwise) in TimedWait() 429 // NOLINTNEXTLINE(hicpp-signed-bitwise) in SignalCount() 437 // NOLINTNEXTLINE(hicpp-signed-bitwise) in SignalCount()
|
D | fmutex.cpp | 94 // NOLINTNEXTLINE(hicpp-signed-bitwise) in GetWaiters() 197 // NOLINTNEXTLINE(hicpp-signed-bitwise) in MutexLock() 211 … // NOLINTNEXTLINE(hicpp-signed-bitwise), NOLINTNEXTLINE(C_RULE_ID_FUNCTION_NESTING_LEVEL) in MutexLock() 246 // NOLINTNEXTLINE(hicpp-signed-bitwise) in MutexTryLockWithSpinning() 291 // NOLINTNEXTLINE(hicpp-signed-bitwise) in MutexUnlock()
|
/arkcompiler/runtime_core/compiler/optimizer/ir/ |
D | instructions.yaml | 205 i8: signed 8-bit integer 206 i16: signed 16-bit integer 207 i32: signed 32-bit integer 208 i64: signed 64-bit integer
|
/arkcompiler/ets_runtime/ecmascript/jspandafile/bytecode_inst/ |
D | instruction.h | 100 // NOLINTNEXTLINE(hicpp-signed-bitwise) in ReadHelper() 103 // NOLINTNEXTLINE(hicpp-signed-bitwise) in ReadHelper()
|
/arkcompiler/ets_frontend/es2panda/aot/ |
D | options.h | 43 /* NOLINTNEXTLINE(hicpp-signed-bitwise) */ 50 /* NOLINTNEXTLINE(hicpp-signed-bitwise) */
|
D | CMakeLists.txt | 45 "-hicpp-signed-bitwise"
|
/arkcompiler/runtime_core/libpandabase/arch/aarch64/ |
D | cpu_features.cpp | 26 // NOLINTNEXTLINE(hicpp-signed-bitwise) in CpuFeaturesHasCrc32()
|
/arkcompiler/runtime_core/docs/ |
D | assembly_format.md | 27 * Signed/Unsigned decimal/hexadecimal/binary integers not larger than 64 bits. Hexadecimal literals… 208 | `i8` | Signed 8-bit integer number | 210 | `i16` | Signed 16-bit integer number | 212 | `i32` | Signed 32-bit integer number | 214 | `i64` | Signed 64-bit integer number |
|
/arkcompiler/runtime_core/libpandabase/tests/ |
D | mmap_fixed_test.cpp | 46 void *result = // NOLINTNEXTLINE(hicpp-signed-bitwise) in TEST_F()
|
/arkcompiler/ets_runtime/ecmascript/mem/ |
D | chunk.cpp | 42 // NOLINTNEXTLINE(hicpp-signed-bitwise) in Expand()
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
D | circuit_ir_specification.md | 325 * **SDIV**: returns the signed quotient of its two integer operands. 326 * **SREM**: returns the remainder from the signed division of its two integer operands. 372 …* `1010` `SGT`: interprets the operands as signed values and yields true if op1 is greater than op… 373 …* `1011` `SGE`: interprets the operands as signed values and yields true if op1 is greater than or… 374 * `1100` `SLT`: interprets the operands as signed values and yields true if op1 is less than op2. 375 …* `1101` `SLE`: interprets the operands as signed values and yields true if op1 is less than or eq… 423 * **SITOFP**: regards value as a signed integer and converts that value to floating-point type. 425 * **FPTOSI**: converts a floating-point value to its signed integer equivalent.
|