Home
last modified time | relevance | path

Searched refs:IB (Results 1 – 25 of 115) sorted by relevance

12345

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/FuzzMutate/
DIRMutator.cpp35 void IRMutationStrategy::mutate(Module &M, RandomIRBuilder &IB) { in mutate() argument
39 auto RS = makeSampler<Function *>(IB.Rand); in mutate()
43 mutate(*RS.getSelection(), IB); in mutate()
46 void IRMutationStrategy::mutate(Function &F, RandomIRBuilder &IB) { in mutate() argument
47 mutate(*makeSampler(IB.Rand, make_pointer_range(F)).getSelection(), IB); in mutate()
50 void IRMutationStrategy::mutate(BasicBlock &BB, RandomIRBuilder &IB) { in mutate() argument
51 mutate(*makeSampler(IB.Rand, make_pointer_range(BB)).getSelection(), IB); in mutate()
59 RandomIRBuilder IB(Seed, Types); in mutateModule() local
61 auto RS = makeSampler<IRMutationStrategy *>(IB.Rand); in mutateModule()
67 Strategy->mutate(M, IB); in mutateModule()
[all …]
/third_party/pcre2/pcre2/testdata/
Dtestinput125 /���xxx/IB,utf,no_utf_check
12 /\x{ffff}/IB,utf
14 /\x{10000}/IB,utf
16 /\x{100}/IB,utf
18 /\x{1000}/IB,utf
20 /\x{10000}/IB,utf
22 /\x{100000}/IB,utf
24 /\x{10ffff}/IB,utf
26 /[\x{ff}]/IB,utf
28 /[\x{100}]/IB,utf
[all …]
Dtestinput10145 /\x{100}/IB,utf
147 /\x{1000}/IB,utf
149 /\x{10000}/IB,utf
151 /\x{100000}/IB,utf
153 /\x{10ffff}/IB,utf
155 /[\x{ff}]/IB,utf
157 /[\x{100}]/IB,utf
159 /\x80/IB,utf
161 /\xff/IB,utf
163 /\x{D55c}\x{ad6d}\x{C5B4}/IB,utf
[all …]
Dtestoutput12-325 /���xxx/IB,utf,no_utf_check
14 /\x{ffff}/IB,utf
26 /\x{10000}/IB,utf
38 /\x{100}/IB,utf
50 /\x{1000}/IB,utf
62 /\x{10000}/IB,utf
74 /\x{100000}/IB,utf
86 /\x{10ffff}/IB,utf
98 /[\x{ff}]/IB,utf
110 /[\x{100}]/IB,utf
[all …]
Dtestoutput12-165 /���xxx/IB,utf,no_utf_check
14 /\x{ffff}/IB,utf
26 /\x{10000}/IB,utf
39 /\x{100}/IB,utf
51 /\x{1000}/IB,utf
63 /\x{10000}/IB,utf
76 /\x{100000}/IB,utf
89 /\x{10ffff}/IB,utf
102 /[\x{ff}]/IB,utf
114 /[\x{100}]/IB,utf
[all …]
Dtestoutput10247 /\x{100}/IB,utf
260 /\x{1000}/IB,utf
273 /\x{10000}/IB,utf
286 /\x{100000}/IB,utf
299 /\x{10ffff}/IB,utf
312 /[\x{ff}]/IB,utf
325 /[\x{100}]/IB,utf
338 /\x80/IB,utf
351 /\xff/IB,utf
364 /\x{D55c}\x{ad6d}\x{C5B4}/IB,utf
[all …]
Dtestinput2236 /((?i)b)/IB
439 /.*X/IB
443 /(.*X|^B)/IB
447 /(?s)(.*X|^B)/IB
449 /(?s:.*X|^B)/IB
654 /^[[:alnum:]]/IB
656 /^[[:^alnum:]]/IB
658 /^[[:alpha:]]/IB
660 /^[[:^alpha:]]/IB
664 /^[[:ascii:]]/IB
[all …]
/third_party/ffmpeg/libavutil/
Dcast5.c27 #define IB(x) (((x) >> 16) & 0xff) macro
36 … f = ((S1[IA(I)] + S2[IB(I)]) ^ S3[IC(I)]) - S4[ID(I)]; \
43 … f = ((S1[IA(I)] - S2[IB(I)]) + S3[IC(I)]) ^ S4[ID(I)]; \
50 … f = ((S1[IA(I)] ^ S2[IB(I)]) - S3[IC(I)]) + S4[ID(I)]; \
56 … z[0] = x[0] ^ S5[IB(x[3])] ^ S6[ID(x[3])] ^ S7[IA(x[3])] ^ S8[IC(x[3])] ^ S7[IA(x[2])]; \
57 … z[1] = x[2] ^ S5[IA(z[0])] ^ S6[IC(z[0])] ^ S7[IB(z[0])] ^ S8[ID(z[0])] ^ S8[IC(x[2])]; \
58 … z[2] = x[3] ^ S5[ID(z[1])] ^ S6[IC(z[1])] ^ S7[IB(z[1])] ^ S8[IA(z[1])] ^ S5[IB(x[2])]; \
59 … z[3] = x[1] ^ S5[IC(z[2])] ^ S6[IB(z[2])] ^ S7[ID(z[2])] ^ S8[IA(z[2])] ^ S6[ID(x[2])]; \
64 … x[0] = z[2] ^ S5[IB(z[1])] ^ S6[ID(z[1])] ^ S7[IA(z[1])] ^ S8[IC(z[1])] ^ S7[IA(z[0])]; \
65 … x[1] = z[0] ^ S5[IA(x[0])] ^ S6[IC(x[0])] ^ S7[IB(x[0])] ^ S8[ID(x[0])] ^ S8[IC(z[0])]; \
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/FuzzMutate/
DIRMutator.h48 virtual void mutate(Module &M, RandomIRBuilder &IB);
49 virtual void mutate(Function &F, RandomIRBuilder &IB);
50 virtual void mutate(BasicBlock &BB, RandomIRBuilder &IB);
51 virtual void mutate(Instruction &I, RandomIRBuilder &IB) { in mutate() argument
78 RandomIRBuilder &IB);
91 void mutate(Function &F, RandomIRBuilder &IB) override;
92 void mutate(BasicBlock &BB, RandomIRBuilder &IB) override;
101 void mutate(Function &F, RandomIRBuilder &IB) override;
102 void mutate(Instruction &Inst, RandomIRBuilder &IB) override;
/third_party/typescript/tests/baselines/reference/
DgenericTypeWithMultipleBases3.symbols14 interface IB<T> {
15 >IB : Symbol(IB, Decl(genericTypeWithMultipleBases3.ts, 4, 1))
19 >bar : Symbol(IB.bar, Decl(genericTypeWithMultipleBases3.ts, 6, 17))
26 interface IC<T> extends IA<T>, IB<T> { }
31 >IB : Symbol(IB, Decl(genericTypeWithMultipleBases3.ts, 4, 1))
46 >c.bar : Symbol(IB.bar, Decl(genericTypeWithMultipleBases3.ts, 6, 17))
48 >bar : Symbol(IB.bar, Decl(genericTypeWithMultipleBases3.ts, 6, 17))
DgenericTypeWithMultipleBases3.js8 interface IB<T> {
14 interface IC<T> extends IA<T>, IB<T> { }
DgenericTypeWithMultipleBases3.types10 interface IB<T> {
18 interface IC<T> extends IA<T>, IB<T> { }
/third_party/boost/boost/numeric/ublas/experimental/
Dsparse_view.hpp116 template<class L, std::size_t IB, class IA, class JA, class TA>
118 public matrix_expression<compressed_matrix_view<L, IB, IA, JA, TA> > {
128 typedef compressed_matrix_view<L, IB, IA, JA, TA> self_type;
284 return k_based_index - IB; in zero_based()
288 return zero_based_index + IB; in k_based()
297 template<class L, std::size_t IB, class IA, class JA, class TA >
298 const typename compressed_matrix_view<L,IB,IA,JA,TA>::value_type
299 compressed_matrix_view<L,IB,IA,JA,TA>::zero_ = value_type/*zero*/();
302 template<class L, std::size_t IB, class IA, class JA, class TA >
303 compressed_matrix_view<L,IB,IA,JA,TA>
[all …]
/third_party/boost/libs/numeric/ublas/test/
Dsparse_view_test.cpp42 const unsigned int IB = 1; variable
61 …std::cout << ( ublas::make_compressed_matrix_view<ublas::row_major,IB>(3,4,NNZ,IA,JA,VA) ) << std:… in BOOST_AUTO_TEST_CASE()
63 …typedef ublas::compressed_matrix_view<ublas::row_major, IB, unsigned int [4], unsigned int [NNZ], … in BOOST_AUTO_TEST_CASE()
76 std::cout << ( ublas::make_compressed_matrix_view<ublas::column_major,IB>(4,3,NNZ in BOOST_AUTO_TEST_CASE()
90 , IB in BOOST_AUTO_TEST_CASE()
/third_party/selinux/secilc/docs/
Dcil_infiniband_statements.md4IB) partitions and subnet management, security contexts are provided for: Partition Keys (Pkey) th…
9 Label IB partition keys. This may be a single key or a range.
55 Label IB end ports.
/third_party/boost/boost/geometry/algorithms/detail/relate/
Dde9im.hpp142 char II = '*', char IB = '*', char IE = '*',
151 char, II, IB, IE, BI, BB, BE, EI, EB, EE
247 char II, char IB, char IE,
255 static_mask<II, IB, IE, BI, BB, BE, EI, EB, EE>
258 static_mask<II, IB, IE, BI, BB, BE, EI, EB, EE> const& ) in operator ||() argument
263 static_mask<II, IB, IE, BI, BB, BE, EI, EB, EE> in operator ||()
/third_party/typescript/tests/cases/compiler/
DgenericTypeWithMultipleBases3.ts7 interface IB<T> { interface
13 interface IC<T> extends IA<T>, IB<T> { }
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Coroutines/
DCoroCleanup.cpp60 for (auto IB = inst_begin(F), E = inst_end(F); IB != E;) { in lowerRemainingCoroIntrinsics() local
61 Instruction &I = *IB++; in lowerRemainingCoroIntrinsics()
DCoroEarly.cpp157 for (auto IB = inst_begin(F), IE = inst_end(F); IB != IE;) { in lowerEarlyIntrinsics() local
158 Instruction &I = *IB++; in lowerEarlyIntrinsics()
/third_party/boost/libs/geometry/doc/generated/
Dde9im_static_mask.qbk25 ``template<char II, char IB, char IE, char BI,
29 …: public detail::relate::static_mask< boost::mpl::vector_c< char, II, IB, IE, BI, BB, BE, EI, EB, …
39 [[char IB] ['*'] [Interior/Boundary intersection mask element ]]
/third_party/boost/boost/numeric/ublas/
Dfwd.hpp115 …template<class T, std::size_t IB = 0, class IA = unbounded_array<std::size_t>, class TA = unbounde…
117 …template<class T, std::size_t IB = 0, class IA = unbounded_array<std::size_t>, class TA = unbounde…
222 …template<class T, class L = row_major, std::size_t IB = 0, class IA = unbounded_array<std::size_t>…
224 …template<class T, class L = row_major, std::size_t IB = 0, class IA = unbounded_array<std::size_t>…
Dvector_sparse.hpp837 template<class T, std::size_t IB, class IA, class TA>
839 public vector_container<compressed_vector<T, IB, IA, TA> > {
844 typedef compressed_vector<T, IB, IA, TA> self_type;
916 return IB; in index_base()
1456 return k_based_index - IB; in zero_based()
1460 return zero_based_index + IB; in k_based()
1467 template<class T, std::size_t IB, class IA, class TA>
1468 …const typename compressed_vector<T, IB, IA, TA>::value_type compressed_vector<T, IB, IA, TA>::zero…
1493 template<class T, std::size_t IB, class IA, class TA>
1495 public vector_container<coordinate_vector<T, IB, IA, TA> > {
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DTargetRegisterInfo.cpp311 for (SuperRegClassIterator IB(RCB, this, true); IB.isValid(); ++IB) { in getCommonSuperRegClass() local
314 firstCommonClass(IA.getMask(), IB.getMask(), this); in getCommonSuperRegClass()
319 unsigned FinalB = composeSubRegIndices(IB.getSubReg(), SubB); in getCommonSuperRegClass()
330 *BestPreB = IB.getSubReg(); in getCommonSuperRegClass()
/third_party/flutter/skia/third_party/externals/imgui/examples/
Dimgui_impl_dx12.cpp46 ID3D12Resource* IB; member
69 ID3D12Resource* g_pIB = frameResources->IB; in ImGui_ImplDX12_RenderDrawData()
121 frameResources->IB = g_pIB; in ImGui_ImplDX12_RenderDrawData()
586 …if (g_pFrameResources[i].IB) { g_pFrameResources[i].IB->Release(); g_pFrameResources[i].IB = NULL;… in ImGui_ImplDX12_InvalidateDeviceObjects()
608 g_pFrameResources[i].IB = NULL; in ImGui_ImplDX12_Init()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
DAArch64StackTagging.cpp298 uint64_t Size, InitializerBuilder &IB);
336 InitializerBuilder &IB) { in collectInitializers() argument
368 if (!IB.addStore(*Offset, NextStore, DL)) in collectInitializers()
385 if (!IB.addMemSet(*Offset, MSI)) in collectInitializers()
414 InitializerBuilder IB(Size, DL, Ptr, SetTagFunc, SetTagZeroFunc, StgpFunc); in tagAlloca() local
421 InsertBefore = collectInitializers(InsertBefore, Ptr, Size, IB); in tagAlloca()
425 IB.generate(IRB); in tagAlloca()

12345