Home
last modified time | relevance | path

Searched defs:p (Results 1 – 25 of 102) sorted by relevance

12345

/arkcompiler/runtime_core/assembler/tests/
Dparser_test.cpp28 Parser p; in TEST() local
45 Parser p; in TEST() local
62 Parser p; in TEST() local
73 Parser p; in TEST() local
84 Parser p; in TEST() local
100 Parser p; in TEST() local
116 Parser p; in TEST() local
127 Parser p; in TEST() local
138 Parser p; in TEST() local
158 Parser p; in TEST() local
[all …]
Demitter_test.cpp52 Parser p; in TEST() local
190 Parser p; in TEST() local
275 Parser p; in TEST() local
354 Parser p; in TEST() local
370 Parser p; in TEST() local
384 Parser p; in TEST() local
398 Parser p; in TEST() local
412 Parser p; in TEST() local
430 Parser p; in TEST() local
457 Parser p; in TEST() local
[all …]
/arkcompiler/runtime_core/assembler/utils/
Dnumber-utils.h31 inline bool ValidateInteger(std::string_view p) in ValidateInteger()
94 inline int64_t IntegerNumber(std::string_view p) in IntegerNumber()
124 inline bool ValidateFloat(std::string_view p) in ValidateFloat()
163 inline double FloatNumber(std::string_view p, bool is_64bit) in FloatNumber()
178 inline size_t ToNumber(std::string_view p) in ToNumber()
/arkcompiler/runtime_core/compiler/optimizer/analysis/
Dalias_analysis.cpp182 for (auto &p : sorted_keys) { in DumpChains() local
211 for (auto &p : sorted_keys) { in Dump() local
291 … Pointer p = Pointer::CreateObjectField(alias.GetBase(), edge.GetImm(), edge.GetTypePtr()); in SolveConstraints() local
298 … Pointer p = Pointer::CreateObjectField(ref.GetBase(), edge.GetImm(), edge.GetTypePtr()); in SolveConstraints() local
307 … Pointer p = Pointer::CreateArrayElement(alias.GetBase(), edge.GetIdx(), edge.GetImm()); in SolveConstraints() local
314 … Pointer p = Pointer::CreateArrayElement(ref.GetBase(), edge.GetIdx(), edge.GetImm()); in SolveConstraints() local
/arkcompiler/runtime_core/runtime/tests/
Dinternal_allocator_test.cpp152 auto *p = allocator_->AllocArray<S>(1); in TEST_F() local
158 auto *p = allocator_->New<S>(); in TEST_F() local
164 auto *p = allocator_->New<S[]>(1); in TEST_F() local
192 auto *p = allocator_->AllocArrayLocal<S>(1); in TEST_F() local
198 auto *p = allocator_->AllocArrayLocal<S>(1); in TEST_F() local
204 auto *p = allocator_->NewLocal<S>(); in TEST_F() local
210 auto *p = allocator_->NewLocal<S[]>(1); in TEST_F() local
Dmethod_test.cpp52 pandasm::Parser p; in VerifyLineNumber() local
135 pandasm::Parser p; in TEST_F() local
206 pandasm::Parser p; in TEST_F() local
239 pandasm::Parser p; in TEST_F() local
273 pandasm::Parser p; in TEST_F() local
354 pandasm::Parser p; in TEST_F() local
413 pandasm::Parser p; in TEST_F() local
495 pandasm::Parser p; in TEST_F() local
575 pandasm::Parser p; in TEST_F() local
/arkcompiler/runtime_core/verification/util/tests/
Dobj_pool_test.cpp50 auto p = pool.New(); in TEST() local
79 auto p = pool.New(); in TEST() local
90 auto p = pool.New(); in TEST() local
121 auto p = pool.New(); in TEST() local
183 auto p = pool.New(); in TEST() local
/arkcompiler/ets_runtime/ecmascript/mem/
Dcaddress_allocator.h79 void deallocate([[maybe_unused]] pointer p, [[maybe_unused]] size_type n) in deallocate()
85 void construct(U *p, Args &&... args) // NOLINT(readability-identifier-naming) in construct()
93 void destroy(U *p) // NOLINT(readability-identifier-naming) in destroy()
119 auto p = reinterpret_cast<void *>(Allocate(sizeof(S))); in New() local
Dchunk_allocator.h91 void deallocate([[maybe_unused]] pointer p, [[maybe_unused]] size_type n) {} in deallocate()
94 void construct(U *p, Args &&... args) // NOLINT(readability-identifier-naming) in construct()
99 void destroy(U *p) // NOLINT(readability-identifier-naming) in destroy()
/arkcompiler/runtime_core/verification/config/handlers/
Dliteral_parser.h36 using p = typename Parser::template next<Literal>; in LiteralParser() local
60 using p = typename parser<Context, const char, const char *>::template next<Literals>; in LiteralsParser() local
/arkcompiler/runtime_core/runtime/mem/
Dinternal_allocator-inl.h47 void *p = Alloc(sizeof(T), GetAlignment<T>()); in New() local
61 void *p = Alloc(SIZE_BEFORE_DATA_OFFSET + sizeof(element_type) * size, GetAlignment<T>()); in New() local
86 void *p = ToVoidPtr(ToUintPtr(data) - SIZE_BEFORE_DATA_OFFSET); in DeleteArray() local
Drunslots_allocator_stl_adapter.h130 void deallocate([[maybe_unused]] pointer p, [[maybe_unused]] size_type n) in deallocate()
136 void construct(U *p, Args &&... args) in construct()
141 void destroy(U *p) in destroy()
/arkcompiler/ets_runtime/ecmascript/platform/unix/linux/
Dos.cpp33 size_t MallocUsableSize(void *p) in MallocUsableSize()
50 int PrctlSetVMA(void *p, size_t size, const char *tag) in PrctlSetVMA()
/arkcompiler/ets_runtime/ecmascript/platform/unix/mac/
Dos.cpp26 size_t MallocUsableSize(void *p) in MallocUsableSize()
50 int PrctlSetVMA([[maybe_unused]] void *p, [[maybe_unused]] size_t size, [[maybe_unused]] const char… in PrctlSetVMA()
/arkcompiler/ets_runtime/test/moduletest/newobjdynrange/
Dnewobjdynrange.js26 var p = new foo("arg1", "arg2") variable
/arkcompiler/ets_runtime/test/moduletest/yieldstar/
Dyieldstar.js31 var p = foo2() variable
/arkcompiler/ets_runtime/test/moduletest/promise/
Dpromise.js22 var p = new Promise((resolve, reject) => { variable
/arkcompiler/runtime_core/libpandabase/mem/
Darena_allocator_stl_adapter.h127 void deallocate([[maybe_unused]] pointer p, [[maybe_unused]] size_type n) {} in deallocate()
130 void construct(U *p, Args &&... args) // NOLINT(readability-identifier-naming) in construct()
135 void destroy(U *p) // NOLINT(readability-identifier-naming) in destroy()
/arkcompiler/runtime_core/plugins/ecmascript/tests/assembler/
Demitter_test_ecmascript.cpp52 Parser p; in TEST() local
80 Parser p; in TEST() local
/arkcompiler/runtime_core/assembler/
Dmangling.h47 for (const auto &p : params) { in MangleFunctionName() local
70 for (const auto &p : params) { in GetFunctionSignatureFromName() local
Dcontext.cpp48 std::string_view p = token; in ValidateRegisterName() local
81 std::string_view p = token; in ValidateParameterName() local
/arkcompiler/ets_frontend/es2panda/ir/
DvalidationInfo.h26 ValidationInfo(util::StringView m, lexer::SourcePosition p) noexcept : msg(m), pos(p) {} in ValidationInfo()
/arkcompiler/runtime_core/libpandabase/utils/
Dlogger.h452 #define _LOG(level, component, p) … argument
476 #define _LOG_DEBUG(component, p) _LOG(DEBUG, component, p) argument
481 #define _LOG_DEBUG(component, p) false && panda::DummyStream() argument
486 #define _LOG_INFO(component, p) _LOG(INFO, component, p) argument
489 #define _LOG_WARNING(component, p) _LOG(WARNING, component, p) argument
492 #define _LOG_ERROR(component, p) _LOG(ERROR, component, p) argument
495 #define _LOG_FATAL(component, p) _LOG(FATAL, component, p) argument
/arkcompiler/ets_runtime/test/moduletest/generator/
Dgenerator.js42 var p = foo() variable
/arkcompiler/runtime_core/verification/type/
Dtype_params.cpp38 TypeParams &TypeParams::operator>>(const TypeParam &p) in operator >>()

12345