Home
last modified time | relevance | path

Searched full:signed (Results 1 – 25 of 84) sorted by relevance

1234

/arkcompiler/ets_frontend/es2panda/util/
Denumbitops.h25 /* 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) */ \
Ddumper.cpp36 std::cout << " val: " << signed(element) << std::endl; in DumpLiterals()
/arkcompiler/runtime_core/libpandafile/
Dtypes.yaml39 - signed
55 - signed
71 - signed
87 - signed
95 - signed
103 - signed
Dbytecode_instruction-inl.h43 // NOLINTNEXTLINE(hicpp-signed-bitwise) in ReadHelper()
46 // NOLINTNEXTLINE(hicpp-signed-bitwise) in ReadHelper()
Dproto_data_accessor-inl.h82 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/
Dleb128.h97 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()
Dutf.cpp402 // 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()
Dutils.h38 // NOLINTNEXTLINE(hicpp-signed-bitwise) in HexValue()
/arkcompiler/runtime_core/platforms/unix/libpandabase/
Dfile.cpp35 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()
Dexec.cpp52 if (WIFEXITED(status)) { // NOLINT(hicpp-signed-bitwise) in Exec()
53 return WEXITSTATUS(status); // NOLINT(hicpp-signed-bitwise) in Exec()
Dmem.cpp59 // 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/
Dfile.cpp40 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()
Dmem.cpp176 // 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/
Dic_binary_op.h303 …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/
Dmutex.cpp155 // 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()
Dfmutex.cpp94 // 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/
Dinstructions.yaml205 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/
Dinstruction.h100 // NOLINTNEXTLINE(hicpp-signed-bitwise) in ReadHelper()
103 // NOLINTNEXTLINE(hicpp-signed-bitwise) in ReadHelper()
/arkcompiler/ets_frontend/es2panda/aot/
Doptions.h43 /* NOLINTNEXTLINE(hicpp-signed-bitwise) */
50 /* NOLINTNEXTLINE(hicpp-signed-bitwise) */
DCMakeLists.txt45 "-hicpp-signed-bitwise"
/arkcompiler/runtime_core/libpandabase/arch/aarch64/
Dcpu_features.cpp26 // NOLINTNEXTLINE(hicpp-signed-bitwise) in CpuFeaturesHasCrc32()
/arkcompiler/runtime_core/docs/
Dassembly_format.md27 * 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/
Dmmap_fixed_test.cpp46 void *result = // NOLINTNEXTLINE(hicpp-signed-bitwise) in TEST_F()
/arkcompiler/ets_runtime/ecmascript/mem/
Dchunk.cpp42 // NOLINTNEXTLINE(hicpp-signed-bitwise) in Expand()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dcircuit_ir_specification.md325 * **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.

1234