Home
last modified time | relevance | path

Searched defs:val (Results 1 – 25 of 109) sorted by relevance

12345

/arkcompiler/ets_runtime/test/typeinfer/automatedcases/
DcontrolFlowDestructuringLoop.ts24 interface StrVal { val: string; } property
45 const { val } = thing; constant
55 const { val } = thing; constant
DunionReductionMutualSubtypes.ts35 declare const val: ReturnVal; constant
39 const something = options.something ?? val.something; constant
DcontrolFlowCommaExpressionAssertionWithinTernary.ts24 const val = param !== undefined; constant
/arkcompiler/ets_runtime/ecmascript/mem/
Dmem_common.h23 inline uintptr_t ToUintPtr(T *val) in ToUintPtr()
33 inline void *ToVoidPtr(uintptr_t val) in ToVoidPtr()
/arkcompiler/runtime_core/libark_defect_scan_aux/tests/
Dtest_helper.h42 inline static void ExpectTrue(bool val) in ExpectTrue()
50 inline static void ExpectFalse(bool val) in ExpectFalse()
/arkcompiler/runtime_core/platforms/windows/libpandabase/
Dtrace.cpp40 void DoIntTracePoint([[maybe_unused]] const char *str, [[maybe_unused]] int32_t val) in DoIntTracePoint()
45 void DoInt64TracePoint([[maybe_unused]] const char *str, [[maybe_unused]] int64_t val) in DoInt64TracePoint()
/arkcompiler/ets_frontend/es2panda/test/compiler/ts/cases/conformance/expressions/
Dts-test-as-expression-3.ts17 var val = 1; variable
Dts-test-type-assertions-2.ts17 var val: string = ""; variable
/arkcompiler/runtime_core/platforms/unix/libpandabase/futex/
Dfmutex.h30 #define ATOMIC_STORE(addr, val, mem) atomic_store_explicit(addr, val, mem) argument
32 #define ATOMIC_FETCH_ADD(addr, val, mem) atomic_fetch_add_explicit(addr, val, mem) argument
33 #define ATOMIC_FETCH_SUB(addr, val, mem) atomic_fetch_sub_explicit(addr, val, mem) argument
53 #define ATOMIC_STORE(addr, val, mem) (addr)->store(val, std::mem) // NOLINT(cppcoreguideli… argument
55 #define ATOMIC_FETCH_ADD(addr, val, mem) (addr)->fetch_add(val, std::mem) // NOLINT(cppcoreguideli… argument
56 #define ATOMIC_FETCH_SUB(addr, val, mem) (addr)->fetch_sub(val, std::mem) // NOLINT(cppcoreguideli… argument
77 inline int futex(volatile int *uaddr, int op, int val, const struct timespec *timeout, volatile int… in futex()
/arkcompiler/runtime_core/libpandafile/
Dbytecode_emitter.cpp28 static inline constexpr BitImmSize GetBitLengthUnsigned(uint32_t val) in GetBitLengthUnsigned()
43 static inline constexpr BitImmSize GetBitLengthSigned(int32_t val) in GetBitLengthSigned()
82 auto val = static_cast<uint8_t>(arg); in EmitImpl() local
87 auto val = static_cast<uint8_t>(arg); in EmitImpl() local
92 auto val = static_cast<uint16_t>(arg); in EmitImpl() local
98 auto val = static_cast<uint32_t>(arg); in EmitImpl() local
105 auto val = static_cast<uint64_t>(arg); in EmitImpl() local
/arkcompiler/runtime_core/platforms/unix/libpandabase/
Dtrace.cpp80 void DoIntTracePoint(const char *str, int32_t val) in DoIntTracePoint()
86 void DoInt64TracePoint(const char *str, int64_t val) in DoInt64TracePoint()
/arkcompiler/runtime_core/libpandabase/trace/
Dtrace.h56 static inline void IntTracePoint(const char *str, int32_t val) in IntTracePoint()
63 static inline void Int64TracePoint(const char *str, int64_t val) in Int64TracePoint()
/arkcompiler/ets_frontend/ts2panda/tests/types/class/
Dclass_methods.ts18 val: number = 3; property in A
Dclass_static_methods.ts18 val: number = 3; property in A
/arkcompiler/ets_runtime/test/moduletest/hugearray/
Dhugearray.js27 arr.push({val : i}); property
/arkcompiler/runtime_core/libpandabase/mem/ringbuf/
Dlock_free_ring_buffer.h46 bool TryPush(const T val) in TryPush()
64 void Push(const T val) in Push()
/arkcompiler/ets_runtime/test/moduletest/weaktransitions/
Dweaktransitions.js26 let val = {value: index.toString() + "value"}; variable
/arkcompiler/runtime_core/libpandabase/utils/
Dbit_memory_region-inl.h35 auto val = Read(i, width); in Dump() local
/arkcompiler/toolchain/test/fuzztest/pttypesremoteobjectsetvalue_fuzzer/
Dpttypesremoteobjectsetvalue_fuzzer.cpp34 Local<PrimitiveRef> val = JSValueRef::Undefined(vm); in PtTypesRemoteObjectSetValueFuzzTest() local
/arkcompiler/toolchain/test/fuzztest/pttypesremoteobjectunserializablevalue_fuzzer/
Dpttypesremoteobjectunserializablevalue_fuzzer.cpp34 UnserializableValue val((const char*)data, size); in PtTypesRemoteObjectUnserializableValueFuzzTest() local
/arkcompiler/runtime_core/libpandabase/tests/
Dmath_helpers_test.cpp25 uint64_t val = 0; variable
/arkcompiler/toolchain/test/fuzztest/pttypesremoteobjectgetvalue_fuzzer/
Dpttypesremoteobjectgetvalue_fuzzer.cpp34 Local<PrimitiveRef> val = JSValueRef::Undefined(vm); in PtTypesRemoteObjectGetValueFuzzTest() local
/arkcompiler/ets_frontend/ts2panda/tests/expression/
DelementAccess.test.ts85 let val = new VReg(); variable
/arkcompiler/runtime_core/tests/cts-coverage-tool/lib/
Dorphaned_md.rb30 def fmt(val) argument
/arkcompiler/runtime_core/libpandabase/mem/
Dmem.h110 inline uintptr_t ToUintPtr(T *val) in ToUintPtr()
121 inline T *ToNativePtr(uintptr_t val) in ToNativePtr()
126 inline void *ToVoidPtr(uintptr_t val) in ToVoidPtr()
227 inline object_pointer_type ToObjPtrType(T *val) in ToObjPtrType()

12345