Home
last modified time | relevance | path

Searched refs:inlined (Results 1 - 14 of 14) sorted by relevance

/third_party/typescript/tests/baselines/reference/
H A DpropertyAssignmentUseParentType1.js9 export const inlined: { (): boolean; nun: 456 } = () => true;
10 inlined.nun = 456;
20 exports.ignoreJsdoc = exports.inlined = exports.interfaced = void 0;
24 var inlined = function () { return true; }; function
25 exports.inlined = inlined;
26 exports.inlined.nun = 456;
/third_party/mesa3d/src/compiler/nir/
H A Dnir_inline_functions.c128 static bool inline_function_impl(nir_function_impl *impl, struct set *inlined);
132 struct set *inlined) in inline_functions_block()
151 /* Make sure that the function we're calling is already inlined */ in inline_functions_block()
152 inline_function_impl(call->callee->impl, inlined); in inline_functions_block()
175 inline_function_impl(nir_function_impl *impl, struct set *inlined) in inline_function_impl() argument
177 if (_mesa_set_search(inlined, impl)) in inline_function_impl()
178 return false; /* Already inlined */ in inline_function_impl()
185 progress |= inline_functions_block(block, &b, inlined); in inline_function_impl()
198 _mesa_set_add(inlined, impl); in inline_function_impl()
276 struct set *inlined in nir_inline_functions() local
131 inline_functions_block(nir_block *block, nir_builder *b, struct set *inlined) inline_functions_block() argument
[all...]
/third_party/elfutils/tests/
H A Drun-addr2line-i-demangle-test.sh38 foobar inlined at /tmp/x.cpp:15 in bar()
42 fubar inlined at /tmp/x.cpp:20 in baz()
46 foobar inlined at /tmp/x.cpp:15 in foo()
52 fubar inlined at /tmp/x.cpp:20 in foo()
60 fubar inlined at /tmp/x.cpp:32 in fu()
64 foobar inlined at /tmp/x.cpp:33 in fu()
/third_party/elfutils/libdw/
H A Ddwarf_getscopes.c43 unsigned int inlined, nscopes; member
79 a->inlined = depth; in pc_match()
86 concrete inlined instance. */
132 a->nscopes = depth + 1 - a->inlined; in pc_record()
146 if (a->inlined == 0) in pc_record()
152 /* This is the concrete inlined instance itself. in pc_record()
154 Dwarf_Die *const inlinedie = &a->scopes[depth - a->inlined]; in pc_record()
167 /* We've recorded the scopes back to one that is a concrete inlined in pc_record()
171 assert (a->inlined); in pc_record()
172 if (depth >= a->inlined) in pc_record()
[all...]
/third_party/node/deps/v8/src/objects/
H A Dscope-info-inl.h48 if (!range_->inlined()) advance_hashtable_index(); in Iterator()
54 if (range_->inlined()) return *this; in operator ++()
69 if (range_->inlined()) { in name()
84 if (range_->inlined()) return index_.as_int(); in index()
113 bool inlined() const { return scope_info_->HasInlinedLocalNames(); } in inlined() function in v8::internal::ScopeInfo::LocalNamesRange
116 int max = inlined() in max_index()
/third_party/skia/third_party/externals/abseil-cpp/absl/container/
H A Dfixed_array_test.cc495 // Make sure TooBig objects are not inlined for 0 or default size. in TEST()
544 absl::FixedArray<int, 3 * sizeof(int)> inlined = {1, 2, 3}; in TEST() local
545 EXPECT_EQ(inlined.front(), 1); in TEST()
546 EXPECT_EQ(inlined.back(), 3); in TEST()
611 absl::FixedArray<int, 5 * sizeof(int)> inlined(5); in TEST()
613 inlined.fill(fill_val); in TEST()
614 for (int i : inlined) EXPECT_EQ(i, fill_val); in TEST()
/third_party/skia/tests/
H A DSkBlockAllocatorTest.cpp94 SkSBlockAllocator<2048> inlined{}; in DEF_TEST()
95 SkDEBUGCODE(inlined->validate();) in DEF_TEST()
96 REPORTER_ASSERT(r, inlined->preallocSize() == 2048); in DEF_TEST()
97 REPORTER_ASSERT(r, inlined->preallocUsableSpace() < 2048 && in DEF_TEST()
98 inlined->preallocUsableSpace() >= (2048 - sizeof(SkBlockAllocator))); in DEF_TEST()
/third_party/node/deps/v8/src/compiler/
H A Dgraph-visualizer.cc178 const auto& inlined = info->inlined_functions(); in JsonPrintAllSourceWithPositions() local
180 for (unsigned id = 0; id < inlined.size(); id++) { in JsonPrintAllSourceWithPositions()
182 Handle<SharedFunctionInfo> shared = inlined[id].shared_info; in JsonPrintAllSourceWithPositions()
191 for (unsigned id = 0; id < inlined.size(); id++) { in JsonPrintAllSourceWithPositions()
194 JsonPrintInlinedFunctionInfo(os, source_id, id, inlined[id]); in JsonPrintAllSourceWithPositions()
H A Dpipeline.cc663 // The maximal combined height of all inlined frames in their unoptimized
863 // Print information for the given inlining: which function was inlined and
883 // compilation. For inlined functions print source position of their inlining.
888 const auto& inlined = info->inlined_functions(); in PrintParticipatingSource() local
889 for (unsigned id = 0; id < inlined.size(); id++) { in PrintParticipatingSource()
890 const int source_id = id_assigner.GetIdFor(inlined[id].shared_info); in PrintParticipatingSource()
891 PrintFunctionSource(info, isolate, source_id, inlined[id].shared_info); in PrintParticipatingSource()
892 PrintInlinedFunctionInfo(info, isolate, source_id, id, inlined[id]); in PrintParticipatingSource()
/third_party/node/deps/v8/src/compiler/backend/
H A Dcode-generator.cc221 // Define deoptimization literals for all inlined functions. in AssembleCode()
223 for (OptimizedCompilationInfo::InlinedFunctionHolder& inlined : in AssembleCode()
225 if (!inlined.shared_info.equals(info->shared_info())) { in AssembleCode()
227 DeoptimizationLiteral(inlined.shared_info)); in AssembleCode()
228 inlined.RegisterInlinedFunctionId(index); in AssembleCode()
238 for (OptimizedCompilationInfo::InlinedFunctionHolder& inlined : in AssembleCode()
240 DefineDeoptimizationLiteral(DeoptimizationLiteral(inlined.bytecode_array)); in AssembleCode()
375 // TODO(jgruber): Move all inlined metadata generation into a new, in AssembleCode()
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/
H A DSpirvShaderDebugger.cpp804 InlinedAt *inlined = nullptr;
1747 ia->inlined = get(debug::InlinedAt::ID(insn.word(7)));
2211 for(auto inlined = locationAndScope.scope->inlinedAt; inlined != nullptr; inlined = inlined->inlined)
2213 if(auto block = debug::find<debug::LexicalBlock>(inlined->scope))
2215 newStack.emplace_back(StackEntry{ block, inlined->line });
2256 // of a inlined functio
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/
H A Dinlined_vector.h363 std::addressof(data_.inlined.inlined_data[0])); in GetInlinedData()
368 std::addressof(data_.inlined.inlined_data[0])); in GetInlinedData()
496 Inlined inlined; member
/third_party/mesa3d/src/gallium/drivers/zink/
H A Dzink_compiler.c723 is_inlined(const bool *inlined, const struct pipe_stream_output *output) in is_inlined() argument
726 if (!inlined[output->start_component + i]) in is_inlined()
841 bool inlined[VARYING_SLOT_MAX][4] = {0}; in update_so_info() local
865 inlined[slot][output->start_component + j] = true; in update_so_info()
867 if (is_inlined(inlined[slot], output)) in update_so_info()
881 inlined[slot][output->start_component + j] = true; in update_so_info()
901 if (is_inlined(inlined[slot], output)) in update_so_info()
941 /* this output can be consolidated: blast out all the data inlined */ in update_so_info()
950 /* mark all slot components inlined to skip subsequent loop iterations */ in update_so_info()
954 inlined[slo in update_so_info()
[all...]
/third_party/ffmpeg/libavcodec/x86/
H A Dvp9lpf.asm1103 ; lines (high part). It is inlined to avoid the need of a staging area

Completed in 22 milliseconds