/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/FuzzMutate/ |
D | IRMutator.cpp | 35 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/ |
D | testinput12 | 5 /���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 …]
|
D | testinput10 | 145 /\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 …]
|
D | testoutput12-32 | 5 /���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 …]
|
D | testoutput12-16 | 5 /���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 …]
|
D | testoutput10 | 247 /\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 …]
|
D | testinput2 | 236 /((?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/ |
D | cast5.c | 31 #define IB(x) (((x) >> 16) & 0xff) macro 40 … f = ((S1[IA(I)] + S2[IB(I)]) ^ S3[IC(I)]) - S4[ID(I)]; \ 47 … f = ((S1[IA(I)] - S2[IB(I)]) + S3[IC(I)]) ^ S4[ID(I)]; \ 54 … f = ((S1[IA(I)] ^ S2[IB(I)]) - S3[IC(I)]) + S4[ID(I)]; \ 60 … z[0] = x[0] ^ S5[IB(x[3])] ^ S6[ID(x[3])] ^ S7[IA(x[3])] ^ S8[IC(x[3])] ^ S7[IA(x[2])]; \ 61 … z[1] = x[2] ^ S5[IA(z[0])] ^ S6[IC(z[0])] ^ S7[IB(z[0])] ^ S8[ID(z[0])] ^ S8[IC(x[2])]; \ 62 … z[2] = x[3] ^ S5[ID(z[1])] ^ S6[IC(z[1])] ^ S7[IB(z[1])] ^ S8[IA(z[1])] ^ S5[IB(x[2])]; \ 63 … z[3] = x[1] ^ S5[IC(z[2])] ^ S6[IB(z[2])] ^ S7[ID(z[2])] ^ S8[IA(z[2])] ^ S6[ID(x[2])]; \ 68 … x[0] = z[2] ^ S5[IB(z[1])] ^ S6[ID(z[1])] ^ S7[IA(z[1])] ^ S8[IC(z[1])] ^ S7[IA(z[0])]; \ 69 … 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/ |
D | IRMutator.h | 48 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/ |
D | staticIndexSignature4.types | 22 interface IB { 33 declare const i: IB 34 >i : IB 93 >i : IB 102 >i : IB 111 >i : IB 120 >i : IB 131 >i : IB 140 >i : IB 154 >i : IB [all …]
|
D | genericTypeWithMultipleBases3.symbols | 14 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))
|
D | staticIndexSignature4.symbols | 22 interface IB { 23 >IB : Symbol(IB, Decl(staticIndexSignature4.ts, 8, 1)) 35 declare const i: IB 37 >IB : Symbol(IB, Decl(staticIndexSignature4.ts, 8, 1)) 76 >i.a : Symbol(IB.__index, Decl(staticIndexSignature4.ts, 10, 14)) 78 >a : Symbol(IB.__index, Decl(staticIndexSignature4.ts, 10, 14)) 88 >i.a : Symbol(IB.__index, Decl(staticIndexSignature4.ts, 10, 14)) 90 >a : Symbol(IB.__index, Decl(staticIndexSignature4.ts, 10, 14)) 100 >i.a : Symbol(IB.__index, Decl(staticIndexSignature4.ts, 10, 14)) 102 >a : Symbol(IB.__index, Decl(staticIndexSignature4.ts, 10, 14)) [all …]
|
D | genericTypeWithMultipleBases3.js | 8 interface IB<T> { 14 interface IC<T> extends IA<T>, IB<T> { }
|
D | genericTypeWithMultipleBases3.types | 10 interface IB<T> { 18 interface IC<T> extends IA<T>, IB<T> { }
|
D | staticIndexSignature4.js | 12 interface IB { 18 declare const i: IB
|
/third_party/selinux/secilc/docs/ |
D | cil_infiniband_statements.md | 4 …IB) 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/musl/src/malloc/mallocng/ |
D | realloc.c | 16 unsigned char *end = start + stride - IB; in realloc() 32 size_t needed = (n + base + UNIT + IB + 4095) & -4096; in realloc() 39 end = g->mem->storage + (needed - UNIT) - IB; in realloc()
|
D | meta.h | 15 #define IB 4 macro 214 size_t slack = (stride-IB-n)/UNIT; in enframe() 216 unsigned char *end = p+stride-IB; in enframe() 246 n = (n+IB-1)>>4; in size_to_class()
|
D | malloc.c | 308 req += IB + UNIT; in alloc_group() 330 int j = size_to_class(UNIT+cnt*size-IB); in alloc_group() 331 int idx = alloc_slot(j, UNIT+cnt*size-IB); in alloc_group() 337 p = enframe(g, idx, UNIT*size_classes[j]-IB, ctx.mmap_counter); in alloc_group() 379 size_t needed = n + IB + UNIT; in malloc()
|
/third_party/typescript/tests/cases/compiler/ |
D | genericTypeWithMultipleBases3.ts | 7 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/ |
D | CoroCleanup.cpp | 60 for (auto IB = inst_begin(F), E = inst_end(F); IB != E;) { in lowerRemainingCoroIntrinsics() local 61 Instruction &I = *IB++; in lowerRemainingCoroIntrinsics()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | TargetRegisterInfo.cpp | 311 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/typescript/tests/cases/conformance/classes/staticIndexSignature/ |
D | staticIndexSignature4.ts | 13 interface IB { interface 19 declare const i: IB
|
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/2.3/generic_parameter_defaults/ |
D | generic_parameter_defaults_2.ts | 48 interface IB<V, T, U> { interface 53 interface CIB<V = number, T = V[], U = T[]> extends IB<V, T, U> { }
|
/third_party/musl/porting/linux/user/src/malloc/mallocng/ |
D | meta.h | 15 #define IB 4 macro 214 size_t slack = (stride-IB-n)/UNIT; in enframe() 216 unsigned char *end = p+stride-IB; in enframe() 246 n = (n+IB-1)>>4; in size_to_class()
|