Home
last modified time | relevance | path

Searched refs:end (Results 10826 - 10850 of 19286) sorted by relevance

1...<<431432433434435436437438439440>>...772

/third_party/mesa3d/src/amd/compiler/
H A Daco_assembler.cpp132 /* Adjust s_subvector_loop_begin instruction to the address after the end */ in emit_instruction()
498 std::vector<uint32_t>::iterator nsa = std::prev(out.end(), nsa_dwords); in emit_instruction()
849 auto branch_it = std::find_if(ctx.branches.begin(), ctx.branches.end(), in insert_code()
854 for (; branch_it != ctx.branches.end(); ++branch_it) in insert_code()
877 ctx.branches.begin(), ctx.branches.end(), in fix_branches_gfx10()
883 gfx10_3f_bug = buggy_branch_it != ctx.branches.end(); in fix_branches_gfx10()
1022 code.insert(code.end(), (uint32_t*)program->constant_data.data(), in emit_program()
/third_party/lzma/CPP/7zip/UI/Common/
H A DArchiveCommandLine.cpp88 const wchar_t *end; in StringToUInt32() local
89 v = ConvertStringToUInt32(s, &end); in StringToUInt32()
90 return *end == 0; in StringToUInt32()
1108 const char *end; in Parse1() local
1109 v = ConvertHexStringToUInt64(a, &end); in Parse1()
1110 if (*end != 0) in Parse1()
/third_party/jerryscript/jerry-debugger/
H A Djerry_client_main.py840 end = len(last_bp.function.source)
843 end = min(last_bp.line + line_num - 1, len(last_bp.function.source))
848 elif end + offset > len(last_bp.function.source):
853 end = min(end + offset, len(last_bp.function.source))
855 for i in range(start, end):
1142 # If it is not the message type, or the end type of it, an exception is thrown.
/third_party/jerryscript/jerry-core/ecma/builtin-objects/typedarray/
H A Decma-builtin-typedarray-prototype.c1243 ecma_value_t end) /**< end */ in ecma_builtin_typedarray_prototype_subarray()
1267 if (ecma_is_value_undefined (end)) in ecma_builtin_typedarray_prototype_subarray()
1274 if (ECMA_IS_VALUE_ERROR (ecma_builtin_helper_array_index_normalize (end, in ecma_builtin_typedarray_prototype_subarray()
1325 ecma_value_t end) /**< end */ in ecma_builtin_typedarray_prototype_fill()
1352 if (ecma_is_value_undefined (end)) in ecma_builtin_typedarray_prototype_fill()
1358 if (ECMA_IS_VALUE_ERROR (ecma_builtin_helper_array_index_normalize (end, in ecma_builtin_typedarray_prototype_fill()
1411 // Keep NaNs at the end of the array. in ecma_builtin_typedarray_prototype_sort_compare_helper()
1416 // Keep NaNs at the end o in ecma_builtin_typedarray_prototype_sort_compare_helper()
1241 ecma_builtin_typedarray_prototype_subarray(ecma_value_t this_arg, ecma_value_t begin, ecma_value_t end) ecma_builtin_typedarray_prototype_subarray() argument
1322 ecma_builtin_typedarray_prototype_fill(ecma_value_t this_arg, ecma_value_t value, ecma_value_t begin, ecma_value_t end) ecma_builtin_typedarray_prototype_fill() argument
[all...]
/third_party/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-internal.h603 GTEST_CHECK_(it != registered_tests_.end()); in GetCodeLocation()
888 class = decltype(::std::declval<const C&>().end()),
981 // Finds the first element in the iterator range [begin, end) that
984 Iter ArrayAwareFind(Iter begin, Iter end, const Element& elem) { in ArrayAwareFind() argument
985 for (Iter it = begin; it != end; ++it) { in ArrayAwareFind()
989 return end; in ArrayAwareFind()
1065 const_iterator end() const { return array_ + size_; } in end() function in testing::internal::NativeArray
/third_party/node/src/
H A Dnode_errors.cc131 // sourceline to 78 characters, and we end up not providing very much in GetErrorSource()
144 int end = message->GetEndColumn(context).FromMaybe(0); in GetErrorSource() local
146 CHECK_GE(end, start); in GetErrorSource()
148 end -= script_start; in GetErrorSource()
158 if (start > end || in GetErrorSource()
160 static_cast<size_t>(end) > sourceline.size()) { in GetErrorSource()
175 for (int i = start; i < end; i++) { in GetErrorSource()
/third_party/node/deps/icu-small/source/common/
H A Dubidiln.cpp568 * If there are WS characters at the end of the line in ubidi_getRuns()
785 * sos=start of sequence, eos=end of sequence in ubidi_reorderLogical()
814 int32_t start, end, limit, temp; in ubidi_reorderVisual() local
853 end=limit-1; in ubidi_reorderVisual()
854 while(start<end) { in ubidi_reorderVisual()
856 indexMap[start]=indexMap[end]; in ubidi_reorderVisual()
857 indexMap[end]=temp; in ubidi_reorderVisual()
860 --end; in ubidi_reorderVisual()
967 /* RTL: check from logical index to run end */ in ubidi_getVisualIndex()
/third_party/node/deps/googletest/include/gtest/internal/
H A Dgtest-internal.h609 GTEST_CHECK_(it != registered_tests_.end()); in GetCodeLocation()
934 class = decltype(::std::declval<const C&>().end()),
1030 // Finds the first element in the iterator range [begin, end) that
1033 Iter ArrayAwareFind(Iter begin, Iter end, const Element& elem) { in ArrayAwareFind() argument
1034 for (Iter it = begin; it != end; ++it) { in ArrayAwareFind()
1037 return end; in ArrayAwareFind()
1114 const_iterator end() const { return array_ + size_; } in end() function in testing::internal::NativeArray
/third_party/mesa3d/src/mesa/main/
H A Dexternalobjects.c955 goto end; in _mesa_WaitSemaphoreEXT()
966 goto end; in _mesa_WaitSemaphoreEXT()
978 end: in _mesa_WaitSemaphoreEXT()
1015 goto end; in _mesa_SignalSemaphoreEXT()
1026 goto end; in _mesa_SignalSemaphoreEXT()
1038 end: in _mesa_SignalSemaphoreEXT()
/third_party/node/deps/v8/src/compiler/
H A Daccess-info.cc262 dst->insert(dst->end(), src.begin(), src.end()); in AppendVector()
975 for (auto it = infos.begin(), end = infos.end(); it != end; ++it) { in MergePropertyAccessInfos()
977 for (auto ot = it + 1; ot != end; ++ot) { in MergePropertyAccessInfos()
/third_party/rust/crates/cxx/tests/ffi/
H A Dtests.cc308 std::sort(s.begin(), s.end()); in c_take_slice_shared_sort()
428 for (auto it = v.begin(), it_end = v.end(); it != it_end; it++) { in c_take_rust_vec_shared_forward_iterator()
442 std::sort(v.begin(), v.end()); in c_take_rust_vec_shared_sort()
481 uint8_t sum = std::accumulate(v.begin(), v.end(), 0); in c_take_ref_rust_vec()
504 std::copy(v.begin(), v.end(), std::back_inserter(stdv)); in c_take_ref_rust_vec_copy()
505 uint8_t sum = std::accumulate(stdv.begin(), stdv.end(), 0); in c_take_ref_rust_vec_copy()
/third_party/python/Tools/unicode/
H A Dmakeunicodedata.py258 print(len(decomp_data), "unique decomposition entries:", end=' ')
284 for start,end in comp_first_ranges:
285 fprint(" { %d, %d, %d}," % (start,end-start,comp_first[start]))
289 for start,end in comp_last_ranges:
290 fprint(" { %d, %d, %d}," % (start,end-start,comp_last[start]))
1350 print("Best:", end=' ', file=sys.stderr)
/third_party/openGLES/xml/
H A Dreg.py11 end = kwargs.pop('end', '\n')
13 file.write(end)
548 # Accumulate types, enums, function pointer typedefs, end function
564 write(self.typeBody, end='', file=self.outFile)
571 write(self.enumBody, end='', file=self.outFile)
573 write(self.cmdPointerBody, end='', file=self.outFile)
592 write(prefix + self.cmdBody + suffix, end='', file=self.outFile)
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineInterfaceMatchingTests.cpp379 m_renderPass.end(vk, *m_cmdBuffer); in iterate()
950 DE_ASSERT(vecDataMap.find(vecType) != vecDataMap.end()); in getVecData()
964 DE_ASSERT(decorationDataMap.find(decorationType) != decorationDataMap.end()); in getDecorationData()
990 DE_ASSERT(pipelineDataMap.find(pipelineType) != pipelineDataMap.end()); in getPipelineData()
1019 DE_ASSERT(pipelineTypeMap.find(testParams.pipelineType) != pipelineTypeMap.end()); in generateName()
1020 DE_ASSERT(definitionTypeMap.find(testParams.definitionType) != definitionTypeMap.end()); in generateName()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/spirv_assembly/
H A DvktSpvAsmPhysicalStorageBufferPointerTests.cpp117 iterator end () { return iterator(&getData()[m_elements]); } in end() function in vkt::SpirVAssembly::__anon28770::ut::TypedBuffer
267 std::copy(items.begin(), items.end(), begin()); in TypedBuffer()
733 for (auto j = buffer.begin(), begin = j; j != buffer.end(); ++j) in prepareColorBuffer()
883 return std::equal(resultBuffer.begin(), resultBuffer.end(), colorBuffer.begin()) ? tcu::TestStatus::pass("") : tcu::TestStatus::fail(""); in iterate()
1071 return std::equal(src.begin(), src.end(), dst.begin()) ? tcu::TestStatus::pass("") : tcu::TestStatus::fail(""); in iterate()
1230 return std::equal(src.begin(), src.end(), dst.begin()) ? tcu::TestStatus::pass("") : tcu::TestStatus::fail(""); in iterate()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/synchronization/
H A DvktSynchronizationOperationMultiQueueTests.cpp144 for (std::map<deUint32, QueueData>::iterator it = m_queues.begin(); it!= m_queues.end(); ++it) in MultiQueues()
237 for (std::map<deUint32, QueueData>::iterator it = m_queues.begin(); it != m_queues.end(); ++it) in MultiQueues()
264 for (std::map<deUint32, QueueData>::const_iterator it = m_queues.begin(); it != m_queues.end(); ++it) in getQueuesPairs()
283 for (std::map<deUint32, QueueData>::iterator write = queuesWrite.begin(); write != queuesWrite.end(); ++write) in getQueuesPairs()
284 for (std::map<deUint32, QueueData>::iterator read = queuesRead.begin(); read != queuesRead.end(); ++read) in getQueuesPairs()
308 for (std::map<deUint32, QueueData>::const_iterator it = m_queues.begin(); it!= m_queues.end(); ++it) in getDefaultQueue()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
H A DCompiler.cpp419 if (it != mExtensionBehavior.end()) in compileTreeImpl()
431 if (it != mExtensionBehavior.end()) in compileTreeImpl()
705 // for float, so float literal statements would end up with no precision which is in checkAndSimplifyAST()
931 // drivers may not accept it. In this case we clean up the dead code from the end of switch in checkAndSimplifyAST()
1342 mInterfaceBlocks.insert(mInterfaceBlocks.end(), mUniformBlocks.begin(), mUniformBlocks.end()); in collectInterfaceBlocks()
1343 mInterfaceBlocks.insert(mInterfaceBlocks.end(), mShaderStorageBlocks.begin(), in collectInterfaceBlocks()
1344 mShaderStorageBlocks.end()); in collectInterfaceBlocks()
1465 // Search from main, starting from the end of the DAG as it usually is the root. in tagUsedFunctions()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/TranslatorMetalDirect/
H A DRewritePipelines.cpp212 ASSERT(mInfo.pipelineVariables.find(&var) == mInfo.pipelineVariables.end());
371 return mPipelineFunctions.find(&func) != mPipelineFunctions.end(); in isOriginalPipelineFunction()
377 if (it == mFuncMap.end()) in isUpdatedPipelineFunction()
391 if (it == mFuncMap.end()) in getUpdatedFunction()
871 if (pipelineVariables.find(&var) == pipelineVariables.end()) in UpdatePipelineSymbols()
919 return psi.pipelineVariables.find(&var) != psi.pipelineVariables.end(); in RewritePipeline()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
H A DWinException.cpp260 // On funclet exit, we emit a fake "function" end marker, so that the call in endFuncletImpl()
288 // writing to .xdata, and emit an .seh_endproc directive to mark the end of in endFuncletImpl()
294 // Let's make sure we don't try to end the same funclet twice. in endFuncletImpl()
351 // For 32-bit, offsets should be relative to the end of the EH registration in getFrameIndexOffset()
352 // node. For 64-bit, it's relative to SP at the end of the prologue. in getFrameIndexOffset()
381 /// entire function or funclet, and the start and end of the range are treated
385 /// change back to NullState is always reported at the end of iteration).
404 // the end of the last block. in range()
407 auto BlockEnd = std::prev(End)->end(); in range()
422 // At end o in operator ==()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
H A DMachineTraceMetrics.cpp56 std::fill(std::begin(Ensembles), std::end(Ensembles), nullptr); in MachineTraceMetrics()
322 } // end anonymous namespace
437 } // end anonymous namespace
475 } // end namespace llvm
502 // Run a downwards post-order search for the trace end.
647 } // end anonymous namespace
728 if (I == RegUnits.end())
917 if (I == RegUnits.end())
1092 for (MachineBasicBlock::const_iterator BI = MBB->end(), BB = MBB->begin();
1100 if (HeightI != Heights.end()) {
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGSDNodes.cpp467 --NumUsed; // Skip over unused values at the end.
789 for (SUnit::const_pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
795 assert(VRI != VRBaseMap.end() && "Node emitted out of order - late");
799 EE = SU->Succs.end(); II != EE; ++II) {
840 // Fetch instruction prior to this, or end() if nonexistant.
843 return BB->end();
857 if (Before == BB->end()) {
990 InsertBB->insert(Pos, DbgMIs.begin(), DbgMIs.end());
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
H A DWinCOFFObjectWriter.cpp219 } // end anonymous namespace
720 assert(SectionMap.find(MCSec) != SectionMap.end() && in recordRelocation()
757 SectionMap.find(TargetSection) != SectionMap.end() && in recordRelocation()
763 SymbolMap.find(&A) != SymbolMap.end() && in recordRelocation()
1046 assert(SectionMap.find(TargetSection) != SectionMap.end() && in writeObject()
1070 sections::iterator IE = Sections.end(); in writeObject()
1072 MCAssembler::iterator JE = Asm.end(); in writeObject()
/third_party/skia/src/gpu/geometry/
H A DGrAATriangulator.cpp684 void* end = this->polysToTriangles(polys, verts, SkPathFillType::kWinding); in polysToAATriangles() local
692 end = this->emitTriangle(v0, v1, v2, 0/*winding*/, end); in polysToAATriangles()
693 end = this->emitTriangle(v0, v2, v3, 0/*winding*/, end); in polysToAATriangles()
697 int actualCount = static_cast<int>((static_cast<uint8_t*>(end) - static_cast<uint8_t*>(verts)) in polysToAATriangles()
/third_party/skia/third_party/externals/spirv-tools/source/opt/
H A Dloop_peeling.cpp52 assert(it != loop_utils_.GetFunction()->end() && in DuplicateAndConnectLoop()
55 clone_results->cloned_bb_.begin(), clone_results->cloned_bb_.end(), ++it); in DuplicateAndConnectLoop()
268 do_while_form_ = std::find(header_pred.begin(), header_pred.end(), in GetIteratingExitValues()
269 condition_block_id) != header_pred.end(); in GetIteratingExitValues()
387 assert(it != loop_utils_.GetFunction()->end() && in CreateBlockBefore()
461 if (def_in_loop != clone_results.value_map_.end()) in PeelBefore()
1071 // Peel before if we are closer to the start, after if closer to the end. in HandleInequality()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
H A Dloop_peeling.cpp52 assert(it != loop_utils_.GetFunction()->end() && in DuplicateAndConnectLoop()
55 clone_results->cloned_bb_.begin(), clone_results->cloned_bb_.end(), ++it); in DuplicateAndConnectLoop()
268 do_while_form_ = std::find(header_pred.begin(), header_pred.end(), in GetIteratingExitValues()
269 condition_block_id) != header_pred.end(); in GetIteratingExitValues()
387 assert(it != loop_utils_.GetFunction()->end() && in CreateBlockBefore()
461 if (def_in_loop != clone_results.value_map_.end()) in PeelBefore()
1071 // Peel before if we are closer to the start, after if closer to the end. in HandleInequality()

Completed in 49 milliseconds

1...<<431432433434435436437438439440>>...772