Home
last modified time | relevance | path

Searched refs:i_ (Results 1 – 25 of 30) sorted by relevance

12

/third_party/flutter/skia/third_party/externals/harfbuzz/src/
Dhb-open-type.hh394 const Type& operator [] (int i_) const in operator []()
396 unsigned int i = (unsigned int) i_; in operator []()
401 Type& operator [] (int i_) in operator []()
403 unsigned int i = (unsigned int) i_; in operator []()
491 const Type& operator [] (int i_) const in operator []()
493 unsigned int i = (unsigned int) i_; in operator []()
498 Type& operator [] (int i_) in operator []()
500 unsigned int i = (unsigned int) i_; in operator []()
549 const Type& operator [] (int i_) const in operator []()
551 unsigned int i = (unsigned int) i_; in operator []()
[all …]
Dhb-vector.hh109 Type& operator [] (int i_) in operator []()
111 unsigned int i = (unsigned int) i_; in operator []()
116 const Type& operator [] (int i_) const in operator []()
118 unsigned int i = (unsigned int) i_; in operator []()
/third_party/skia/third_party/externals/abseil-cpp/absl/random/internal/
Dsequence_urbg.h44 sequence_urbg(std::initializer_list<result_type> data) : i_(0), data_(data) {} in sequence_urbg()
45 void reset() { i_ = 0; } in reset()
47 result_type operator()() { return data_[i_++ % data_.size()]; } in operator()
49 size_t invocations() const { return i_; } in invocations()
52 size_t i_;
/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-open-type.hh448 const Type& operator [] (int i_) const in operator []()
450 unsigned int i = (unsigned int) i_; in operator []()
455 Type& operator [] (int i_) in operator []()
457 unsigned int i = (unsigned int) i_; in operator []()
548 const Type& operator [] (int i_) const in operator []()
550 unsigned int i = (unsigned int) i_; in operator []()
555 Type& operator [] (int i_) in operator []()
557 unsigned int i = (unsigned int) i_; in operator []()
606 const Type& operator [] (int i_) const in operator []()
608 unsigned int i = (unsigned int) i_; in operator []()
[all …]
Dhb-vector.hh130 Type& operator [] (int i_) in operator []()
132 unsigned int i = (unsigned int) i_; in operator []()
137 const Type& operator [] (int i_) const in operator []()
139 unsigned int i = (unsigned int) i_; in operator []()
/third_party/harfbuzz/src/
Dhb-open-type.hh435 const Type& operator [] (int i_) const in operator []()
437 unsigned int i = (unsigned int) i_; in operator []()
442 Type& operator [] (int i_) in operator []()
444 unsigned int i = (unsigned int) i_; in operator []()
533 const Type& operator [] (int i_) const in operator []()
535 unsigned int i = (unsigned int) i_; in operator []()
540 Type& operator [] (int i_) in operator []()
542 unsigned int i = (unsigned int) i_; in operator []()
596 const Type& operator [] (int i_) const in operator []()
598 unsigned int i = (unsigned int) i_; in operator []()
[all …]
Dhb-vector.hh114 Type& operator [] (int i_) in operator []()
116 unsigned int i = (unsigned int) i_; in operator []()
121 const Type& operator [] (int i_) const in operator []()
123 unsigned int i = (unsigned int) i_; in operator []()
/third_party/nghttp2/tests/
Dnghttp2_test_helper.h49 ssize_t i_; \
54 for (i_ = 0; i_ < (ssize_t)len; ++i_) { \
55 CU_ASSERT(nghttp2_nv_equal(&a[i_], &b[i_])); \
/third_party/vk-gl-cts/external/vulkan-docs/src/config/
Dmathtest.adoc904 i_{0} & = \left \lfloor u - \frac{3}{2} \right \rfloor & i_{1} & = i_{0} + 1 & i_{2} & = i_{1} + 1…
Dmathtest.txt904 i_{0} & = \left \lfloor u - \frac{3}{2} \right \rfloor & i_{1} & = i_{0} + 1 & i_{2} & = i_{1} + 1…
/third_party/vk-gl-cts/external/vulkan-docs/src/chapters/
Dtextures.adoc1165 i_{RB} & =
1176 i_{floor} & = \left\lfloor i_{RB} \right\rfloor \\
1179 i_{frac} & = i_{RB} - i_{floor} \\
1188 & \tau_{RB}( i_{floor}, j_{floor})[level]
1189 & \times & ( 1 - i_{frac} ) &
1191 & \tau_{RB}( 1 + i_{floor}, j_{floor})[level]
1192 & \times & ( i_{frac} ) &
1194 & \tau_{RB}( i_{floor}, 1 + j_{floor})[level]
1195 & \times & ( 1 - i_{frac} ) &
1197 & \tau_{RB}( 1 + i_{floor}, 1 + j_{floor})[level]
[all …]
Dtextures.txt1146 i_{RB} & =
1157 i_{floor} & = \left\lfloor i_{RB} \right\rfloor \\
1160 i_{frac} & = i_{RB} - i_{floor} \\
1169 & \tau_{RB}( i_{floor}, j_{floor})[level]
1170 & \times & ( 1 - i_{frac} ) &
1172 & \tau_{RB}( 1 + i_{floor}, j_{floor})[level]
1173 & \times & ( i_{frac} ) &
1175 & \tau_{RB}( i_{floor}, 1 + j_{floor})[level]
1176 & \times & ( 1 - i_{frac} ) &
1178 & \tau_{RB}( 1 + i_{floor}, 1 + j_{floor})[level]
[all …]
/third_party/vk-gl-cts/modules/glshared/
DglsScissorTests.cpp597 …Color(const deInt32 i_[4]) : type(INT) { i[0] = i_[0]; i[1] = i_[1]; i[2] = i_[2]; i[3] = i_[3]… in Color()
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/detail/
Dtype_half.inl26 GLM_FUNC_QUALIFIER uif32(uint32 i_) : argument
27 i(i_)
/third_party/rust/crates/nom/src/multi/
Dmod.rs517 let i_ = i.clone(); in many1_count() localVariable
518 match f.parse(i_) { in many1_count()
706 let i_ = input.clone(); in fold_many0() localVariable
708 match f.parse(i_) { in fold_many0()
/third_party/ninja/src/
Dgraph.cc612 explicit matches(std::vector<StringPiece>::iterator i) : i_(i) {} in matches()
616 return *i_ == opath; in operator ()()
619 std::vector<StringPiece>::iterator i_; member
/third_party/googletest/googlemock/test/
Dgmock-matchers_test.cc1056 explicit MoveOnly(int i) : i_(i) {} in MoveOnly()
1062 bool operator==(const MoveOnly& other) const { return i_ == other.i_; } in operator ==()
1063 bool operator!=(const MoveOnly& other) const { return i_ != other.i_; } in operator !=()
1064 bool operator<(const MoveOnly& other) const { return i_ < other.i_; } in operator <()
1065 bool operator<=(const MoveOnly& other) const { return i_ <= other.i_; } in operator <=()
1066 bool operator>(const MoveOnly& other) const { return i_ > other.i_; } in operator >()
1067 bool operator>=(const MoveOnly& other) const { return i_ >= other.i_; } in operator >=()
1070 int i_; member in testing::gmock_matchers_test::__anonbffc6dba0111::MoveOnly
6852 SampleVariantIntString(int i) : i_(i), has_int_(true) {} in TEST()
6866 const int& get_impl(int*) const { return i_; } in TEST()
[all …]
/third_party/mbedtls/3rdparty/everest/library/
DHacl_Curve25519.c683 uint32_t i_ = i - (uint32_t)1U; in Hacl_EC_Ladder_SmallLoop_cmult_small_loop() local
687 Hacl_EC_Ladder_SmallLoop_cmult_small_loop(nq, nqpq, nq2, nqpq2, q, byt_, i_); in Hacl_EC_Ladder_SmallLoop_cmult_small_loop()
/third_party/mbedtls/3rdparty/everest/library/legacy/
DHacl_Curve25519.c728 uint32_t i_ = i - (uint32_t)1U; in Hacl_EC_Ladder_SmallLoop_cmult_small_loop() local
732 Hacl_EC_Ladder_SmallLoop_cmult_small_loop(nq, nqpq, nq2, nqpq2, q, byt_, i_); in Hacl_EC_Ladder_SmallLoop_cmult_small_loop()
/third_party/ffmpeg/libavcodec/x86/
Ddirac_dwt.asm184 cglobal horizontal_compose_haar%2i_%1, 3,6,4, b, tmp, w, x, w2, b_w2
/third_party/protobuf/csharp/src/Google.Protobuf.Test.TestProtos/
DUnittestCustomOptionsProto3.cs3111 i_ = other.i_; in Aggregate()
3124 private int i_; field in UnitTest.Issues.TestProtos.Aggregate
3127 get { return i_; }
3129 i_ = value;
DTestMessagesProto2.cs5620 i_ = other.i_; in MessageSetCorrectExtension2()
5633 private int i_; field in ProtobufTestMessages.Proto2.TestAllTypesProto2.Types.MessageSetCorrectExtension2
5636 get { if ((_hasBits0 & 1) != 0) { return i_; } else { return IDefaultValue; } }
5639 i_ = value;
DUnittestProto3.cs3372 i_ = other.i_; in TestRecursiveMessage()
3394 private int i_; field in Google.Protobuf.TestProtos.TestRecursiveMessage
3397 get { return i_; }
3399 i_ = value;
DUnittest.cs10817 i_ = other.i_; in TestRecursiveMessage()
10841 private int i_; field in Google.Protobuf.TestProtos.Proto2.TestRecursiveMessage
10844 get { if ((_hasBits0 & 1) != 0) { return i_; } else { return IDefaultValue; } }
10847 i_ = value;
12320 i_ = other.i_; in SubGroup()
12333 private int i_; field in Google.Protobuf.TestProtos.Proto2.TestIsInitialized.Types.SubMessage.Types.SubGroup
12336 get { if ((_hasBits0 & 1) != 0) { return i_; } else { return IDefaultValue; } }
12339 i_ = value;
/third_party/cups-filters/cupsfilters/
Dimage.ppm558 ME�I$�]C�ra}pym�vj�rf�nb�i_bZWPMJ;;8;'0� 
1508 …7B4;;3B86R>?cFHK')J" KO X)c4 l>&qB.a1%Z+!e7(�WA�qR�sK�h6{a&kW}k�v%wmi_f_lg kl~�#��)��.��…
3319 >d6\>da�4ij&ccc`kc"i_!]QTITJ@9 65 -0*1/8 5A9F<G
3861 …9*7..?-( ?Q+��u��y��w��e{nK[P4OG4JC==8<-+8$%7$%9* #+,&67)HE2]U1we'�k}jp` hZi^kbi_eYaP
4209 …"E,/MAAVVTRfd>ql;|v9zr/nf*f^0ga4g`4aZ3XQ*GC20$% ( @3WJ(f[#i_f]e[gY_KaD`<#^.…
4342 …&CK*>I%9D5=2712201.825JC7H@7B:FKDCD<B?8VPDRG3M?"E8C6 I>SIYP^T�f]�i_�k^�j[�gW�jXp^ qcg`…
4601 …T\2JV#0A(#--3(,%.)1B8/G7=\Jb�sr�����{��F{i=sc&`R&e\;|v)jd#bZ:yq-i_(`SV�x�Ʊ�ħ�š�ˡ�Ț�����…
5152 i^`ZWS�OP�QRRUSY+OZ:AZE=YM9LH3>@4;E<DQ<L[5Q_GQOUUVXWUT!SR)SQ+UQ)aV*dV/aX0[T/VS-VR%VRVPi_
5236 …9)>/I:K;B5 >4�:4�?6�I@WM[QWLPESDSDVDXF\I_LaN cP fSeRcP bPaQdUdXe[i_f^ c] aZ
5292 bO dQ gU k[qbthvli_e]`Z\UWQUORNPL TQONGM!@L$;N.2O3+L7$J;(RH"KGBD!@E'BK1EP5ER8CU=C]<A_…

12