Home
last modified time | relevance | path

Searched refs:i2 (Results 1 – 25 of 106) sorted by relevance

12345

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/container/detail/
H A Diterators.hpp79 friend bool operator== (const constant_iterator& i, const constant_iterator& i2) in operator ==() argument
80 { return i.equal(i2); } in operator ==()
82 friend bool operator!= (const constant_iterator& i, const constant_iterator& i2) in operator !=() argument
83 { return !(i == i2); } in operator !=()
85 friend bool operator< (const constant_iterator& i, const constant_iterator& i2) in operator <() argument
86 { return i.less(i2); } in operator <()
88 friend bool operator> (const constant_iterator& i, const constant_iterator& i2) in operator >() argument
89 { return i2 < i; } in operator >()
91 friend bool operator<= (const constant_iterator& i, const constant_iterator& i2) in operator <=() argument
92 { return !(i > i2); } in operator <=()
[all …]
/OK3568_Linux_fs/buildroot/dl/sox/git/lpc10/
H A Dencode.c112 integer idel, nbit, i__, j, i2, i3, mrk; in encode_() local
242 i2 = irc[i__]; in encode_()
244 if (i2 < 0) { in encode_()
245 i2 = -i2; in encode_()
248 i2 /= 512; in encode_()
249 i2 = min(i2,63); in encode_()
250 i2 = entab6[i2]; in encode_()
252 i2 = -i2; in encode_()
254 irc[i__] = i2; in encode_()
259 i2 = irc[i__] / 2; in encode_()
[all …]
H A Ddecode.c168 integer ipit, iout, i__, icorf, index, ivoic, ixcor, i1, i2, i4; in decode_() local
396 i2 = drc[(5 - i__) * 3 - 2] & 31; in decode_()
397 lsb = i2 & 1; in decode_()
398 index = (i1 << 4) + i2 / 2; in decode_()
481 i2 = irc[i__]; in decode_()
483 if (i2 < 0) { in decode_()
485 i2 = -i2; in decode_()
486 if (i2 > 15) { in decode_()
487 i2 = 0; in decode_()
490 i2 = detab7[i2 * 2]; in decode_()
[all …]
/OK3568_Linux_fs/kernel/arch/arm64/crypto/
H A Daes-ce.S57 .macro do_enc_Nx, de, mc, k, i0, i1, i2, i3, i4
64 aes\de \i2\().16b, \k\().16b
65 aes\mc \i2\().16b, \i2\().16b
77 .macro round_Nx, enc, k, i0, i1, i2, i3, i4
79 do_enc_Nx e, mc, \k, \i0, \i1, \i2, \i3, \i4
81 do_enc_Nx d, imc, \k, \i0, \i1, \i2, \i3, \i4
86 .macro fin_round_Nx, de, k, k2, i0, i1, i2, i3, i4
91 aes\de \i2\().16b, \k\().16b
102 eor \i2\().16b, \i2\().16b, \k2\().16b
112 .macro do_block_Nx, enc, rounds, i0, i1, i2, i3, i4
[all …]
/OK3568_Linux_fs/kernel/arch/sparc/lib/
H A DNGmemcpy.S88 add %i2, %i5, %i0
92 add %i2, %g1, %i0
97 add %i2, %g1, %i0
102 add %i2, %g1, %i0
107 add %i2, %g1, %i0
112 add %i2, %g1, %i0
117 add %i2, %g1, %i0
122 add %i2, %g1, %i0
127 add %i2, %g1, %i0
131 add %i2, %i4, %i0
[all …]
H A Dxor.S264 ldda [%i2] %asi, %f16
272 add %i2, 64, %i2
310 ldda [%i2] %asi, %f16
361 prefetch [%i2], #one_read
366 mov %i2, %i1
367 1: ldda [%i1 + 0x00] %asi, %i2 /* %i2/%i3 = src + 0x00 */
377 xor %o0, %i2, %o0
407 prefetch [%i2], #one_read
413 mov %i2, %i1
415 1: ldda [%i1 + 0x00] %asi, %i2 /* %i2/%i3 = src1 + 0x00 */
[all …]
H A Ddivdi3.S26 cmp %i2,0
33 sub %g0,%i2,%o0
35 mov %o2,%i2
39 cmp %i2,0
130 cmp %i2,%i0
137 cmp %i2,%o0
139 mov %i2,%o1
140 cmp %i2,256
147 cmp %i2,%o0
161 cmp %i0,%i2
[all …]
H A Dudivdi3.S14 cmp %i2,0
111 cmp %i2,%i0
118 cmp %i2,%o0
120 mov %i2,%o1
121 cmp %i2,256
142 cmp %i0,%i2
152 sll %i2,%o2,%i2
154 or %i2,%o1,%i2
165 subcc %o4,%i2,%g0
168 sub %o4,%i2,%o4 ! this kills msb of n
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/iterator/
H A Diterator_concepts.hpp86 std::iter_swap(i1, i2); in BOOST_CONCEPT_USAGE()
90 Iterator i2;
207 void interop_single_pass_constraints(Iterator1 const& i1, Iterator2 const& i2)
210 b = i1 == i2;
211 b = i1 != i2;
213 b = i2 == i1;
214 b = i2 != i1;
220 Iterator1 const& i1, Iterator2 const& i2,
225 b = i1 < i2;
226 b = i1 <= i2;
[all …]
/OK3568_Linux_fs/kernel/drivers/isdn/mISDN/
H A Dl1oip_codec.c312 int i1, i2, c, sample; in l1oip_4bit_alloc() local
332 i2 = 0; in l1oip_4bit_alloc()
333 while (i2 < 256) { in l1oip_4bit_alloc()
334 table_com[(i1 << 8) | i2] |= (c << 4); in l1oip_4bit_alloc()
335 table_com[(i2 << 8) | i1] |= c; in l1oip_4bit_alloc()
336 i2++; in l1oip_4bit_alloc()
348 i2 = 0; in l1oip_4bit_alloc()
349 while (i2 < 16) { in l1oip_4bit_alloc()
350 table_dec[(i1 << 4) | i2] |= (sample << 8); in l1oip_4bit_alloc()
351 table_dec[(i2 << 4) | i1] |= sample; in l1oip_4bit_alloc()
[all …]
/OK3568_Linux_fs/u-boot/lib/bzip2/
H A Dbzlib_blocksort.c388 UInt32 i2, in mainGtU() argument
398 AssertD ( i1 != i2, "mainGtU" ); in mainGtU()
400 c1 = block[i1]; c2 = block[i2]; in mainGtU()
402 i1++; i2++; in mainGtU()
404 c1 = block[i1]; c2 = block[i2]; in mainGtU()
406 i1++; i2++; in mainGtU()
408 c1 = block[i1]; c2 = block[i2]; in mainGtU()
410 i1++; i2++; in mainGtU()
412 c1 = block[i1]; c2 = block[i2]; in mainGtU()
414 i1++; i2++; in mainGtU()
[all …]
/OK3568_Linux_fs/kernel/arch/arm64/kvm/
H A Dsys_regs.h137 const struct sys_reg_desc *i2) in cmp_sys_reg() argument
139 BUG_ON(i1 == i2); in cmp_sys_reg()
142 else if (!i2) in cmp_sys_reg()
144 if (i1->Op0 != i2->Op0) in cmp_sys_reg()
145 return i1->Op0 - i2->Op0; in cmp_sys_reg()
146 if (i1->Op1 != i2->Op1) in cmp_sys_reg()
147 return i1->Op1 - i2->Op1; in cmp_sys_reg()
148 if (i1->CRn != i2->CRn) in cmp_sys_reg()
149 return i1->CRn - i2->CRn; in cmp_sys_reg()
150 if (i1->CRm != i2->CRm) in cmp_sys_reg()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/fusion/container/vector/detail/cpp03/preprocessed/
H A Das_vector10.hpp71 typename gen::I1 i1 = fusion::next(i0); typename gen::I2 i2 = fusion::next(i1); in call() local
72 return result(*i0 , *i1 , *i2); in call()
92 …n::I1 i1 = fusion::next(i0); typename gen::I2 i2 = fusion::next(i1); typename gen::I3 i3 = fusion:… in call() local
93 return result(*i0 , *i1 , *i2 , *i3); in call()
113 …n::I1 i1 = fusion::next(i0); typename gen::I2 i2 = fusion::next(i1); typename gen::I3 i3 = fusion:… in call() local
114 return result(*i0 , *i1 , *i2 , *i3 , *i4); in call()
134 …n::I1 i1 = fusion::next(i0); typename gen::I2 i2 = fusion::next(i1); typename gen::I3 i3 = fusion:… in call() local
135 return result(*i0 , *i1 , *i2 , *i3 , *i4 , *i5); in call()
155 …n::I1 i1 = fusion::next(i0); typename gen::I2 i2 = fusion::next(i1); typename gen::I3 i3 = fusion:… in call() local
156 return result(*i0 , *i1 , *i2 , *i3 , *i4 , *i5 , *i6); in call()
[all …]
H A Das_vector20.hpp71 typename gen::I1 i1 = fusion::next(i0); typename gen::I2 i2 = fusion::next(i1); in call() local
72 return result(*i0 , *i1 , *i2); in call()
92 …n::I1 i1 = fusion::next(i0); typename gen::I2 i2 = fusion::next(i1); typename gen::I3 i3 = fusion:… in call() local
93 return result(*i0 , *i1 , *i2 , *i3); in call()
113 …n::I1 i1 = fusion::next(i0); typename gen::I2 i2 = fusion::next(i1); typename gen::I3 i3 = fusion:… in call() local
114 return result(*i0 , *i1 , *i2 , *i3 , *i4); in call()
134 …n::I1 i1 = fusion::next(i0); typename gen::I2 i2 = fusion::next(i1); typename gen::I3 i3 = fusion:… in call() local
135 return result(*i0 , *i1 , *i2 , *i3 , *i4 , *i5); in call()
155 …n::I1 i1 = fusion::next(i0); typename gen::I2 i2 = fusion::next(i1); typename gen::I3 i3 = fusion:… in call() local
156 return result(*i0 , *i1 , *i2 , *i3 , *i4 , *i5 , *i6); in call()
[all …]
H A Das_vector30.hpp71 typename gen::I1 i1 = fusion::next(i0); typename gen::I2 i2 = fusion::next(i1); in call() local
72 return result(*i0 , *i1 , *i2); in call()
92 …n::I1 i1 = fusion::next(i0); typename gen::I2 i2 = fusion::next(i1); typename gen::I3 i3 = fusion:… in call() local
93 return result(*i0 , *i1 , *i2 , *i3); in call()
113 …n::I1 i1 = fusion::next(i0); typename gen::I2 i2 = fusion::next(i1); typename gen::I3 i3 = fusion:… in call() local
114 return result(*i0 , *i1 , *i2 , *i3 , *i4); in call()
134 …n::I1 i1 = fusion::next(i0); typename gen::I2 i2 = fusion::next(i1); typename gen::I3 i3 = fusion:… in call() local
135 return result(*i0 , *i1 , *i2 , *i3 , *i4 , *i5); in call()
155 …n::I1 i1 = fusion::next(i0); typename gen::I2 i2 = fusion::next(i1); typename gen::I3 i3 = fusion:… in call() local
156 return result(*i0 , *i1 , *i2 , *i3 , *i4 , *i5 , *i6); in call()
[all …]
H A Dvector10.hpp431 …I1 i1 = fusion::next(i0); typedef typename result_of::next< I1>::type I2; I2 i2 = fusion::next(i1); in init_from_sequence() local
432 return vector_data3(*i0 , *i1 , *i2); in init_from_sequence()
444 …I1 i1 = fusion::next(i0); typedef typename result_of::next< I1>::type I2; I2 i2 = fusion::next(i1); in init_from_sequence() local
445 return vector_data3(*i0 , *i1 , *i2); in init_from_sequence()
543 …I1 i1 = fusion::next(i0); typedef typename result_of::next< I1>::type I2; I2 i2 = fusion::next(i1); in operator =() local
544 this->m0 = *i0; this->m1 = *i1; this->m2 = *i2; in operator =()
612 …t_of::next< I1>::type I2; I2 i2 = fusion::next(i1); typedef typename result_of::next< I2>::type I3… in init_from_sequence() local
613 return vector_data4(*i0 , *i1 , *i2 , *i3); in init_from_sequence()
625 …t_of::next< I1>::type I2; I2 i2 = fusion::next(i1); typedef typename result_of::next< I2>::type I3… in init_from_sequence() local
626 return vector_data4(*i0 , *i1 , *i2 , *i3); in init_from_sequence()
[all …]
/OK3568_Linux_fs/external/xserver/Xi/
H A Dgetfctl.c149 xIntegerFeedbackState *i2; in CopySwapIntegerFeedback() local
151 i2 = (xIntegerFeedbackState *) * buf; in CopySwapIntegerFeedback()
152 i2->class = IntegerFeedbackClass; in CopySwapIntegerFeedback()
153 i2->length = sizeof(xIntegerFeedbackState); in CopySwapIntegerFeedback()
154 i2->id = i->ctrl.id; in CopySwapIntegerFeedback()
155 i2->resolution = i->ctrl.resolution; in CopySwapIntegerFeedback()
156 i2->min_value = i->ctrl.min_value; in CopySwapIntegerFeedback()
157 i2->max_value = i->ctrl.max_value; in CopySwapIntegerFeedback()
159 swaps(&i2->length); in CopySwapIntegerFeedback()
160 swapl(&i2->resolution); in CopySwapIntegerFeedback()
[all …]
/OK3568_Linux_fs/kernel/scripts/coccinelle/api/
H A Dcheck_bq27xxx_data.cocci24 identifier i,i1,i2;
32 [e2] = BQ27XXX_DATA(i2,...),
38 i2 << str.i2;
44 if not(i1 = i2)
48 i2regs := make_ident (i2 ^ "_regs");
50 i2dmregs := make_ident (i2 ^ "_dm_regs");
52 i2props := make_ident (i2 ^ "_props")
/OK3568_Linux_fs/kernel/scripts/coccinelle/iterators/
H A Dfor_each_child.cocci82 iterator r.i,i1,i2;
108 ?i2(...,n,...) S2
114 iterator r.i,i1,i2;
142 ?i2(...,n,...) S2
189 iterator r.i, i1, i2;
213 ?i2(...,n,...) S2
220 iterator r.i, i2;
236 ?i2(...,n,...) S2
244 iterator r.i, i1, i2;
270 ?i2(...,n,...) S2
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/move/algo/detail/
H A Dinsertion_sort.hpp48 BirdirectionalIterator i2 = j2; in insertion_sort_op() local
49 if (comp(*first1, *--i2)){ in insertion_sort_op()
50 op(i2, j2); in insertion_sort_op()
51 for (--j2; i2 != first2 && comp(*first1, *--i2); --j2) { in insertion_sort_op()
52 op(i2, j2); in insertion_sort_op()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/range/
H A Dconcepts.hpp158 Iterator i2(++i); in BOOST_CONCEPT_USAGE() local
159 boost::ignore_unused_variable_warning(i2); in BOOST_CONCEPT_USAGE()
201 Iterator i2(i++); in BOOST_CONCEPT_USAGE() local
202 boost::ignore_unused_variable_warning(i2); in BOOST_CONCEPT_USAGE()
288 iterator i2 = boost::end(*m_range); in BOOST_CONCEPT_USAGE() local
291 boost::ignore_unused_variable_warning(i2); in BOOST_CONCEPT_USAGE()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/fusion/algorithm/iteration/detail/
H A Dfor_each.hpp67 I2 i2(fusion::next(i1)); in call() local
68 f(*i2); in call()
70 I3 i3(fusion::next(i2)); in call()
88 I2 i2(fusion::next(i1)); in call() local
89 f(*i2); in call()
/OK3568_Linux_fs/u-boot/doc/device-tree-bindings/misc/
H A Dintel,baytrail-fsp.txt24 - fsp,enable-i2-c0
25 - fsp,enable-i2-c1
26 - fsp,enable-i2-c2
27 - fsp,enable-i2-c3
28 - fsp,enable-i2-c4
29 - fsp,enable-i2-c5
30 - fsp,enable-i2-c6
/OK3568_Linux_fs/kernel/include/sound/
H A Dpcm_params.h289 static inline int snd_interval_eq(const struct snd_interval *i1, const struct snd_interval *i2) in snd_interval_eq() argument
292 return i2->empty; in snd_interval_eq()
293 if (i2->empty) in snd_interval_eq()
295 return i1->min == i2->min && i1->openmin == i2->openmin && in snd_interval_eq()
296 i1->max == i2->max && i1->openmax == i2->openmax; in snd_interval_eq()
/OK3568_Linux_fs/kernel/drivers/md/
H A Ddm-crypt.c814 int i, i1, i2, i3; in diffuser_a_decrypt() local
818 i2 = n - 2; in diffuser_a_decrypt()
822 d[i1] += d[i2] ^ (d[i3] << 9 | d[i3] >> 23); in diffuser_a_decrypt()
823 i1++; i2++; i3++; in diffuser_a_decrypt()
828 d[i1] += d[i2] ^ d[i3]; in diffuser_a_decrypt()
829 i1++; i2++; i3++; in diffuser_a_decrypt()
831 if (i2 >= n) in diffuser_a_decrypt()
832 i2 -= n; in diffuser_a_decrypt()
834 d[i1] += d[i2] ^ (d[i3] << 13 | d[i3] >> 19); in diffuser_a_decrypt()
835 i1++; i2++; i3++; in diffuser_a_decrypt()
[all …]

12345