Home
last modified time | relevance | path

Searched refs:index1 (Results 1 – 25 of 184) sorted by relevance

12345678

/third_party/skia/third_party/externals/spirv-cross/shaders-hlsl/comp/
Drwbuffer-matrix.comp7 int index1;
45 mrow[index0][index1] = 1.0;
46 mrow2x2[index0][index1] = 2.0;
47 mrow2x3[index0][index1] = 3.0;
48 mrow3x2[index0][index1] = 4.0;
58 mcol[index0][index1] = 1.0;
59 mcol2x2[index0][index1] = 2.0;
60 mcol2x3[index0][index1] = 3.0;
61 mcol3x2[index0][index1] = 4.0;
71 float a0 = mrow[index0][index1];
[all …]
/third_party/skia/src/core/
DSkLineClipper.cpp110 int index0, index1; in IntersectLine() local
114 index1 = 1; in IntersectLine()
117 index1 = 0; in IntersectLine()
127 if (tmp[index1].fY > clip.fBottom) { in IntersectLine()
128 tmp[index1].set(sect_with_horizontal(src, clip.fBottom), clip.fBottom); in IntersectLine()
133 index1 = 1; in IntersectLine()
136 index1 = 0; in IntersectLine()
140 if ((tmp[index1].fX <= clip.fLeft || tmp[index0].fX >= clip.fRight)) { in IntersectLine()
151 if (tmp[index1].fX > clip.fRight) { in IntersectLine()
152 tmp[index1].set(clip.fRight, sect_with_vertical(src, clip.fRight)); in IntersectLine()
[all …]
/third_party/flutter/skia/src/core/
DSkLineClipper.cpp110 int index0, index1; in IntersectLine() local
114 index1 = 1; in IntersectLine()
117 index1 = 0; in IntersectLine()
127 if (tmp[index1].fY > clip.fBottom) { in IntersectLine()
128 tmp[index1].set(sect_with_horizontal(src, clip.fBottom), clip.fBottom); in IntersectLine()
133 index1 = 1; in IntersectLine()
136 index1 = 0; in IntersectLine()
140 if ((tmp[index1].fX <= clip.fLeft || tmp[index0].fX >= clip.fRight)) { in IntersectLine()
151 if (tmp[index1].fX > clip.fRight) { in IntersectLine()
152 tmp[index1].set(clip.fRight, sect_with_vertical(src, clip.fRight)); in IntersectLine()
[all …]
/third_party/python/Lib/idlelib/
Dundo.py85 def delete(self, index1, index2=None): argument
86 self.addcmd(DeleteCommand(index1, index2))
167 def __init__(self, index1, index2, chars, tags=None): argument
170 self.index1 = index1
178 t = (self.index1, self.index2, self.chars, self.tags)
210 def __init__(self, index1, chars, tags=None): argument
211 Command.__init__(self, index1, None, chars, tags)
215 self.index1 = text.index(self.index1)
216 if text.compare(self.index1, ">", "end-1c"):
218 self.index1 = text.index("end-1c")
[all …]
/third_party/typescript/tests/baselines/reference/
DjsDeclarationsDocCommentsOnConsts.symbols1 === tests/cases/conformance/jsdoc/declarations/index1.js ===
6 >x : Symbol(x, Decl(index1.js, 3, 5))
7 >a : Symbol(a, Decl(index1.js, 3, 11))
16 >b : Symbol(b, Decl(index1.js, 5, 2))
22 >module.exports : Symbol(module.exports, Decl(index1.js, 0, 0))
23 >module : Symbol(module, Decl(index1.js, 12, 1))
24 >exports : Symbol(module.exports, Decl(index1.js, 0, 0))
25 >x : Symbol(x, Decl(index1.js, 14, 18))
26 >b : Symbol(b, Decl(index1.js, 14, 20))
DdeclarationEmitDefaultExportWithStaticAssignment.symbols5 === tests/cases/compiler/index1.ts ===
7 >Foo : Symbol(Foo, Decl(index1.ts, 0, 8))
10 >Example : Symbol(Example, Decl(index1.ts, 0, 26), Decl(index1.ts, 1, 36))
13 >Example.Foo : Symbol(Example.Foo, Decl(index1.ts, 1, 36))
14 >Example : Symbol(Example, Decl(index1.ts, 0, 26), Decl(index1.ts, 1, 36))
15 >Foo : Symbol(Example.Foo, Decl(index1.ts, 1, 36))
16 >Foo : Symbol(Foo, Decl(index1.ts, 0, 8))
DjsDeclarationsDefaultsErr.symbols1 === tests/cases/conformance/jsdoc/declarations/index1.js ===
4 >Cls : Symbol(Cls, Decl(index1.js, 0, 0))
7 >x : Symbol(Cls.x, Decl(index1.js, 1, 11))
10 >y : Symbol(Cls.y, Decl(index1.js, 2, 11))
13 >Cls : Symbol(Cls, Decl(index1.js, 0, 0))
/third_party/mindspore/mindspore/core/mindrt/src/actor/
Daid.cc103 size_t index1 = url.find("://"); in GetIp() local
104 if (index1 == std::string::npos) { in GetIp()
105 index1 = 0; in GetIp()
107 index1 = index1 + PROCOLLEN; in GetIp()
110 if ((index2 == std::string::npos) || (index2 < index1)) { in GetIp()
114 return url.substr(index1, index2 - index1); in GetIp()
/third_party/skia/third_party/externals/oboe/src/flowgraph/resampler/
DSincResampler.cpp44 int index1 = static_cast<int>(floor(tablePhase)); in readFrame() local
45 if (index1 >= mNumRows) { // no guard row needed because we wrap the indices in readFrame()
47 index1 -= mNumRows; in readFrame()
50 int index2 = index1 + 1; in readFrame()
55 float *coefficients1 = &mCoefficients[index1 * getNumTaps()]; in readFrame()
70 float fraction = tablePhase - index1; in readFrame()
DSincResamplerStereo.cpp55 int index1 = static_cast<int>(floor(tablePhase)); in readFrame() local
56 float *coefficients1 = &mCoefficients[index1 * getNumTaps()]; in readFrame()
57 int index2 = (index1 + 1); in readFrame()
74 float fraction = tablePhase - index1; in readFrame()
/third_party/mindspore/mindspore/ccsrc/backend/optimizer/somas/
Dsomas_solver_pre.cc31 Status SomasSolverPre::CheckTensors(const TensorsDescMap *pTensors, uint32_t index1, uint32_t index… in CheckTensors() argument
33 if (tensors[index1] == nullptr) { in CheckTensors()
34 …MS_LOG(WARNING) << "NULL tensor received in continuous constraint (tensor index " << index1 << ")"; in CheckTensors()
42 if (tensors[index1]->right_) in CheckTensors()
43 MS_LOG(WARNING) << "Warning:tensor " << index1 in CheckTensors()
44 << " already has a right tensor (id: " << tensors[index1]->right_->index_; in CheckTensors()
55 auto index1 = aux[i]; in AddContiguousInfoInMap() local
57 if (CheckTensors(pTensors, SizeToUint(index1), SizeToUint(index2)) == FAILED) { in AddContiguousInfoInMap()
60 tensors[index1]->right_ = tensors[index2]; in AddContiguousInfoInMap()
61 tensors[index2]->left_ = tensors[index1]; in AddContiguousInfoInMap()
[all …]
/third_party/boost/boost/numeric/ublas/
Dmatrix_expression.hpp539 return (*this) ().find2 (1, index1 (), 0); in begin()
553 return (*this) ().find2 (1, index1 (), (*this) ().size2 ()); in end()
594 size_type index1 () const { in index1() function in boost::numeric::ublas::vector_matrix_binary::const_iterator1
795 size_type index1 () const { in index1() function in boost::numeric::ublas::vector_matrix_binary::const_iterator2
1013 return const_iterator1 (*this, it1.index1 (), it1.index2 ()); in find1()
1022 return const_iterator2 (*this, it2.index1 (), it2.index2 ()); in find2()
1097 return (*this) ().find2 (1, index1 (), 0); in begin()
1111 return (*this) ().find2 (1, index1 (), (*this) ().size2 ()); in end()
1152 size_type index1 () const { in index1() function in boost::numeric::ublas::matrix_unary1::const_iterator1
1153 return it_.index1 (); in index1()
[all …]
Dmatrix.hpp538 BOOST_UBLAS_CHECK (index1 () < (*this) ().size1 (), bad_index ()); in operator *()
554 return m.find2 (1, index1 (), 0); in begin()
569 return m.find2 (1, index1 (), m.size2 ()); in end()
610 size_type index1 () const { in index1() function in boost::numeric::ublas::matrix::const_iterator1
716 BOOST_UBLAS_CHECK (index1 () < (*this) ().size1 (), bad_index ()); in operator *()
732 return m.find2 (1, index1 (), 0); in begin()
740 return m.find2 (1, index1 (), m.size2 ()); in end()
760 size_type index1 () const { in index1() function in boost::numeric::ublas::matrix::iterator1
861 BOOST_UBLAS_CHECK (index1 () < (*this) ().size1 (), bad_index ()); in operator *()
933 size_type index1 () const { in index1() function in boost::numeric::ublas::matrix::const_iterator2
[all …]
/third_party/protobuf/src/google/protobuf/util/
Dmessage_differencer.cc674 int index1 = 0; in CombineFields() local
679 while (index1 < fields1.size() && index2 < fields2.size()) { in CombineFields()
680 const FieldDescriptor* field1 = fields1[index1]; in CombineFields()
685 tmp_message_fields_.push_back(fields1[index1]); in CombineFields()
687 ++index1; in CombineFields()
694 tmp_message_fields_.push_back(fields1[index1]); in CombineFields()
695 ++index1; in CombineFields()
880 Reporter* reporter, int index1, int index2) { in IsMatch() argument
884 repeated_field, index1, index2, in IsMatch()
897 repeated_field, index1, index2, in IsMatch()
[all …]
/third_party/typescript/src/instrumenter/
Dinstrumenter.ts34 const index1 = tscContent.indexOf(invocationLine); constant
35 if (index1 < 0) {
39 const index2 = index1 + invocationLine.length;
40 …const newContent = tscContent.substr(0, index1) + loggerContent + prepareCode + invocationLine + c…
/third_party/python/Lib/idlelib/idle_test/
Dmock_tk.py201 def get(self, index1, index2=None): argument
204 startline, startchar = self._decode(index1)
219 def delete(self, index1, index2=None): argument
225 startline, startchar = self._decode(index1, -1)
250 def compare(self, index1, op, index2): argument
251 line1, char1 = self._decode(index1)
279 def tag_remove(self, tagName, index1, index2=None): argument
/third_party/boost/boost/numeric/ublas/detail/
Dmatrix_assign.hpp62 difference_type compare = it1.index1 () - it1e.index1 (); in make_conformant()
93 if (conformant_restrict_type::other (it2e.index1 (), it2e.index2 ())) in make_conformant()
95 … index.push_back (std::pair<size_type, size_type> (it2e.index1 (), it2e.index2 ())); in make_conformant()
105 if (conformant_restrict_type::other (it2e.index1 (), it2e.index2 ())) in make_conformant()
107 … index.push_back (std::pair<size_type, size_type> (it2e.index1 (), it2e.index2 ())); in make_conformant()
122 if (conformant_restrict_type::other (it2e.index1 (), it2e.index2 ())) in make_conformant()
124 … index.push_back (std::pair<size_type, size_type> (it2e.index1 (), it2e.index2 ())); in make_conformant()
139 if (conformant_restrict_type::other (it2e.index1 (), it2e.index2 ())) in make_conformant()
141 … index.push_back (std::pair<size_type, size_type> (it2e.index1 (), it2e.index2 ())); in make_conformant()
179 size_type it1_index = it1.index1 (), it1e_index = it1e.index1 (); in make_conformant()
[all …]
Diterator.hpp479 size_type index1 () const { in index1() function in boost::numeric::ublas::reverse_iterator_base1
481 return (-- tmp).index1 (); in index1()
601 size_type index1 () const { in index1() function in boost::numeric::ublas::reverse_iterator_base2
603 return (-- tmp).index1 (); in index1()
928 BOOST_UBLAS_CHECK (index1 () < (*this) ().size1 (), bad_index ()); in operator *()
939 size_type index1 () const { in index1() function in boost::numeric::ublas::indexed_iterator1
949 return (*this) ().find2 (1, index1 (), 0); in begin()
953 return (*this) ().find2 (1, index1 (), (*this) ().size2 ()); in end()
1045 … container_const_reference<container_type> (it ()), it1_ (it.index1 ()), it2_ (it.index2 ()) {} in indexed_const_iterator1()
1078 BOOST_UBLAS_CHECK (index1 () < (*this) ().size1 (), bad_index ()); in operator *()
[all …]
/third_party/skia/third_party/externals/freetype/src/pshinter/
Dpshrec.c371 FT_UInt index1, in ps_mask_table_test_intersect() argument
374 PS_Mask mask1 = table->masks + index1; in ps_mask_table_test_intersect()
403 FT_UInt index1, in ps_mask_table_merge() argument
411 if ( index1 > index2 ) in ps_mask_table_merge()
416 temp = index1; in ps_mask_table_merge()
417 index1 = index2; in ps_mask_table_merge()
421 if ( index1 < index2 && index2 < table->num_masks ) in ps_mask_table_merge()
425 PS_Mask mask1 = table->masks + index1; in ps_mask_table_merge()
488 index1, index2 )); in ps_mask_table_merge()
502 FT_UInt index1, index2; in ps_mask_table_merge_all() local
[all …]
/third_party/freetype/src/pshinter/
Dpshrec.c371 FT_UInt index1, in ps_mask_table_test_intersect() argument
374 PS_Mask mask1 = table->masks + index1; in ps_mask_table_test_intersect()
403 FT_UInt index1, in ps_mask_table_merge() argument
411 if ( index1 > index2 ) in ps_mask_table_merge()
416 temp = index1; in ps_mask_table_merge()
417 index1 = index2; in ps_mask_table_merge()
421 if ( index1 < index2 && index2 < table->num_masks ) in ps_mask_table_merge()
425 PS_Mask mask1 = table->masks + index1; in ps_mask_table_merge()
488 index1, index2 )); in ps_mask_table_merge()
502 FT_Int index1, index2; in ps_mask_table_merge_all() local
[all …]
/third_party/flutter/skia/third_party/externals/freetype/src/pshinter/
Dpshrec.c372 FT_UInt index1, in ps_mask_table_test_intersect() argument
375 PS_Mask mask1 = table->masks + index1; in ps_mask_table_test_intersect()
404 FT_UInt index1, in ps_mask_table_merge() argument
412 if ( index1 > index2 ) in ps_mask_table_merge()
417 temp = index1; in ps_mask_table_merge()
418 index1 = index2; in ps_mask_table_merge()
422 if ( index1 < index2 && index2 < table->num_masks ) in ps_mask_table_merge()
426 PS_Mask mask1 = table->masks + index1; in ps_mask_table_merge()
489 index1, index2 )); in ps_mask_table_merge()
503 FT_Int index1, index2; in ps_mask_table_merge_all() local
[all …]
/third_party/skia/third_party/externals/freetype/src/type1/
Dt1afm.c93 FT_ULong index1 = KERN_INDEX( pair1->index1, pair1->index2 ); in compare_kern_pairs() local
94 FT_ULong index2 = KERN_INDEX( pair2->index1, pair2->index2 ); in compare_kern_pairs()
97 if ( index1 > index2 ) in compare_kern_pairs()
99 else if ( index1 < index2 ) in compare_kern_pairs()
203 kp->index1 = FT_Get_Char_Index( t1_face, p[0] ); in T1_Read_PFM()
348 midi = KERN_INDEX( mid->index1, mid->index2 ); in T1_Get_Kerning()
/third_party/freetype/src/type1/
Dt1afm.c93 FT_ULong index1 = KERN_INDEX( pair1->index1, pair1->index2 ); in compare_kern_pairs() local
94 FT_ULong index2 = KERN_INDEX( pair2->index1, pair2->index2 ); in compare_kern_pairs()
97 if ( index1 > index2 ) in compare_kern_pairs()
99 else if ( index1 < index2 ) in compare_kern_pairs()
203 kp->index1 = FT_Get_Char_Index( t1_face, p[0] ); in T1_Read_PFM()
348 midi = KERN_INDEX( mid->index1, mid->index2 ); in T1_Get_Kerning()
/third_party/flutter/skia/third_party/externals/freetype/src/type1/
Dt1afm.c94 FT_ULong index1 = KERN_INDEX( pair1->index1, pair1->index2 ); in compare_kern_pairs() local
95 FT_ULong index2 = KERN_INDEX( pair2->index1, pair2->index2 ); in compare_kern_pairs()
98 if ( index1 > index2 ) in compare_kern_pairs()
100 else if ( index1 < index2 ) in compare_kern_pairs()
204 kp->index1 = FT_Get_Char_Index( t1_face, p[0] ); in T1_Read_PFM()
349 midi = KERN_INDEX( mid->index1, mid->index2 ); in T1_Get_Kerning()
/third_party/cef/tests/ceftests/
Dtest_request.cc150 const size_t index1 = url.find('?'); in GetPathURL() local
153 if (index1 != std::string::npos && index2 != std::string::npos) { in GetPathURL()
154 index = std::min(index1, index2); in GetPathURL()
155 } else if (index1 != std::string::npos) { in GetPathURL()
156 index = index1; in GetPathURL()

12345678