Home
last modified time | relevance | path

Searched refs:J (Results 1 – 25 of 2414) sorted by relevance

12345678910>>...97

/third_party/giflib/tests/
Dwelcome2.rgb1JJRJJJJA9�1�ZJRZJRZJRZJRZJRZJRZJR)�1�9�A�JRRRRRJJA9�1�)�…
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
DPPCEarlyReturn.cpp72 for (MachineBasicBlock::iterator J = (*PI)->getLastNonDebugInstr();;) { in processBlock() local
73 if (J == (*PI)->end()) in processBlock()
76 if (J->getOpcode() == PPC::B) { in processBlock()
77 if (J->getOperand(0).getMBB() == &ReturnMBB) { in processBlock()
80 BuildMI(**PI, J, J->getDebugLoc(), TII->get(I->getOpcode())) in processBlock()
82 MachineBasicBlock::iterator K = J--; in processBlock()
88 } else if (J->getOpcode() == PPC::BCC) { in processBlock()
89 if (J->getOperand(2).getMBB() == &ReturnMBB) { in processBlock()
92 BuildMI(**PI, J, J->getDebugLoc(), TII->get(PPC::BCCLR)) in processBlock()
93 .addImm(J->getOperand(0).getImm()) in processBlock()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DTimeProfiler.cpp109 json::OStream J(OS); in Write() local
110 J.objectBegin(); in Write()
111 J.attributeBegin("traceEvents"); in Write()
112 J.arrayBegin(); in Write()
119 J.object([&]{ in Write()
120 J.attribute("pid", 1); in Write()
121 J.attribute("tid", 0); in Write()
122 J.attribute("ph", "X"); in Write()
123 J.attribute("ts", StartUs); in Write()
124 J.attribute("dur", DurUs); in Write()
[all …]
/third_party/boost/boost/mp11/
Dtuple.hpp34 …F, class Tp, std::size_t... J> BOOST_MP11_CONSTEXPR auto tuple_apply_impl( F && f, Tp && tp, integ… in tuple_apply_impl() argument
35 -> decltype( std::forward<F>(f)( std::get<J>(std::forward<Tp>(tp))... ) ) in tuple_apply_impl()
37 return std::forward<F>(f)( std::get<J>(std::forward<Tp>(tp))... ); in tuple_apply_impl()
54 … T, class Tp, std::size_t... J> BOOST_MP11_CONSTEXPR T construct_from_tuple_impl( Tp && tp, intege… in construct_from_tuple_impl() argument
56 return T( std::get<J>(std::forward<Tp>(tp))... ); in construct_from_tuple_impl()
72 …te<class Tp, std::size_t... J, class F> BOOST_MP11_CONSTEXPR F tuple_for_each_impl( Tp && tp, inte… in tuple_for_each_impl() argument
74 using A = int[sizeof...(J)]; in tuple_for_each_impl()
75 return (void)A{ ((void)f(std::get<J>(std::forward<Tp>(tp))), 0)... }, std::forward<F>(f); in tuple_for_each_impl()
107 template<std::size_t J, class... Tp>
109 -> decltype( tp_forward_r( std::get<J>( std::forward<Tp>( tp ) )... ) ) in tp_extract()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Orc/
DOrcCBindings.cpp30 OrcCBindingsStack &J = *unwrap(JITStack); in LLVMOrcGetErrorMsg() local
31 return J.getErrorMessage().c_str(); in LLVMOrcGetErrorMsg()
36 OrcCBindingsStack &J = *unwrap(JITStack); in LLVMOrcGetMangledSymbol() local
37 std::string Mangled = J.mangle(SymbolName); in LLVMOrcGetMangledSymbol()
47 OrcCBindingsStack &J = *unwrap(JITStack); in LLVMOrcCreateLazyCompileCallback() local
48 if (auto Addr = J.createLazyCompileCallback(Callback, CallbackCtx)) { in LLVMOrcCreateLazyCompileCallback()
58 OrcCBindingsStack &J = *unwrap(JITStack); in LLVMOrcCreateIndirectStub() local
59 return wrap(J.createIndirectStub(StubName, InitAddr)); in LLVMOrcCreateIndirectStub()
65 OrcCBindingsStack &J = *unwrap(JITStack); in LLVMOrcSetIndirectStubPointer() local
66 return wrap(J.setIndirectStubPointer(StubName, NewAddr)); in LLVMOrcSetIndirectStubPointer()
[all …]
/third_party/typescript/tests/baselines/reference/
DcomparisonOperatorWithSubtypeObjectOnOptionalProperty.types10 interface J {
18 var b: J;
19 >b : J
26 >b : J
31 >b : J
39 >b : J
44 >b : J
52 >b : J
57 >b : J
65 >b : J
[all …]
/third_party/boost/libs/serialization/test/
Dtest_cyclic_ptrs.cpp33 class J : public A class
43 bool operator==(const J &rhs) const;
44 J *j;
45 J(J *_j) : j(_j) {} in J() function in J
46 J() : j(NULL){} in J() function in J
49 BOOST_CLASS_VERSION(J, 6)
51 bool J::operator==(const J &rhs) const in operator ==()
70 J j1;
71 J j2;
72 J j3;
[all …]
DJ.hpp25 class J : public A class
38 bool operator==(const J &rhs) const;
39 J *j;
40 J(J *_j) : j(_j) {} in J() function in J
41 J() : j(NULL){} in J() function in J
44 BOOST_CLASS_VERSION(J, 6)
46 bool J::operator==(const J &rhs) const in operator ==()
/third_party/libpsl/fuzz/libpsl_icu_load_fuzzer.in/
D8a7038d949648bccd88c9cca392875c8562a6296103 *.J
182 *.J
246 *.J
297 *.J
348 *.J
482 *.J
502 *.J
630 *.J
701 *.J
719 *.J
[all …]
/third_party/boost/libs/numeric/odeint/examples/mtl/
Dimplicit_euler_mtl.cpp56 void operator()( const vec_mtl4 &x , mat_mtl4 &J , const double &t ) in operator ()()
59 mtl::matrix::inserter<mat_mtl4> ins(J); in operator ()()
92 void operator()( const vec_ublas &x , mat_ublas &J , const double &t ) in operator ()()
97 J(0,0)=-0.06; in operator ()()
101 J(i,i-1) = + 4.2; in operator ()()
102 J(i,i) = -4.2*x[i]; in operator ()()
131 void operator()( const vec_mtl4 &x , mat_mtl4 &J , const double &t ) in operator ()()
134 mtl::matrix::inserter<mat_mtl4> ins(J); in operator ()()
182 void operator()( const vec_ublas &x , mat_ublas &J , const double &t ) in operator ()()
188 J(i ,i) = -4.2e-2; in operator ()()
[all …]
/third_party/boost/boost/spirit/home/classic/phoenix/
Dbinders.hpp191 , typename J = nil_t
315 typename F, typename G, typename H, typename I, typename J>
317 A, B, C, D, E, F, G, H, I, J> {
325 typename F, typename G, typename H, typename I, typename J,
328 A, B, C, D, E, F, G, H, I, J, K> {
336 typename F, typename G, typename H, typename I, typename J,
339 A, B, C, D, E, F, G, H, I, J, K, L> {
348 typename F, typename G, typename H, typename I, typename J,
351 A, B, C, D, E, F, G, H, I, J, K, L, M> {
359 typename F, typename G, typename H, typename I, typename J,
[all …]
Dnew.hpp97 , typename J
198 typename F, typename G, typename H, typename I, typename J
202 F const& f, G const& g, H const& h, I const& i, J const& j) const in operator ()()
209 typename F, typename G, typename H, typename I, typename J,
214 F const& f, G const& g, H const& h, I const& i, J const& j, in operator ()()
222 typename F, typename G, typename H, typename I, typename J,
227 F const& f, G const& g, H const& h, I const& i, J const& j, in operator ()()
236 typename F, typename G, typename H, typename I, typename J,
241 F const& f, G const& g, H const& h, I const& i, J const& j, in operator ()()
249 typename F, typename G, typename H, typename I, typename J,
[all …]
Dfunctions.hpp198 typename F, typename G, typename H, typename I, typename J
201 OperationT, A, B, C, D, E, F, G, H, I, J
205 F const& f, G const& g, H const& h, I const& i, J const& j
210 typename F, typename G, typename H, typename I, typename J,
214 OperationT, A, B, C, D, E, F, G, H, I, J, K
218 F const& f, G const& g, H const& h, I const& i, J const& j,
224 typename F, typename G, typename H, typename I, typename J,
228 OperationT, A, B, C, D, E, F, G, H, I, J, K, L
232 F const& f, G const& g, H const& h, I const& i, J const& j,
240 typename F, typename G, typename H, typename I, typename J,
[all …]
Dactor.hpp197 typename F, typename G, typename H, typename I, typename J>
199 tuple<A&, B&, C&, D&, E&, F&, G&, H&, I&, J&>
202 A& a, B& b, C& c, D& d, E& e, F& f, G& g, H& h, I& i, J& j) const;
206 typename F, typename G, typename H, typename I, typename J,
209 tuple<A&, B&, C&, D&, E&, F&, G&, H&, I&, J&, K&>
212 A& a, B& b, C& c, D& d, E& e, F& f, G& g, H& h, I& i, J& j,
217 typename F, typename G, typename H, typename I, typename J,
220 tuple<A&, B&, C&, D&, E&, F&, G&, H&, I&, J&, K&, L&>
223 A& a, B& b, C& c, D& d, E& e, F& f, G& g, H& h, I& i, J& j,
230 typename F, typename G, typename H, typename I, typename J,
[all …]
Dcasts.hpp224 , typename J
338 typename F, typename G, typename H, typename I, typename J
342 F const& f, G const& g, H const& h, I const& i, J const& j) const in operator ()()
350 typename F, typename G, typename H, typename I, typename J,
355 F const& f, G const& g, H const& h, I const& i, J const& j, in operator ()()
364 typename F, typename G, typename H, typename I, typename J,
369 F const& f, G const& g, H const& h, I const& i, J const& j, in operator ()()
379 typename F, typename G, typename H, typename I, typename J,
384 F const& f, G const& g, H const& h, I const& i, J const& j, in operator ()()
393 typename F, typename G, typename H, typename I, typename J,
[all …]
/third_party/boost/boost/qvm/
Dmap_mat_mat.hpp116 template <int J,class OriginalMatrix,int R,int C>
118 deduce_mat<qvm_detail::del_row_<J,OriginalMatrix>,R,C>
123 template <int J,class OriginalMatrix,int R,int C>
125 … deduce_mat2<qvm_detail::del_row_<J,OriginalMatrix>,qvm_detail::del_row_<J,OriginalMatrix>,R,C>
185 template <int J,class OriginalMatrix>
187 mat_traits< qvm_detail::del_col_<J,OriginalMatrix> >
189 typedef qvm_detail::del_col_<J,OriginalMatrix> this_matrix;
204 …return mat_traits<OriginalMatrix>::template read_element<Row,Col+(Col>=J)>(reinterpret_cast<Origin… in read_element()
217 …return mat_traits<OriginalMatrix>::template write_element<Row,Col+(Col>=J)>(reinterpret_cast<Origi… in write_element()
229 …return mat_traits<OriginalMatrix>::read_element_idx(row,col+(col>=J),reinterpret_cast<OriginalMatr… in read_element_idx()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
DHexagonVLIWPacketizer.cpp1194 const MachineInstr &J) { in hasDeadDependence() argument
1198 if (I.isCall() || J.isCall()) in hasDeadDependence()
1200 if (HII->isPredicated(I) || HII->isPredicated(J)) in hasDeadDependence()
1210 for (auto &MO : J.operands()) { in hasDeadDependence()
1221 const MachineInstr &J) { in hasControlDependence() argument
1225 doesModifyCalleeSavedReg(J, HRI)) || in hasControlDependence()
1226 (HII->isSaveCalleeSavedRegsCall(J) && in hasControlDependence()
1231 if (isControlFlow(I) && isControlFlow(J)) in hasControlDependence()
1245 if (HII->isLoopN(I) && isBadForLoopN(J)) in hasControlDependence()
1247 if (HII->isLoopN(J) && isBadForLoopN(I)) in hasControlDependence()
[all …]
/third_party/flutter/skia/third_party/externals/libjpeg-turbo/simd/x86_64/
Djcgryext-avx2.asm147 ; 0G 1G 2G 0H 1H 2H 0I 1I 2I 0J 1J 2J 0K 1K 2K 0L)
153 ; 0G 1G 2G 0H 1H 2H 0I 1I 2I 0J 1J 2J 0K 1K 2K 0L)
165 ; 2I 0J 1J 2J 0K 1K 2K 0L -- -- -- -- -- -- -- --)
173 ; 2I 2Q 0J 0R 1J 1R 2J 2R 0K 0S 1K 1S 2K 2S 0L 0T)
186 ; 04 0C 14 1C 24 2C 05 0D 2I 2Q 0J 0R 1J 1R 2J 2R)
191 ; 2I 2M 2Q 2U 0J 0N 0R 0V 1J 1N 1R 1V 2J 2N 2R 2V)
205 ; 2G 2I 2K 2M 2O 2Q 2S 2U 0H 0J 0L 0N 0P 0R 0T 0V)
207 ; 1H 1J 1L 1N 1P 1R 1T 1V 2H 2J 2L 2N 2P 2R 2T 2V)
217 vpunpckhbw ymmB, ymmB, ymmH ; ymmB=(01 03 05 07 09 0B 0D 0F 0H 0J 0L 0N 0P 0R 0T 0V)
220 vpunpcklbw ymmD, ymmD, ymmH ; ymmD=(11 13 15 17 19 1B 1D 1F 1H 1J 1L 1N 1P 1R 1T 1V)
[all …]
/third_party/skia/third_party/externals/libjpeg-turbo/simd/x86_64/
Djcgryext-avx2.asm146 ; 0G 1G 2G 0H 1H 2H 0I 1I 2I 0J 1J 2J 0K 1K 2K 0L)
152 ; 0G 1G 2G 0H 1H 2H 0I 1I 2I 0J 1J 2J 0K 1K 2K 0L)
164 ; 2I 0J 1J 2J 0K 1K 2K 0L -- -- -- -- -- -- -- --)
172 ; 2I 2Q 0J 0R 1J 1R 2J 2R 0K 0S 1K 1S 2K 2S 0L 0T)
185 ; 04 0C 14 1C 24 2C 05 0D 2I 2Q 0J 0R 1J 1R 2J 2R)
190 ; 2I 2M 2Q 2U 0J 0N 0R 0V 1J 1N 1R 1V 2J 2N 2R 2V)
204 ; 2G 2I 2K 2M 2O 2Q 2S 2U 0H 0J 0L 0N 0P 0R 0T 0V)
206 ; 1H 1J 1L 1N 1P 1R 1T 1V 2H 2J 2L 2N 2P 2R 2T 2V)
216 vpunpckhbw ymmB, ymmB, ymmH ; ymmB=(01 03 05 07 09 0B 0D 0F 0H 0J 0L 0N 0P 0R 0T 0V)
219 vpunpcklbw ymmD, ymmD, ymmH ; ymmD=(11 13 15 17 19 1B 1D 1F 1H 1J 1L 1N 1P 1R 1T 1V)
[all …]
/third_party/libjpeg-turbo/simd/x86_64/
Djcgryext-avx2.asm145 ; 0G 1G 2G 0H 1H 2H 0I 1I 2I 0J 1J 2J 0K 1K 2K 0L)
151 ; 0G 1G 2G 0H 1H 2H 0I 1I 2I 0J 1J 2J 0K 1K 2K 0L)
163 ; 2I 0J 1J 2J 0K 1K 2K 0L -- -- -- -- -- -- -- --)
171 ; 2I 2Q 0J 0R 1J 1R 2J 2R 0K 0S 1K 1S 2K 2S 0L 0T)
184 ; 04 0C 14 1C 24 2C 05 0D 2I 2Q 0J 0R 1J 1R 2J 2R)
189 ; 2I 2M 2Q 2U 0J 0N 0R 0V 1J 1N 1R 1V 2J 2N 2R 2V)
203 ; 2G 2I 2K 2M 2O 2Q 2S 2U 0H 0J 0L 0N 0P 0R 0T 0V)
205 ; 1H 1J 1L 1N 1P 1R 1T 1V 2H 2J 2L 2N 2P 2R 2T 2V)
215 vpunpckhbw ymmB, ymmB, ymmH ; ymmB=(01 03 05 07 09 0B 0D 0F 0H 0J 0L 0N 0P 0R 0T 0V)
218 vpunpcklbw ymmD, ymmD, ymmH ; ymmD=(11 13 15 17 19 1B 1D 1F 1H 1J 1L 1N 1P 1R 1T 1V)
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DLiveRangeUtils.h29 typename LiveRangeT::iterator J = LR.begin(), E = LR.end(); in DistributeRange() local
30 while (J != E && VNIClasses[J->valno->id] == 0) in DistributeRange()
31 ++J; in DistributeRange()
32 for (typename LiveRangeT::iterator I = J; I != E; ++I) { in DistributeRange()
38 *J++ = *I; in DistributeRange()
40 LR.segments.erase(J, E); in DistributeRange()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DBDCE.cpp50 auto *J = dyn_cast<Instruction>(JU); in clearAssumptionsOfUsers() local
51 if (J && J->getType()->isIntOrIntVectorTy() && in clearAssumptionsOfUsers()
52 !DB.getDemandedBits(J).isAllOnesValue()) { in clearAssumptionsOfUsers()
53 Visited.insert(J); in clearAssumptionsOfUsers()
54 WorkList.push_back(J); in clearAssumptionsOfUsers()
69 Instruction *J = WorkList.pop_back_val(); in clearAssumptionsOfUsers() local
72 J->dropPoisonGeneratingFlags(); in clearAssumptionsOfUsers()
78 for (User *KU : J->users()) { in clearAssumptionsOfUsers()
/third_party/skia/third_party/externals/angle2/third_party/r8/
Dbackported_methods.txt10 java/lang/Byte#toUnsignedLong(B)J
35 java/lang/Integer#toUnsignedLong(I)J
40 java/lang/Long#divideUnsigned(JJ)J
41 java/lang/Long#hashCode(J)I
42 java/lang/Long#max(JJ)J
43 java/lang/Long#min(JJ)J
44 java/lang/Long#parseUnsignedLong(Ljava/lang/String;)J
45 java/lang/Long#parseUnsignedLong(Ljava/lang/String;I)J
46 java/lang/Long#remainderUnsigned(JJ)J
47 java/lang/Long#sum(JJ)J
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
DOcamlGCPrinter.cpp122 for (GCFunctionInfo::iterator J = FI.begin(), JE = FI.end(); J != JE; ++J) { in finishAssembly() local
157 for (GCFunctionInfo::iterator J = FI.begin(), JE = FI.end(); J != JE; ++J) { in finishAssembly() local
158 size_t LiveCount = FI.live_size(J); in finishAssembly()
167 AP.OutStreamer->EmitSymbolValue(J->Label, IntPtrSize); in finishAssembly()
171 for (GCFunctionInfo::live_iterator K = FI.live_begin(J), in finishAssembly()
172 KE = FI.live_end(J); in finishAssembly()
/third_party/skia/experimental/wasm-skp-debugger/debugger/
Danim.mskp12 …��� ����&54632#2&54632#3#" o mUU   J�4���I������"�C���…
21J�a/�YM�KK�MM�LL�Md�gf�dIAzQ�P�Qy@IQK�UU�KK�TT�K��P�� �� ���32###26654&&##P�<f==f<�…
29 …6632&#"3267#5!#��pp�qR�8wA^CqBBqCZx��d�v)p�qq�p84x>DsCCtD\J�'/v�h��"�����+�…
30J,:.*4���"�����"�����R������"�����"�����W������"���X�"������������"�@���"�����#…
32 H,J,:.*4����"����"�����X�����"��������:�G��3#&54632#6654&#"3&&546325…
33 …9E%!0.4m^��I%4K,J,:.*4����"�����"�����Y�����"��s�0�8�E��&&5463254&#"'66326632…
34J,G(FG@1,M1Q[
35 …9E'"$3>50/5BvL :P(\#>HE;�E @+L?�,J,:.*4����"��s��"�����R�����?��6���%��&'##33663…
36 …327&&''7&'77#>54&&#"3�rBCo?/G0#�Y9;dGeDDD?qI-J++I,-K++J,FuEGsA"*>8>'

12345678910>>...97