/external/pcre/dist2/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 | 143 /\x{100}/IB,utf 145 /\x{1000}/IB,utf 147 /\x{10000}/IB,utf 149 /\x{100000}/IB,utf 151 /\x{10ffff}/IB,utf 153 /[\x{ff}]/IB,utf 155 /[\x{100}]/IB,utf 157 /\x80/IB,utf 159 /\xff/IB,utf 161 /\x{D55c}\x{ad6d}\x{C5B4}/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 | 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 | testoutput10 | 244 /\x{100}/IB,utf 257 /\x{1000}/IB,utf 270 /\x{10000}/IB,utf 283 /\x{100000}/IB,utf 296 /\x{10ffff}/IB,utf 309 /[\x{ff}]/IB,utf 322 /[\x{100}]/IB,utf 335 /\x80/IB,utf 348 /\xff/IB,utf 361 /\x{D55c}\x{ad6d}\x{C5B4}/IB,utf [all …]
|
D | testinput2 | 236 /((?i)b)/IB 448 /.*X/IB 452 /(.*X|^B)/IB 456 /(?s)(.*X|^B)/IB 458 /(?s:.*X|^B)/IB 663 /^[[:alnum:]]/IB 665 /^[[:^alnum:]]/IB 667 /^[[:alpha:]]/IB 669 /^[[:^alpha:]]/IB 673 /^[[:ascii:]]/IB [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/FuzzMutate/ |
D | IRMutator.cpp | 36 void IRMutationStrategy::mutate(Module &M, RandomIRBuilder &IB) { in mutate() argument 40 auto RS = makeSampler<Function *>(IB.Rand); in mutate() 44 mutate(*RS.getSelection(), IB); in mutate() 47 void IRMutationStrategy::mutate(Function &F, RandomIRBuilder &IB) { in mutate() argument 48 mutate(*makeSampler(IB.Rand, make_pointer_range(F)).getSelection(), IB); in mutate() 51 void IRMutationStrategy::mutate(BasicBlock &BB, RandomIRBuilder &IB) { in mutate() argument 52 mutate(*makeSampler(IB.Rand, make_pointer_range(BB)).getSelection(), IB); in mutate() 60 RandomIRBuilder IB(Seed, Types); in mutateModule() local 62 auto RS = makeSampler<IRMutationStrategy *>(IB.Rand); in mutateModule() 68 Strategy->mutate(M, IB); in mutateModule() [all …]
|
/external/clang/test/Analysis/engine/ |
D | replay-without-inlining.c | 18 } IB; typedef 19 unsigned long gl(IB *input); 20 inline void gbs(IB *input, unsigned char *buf, int count); 21 void getB(IB *st, Hdr2 *usedtobeundef); 22 inline unsigned char gb(IB *input) { in gb() 27 static void getID(IB *st, char str[4]) { in getID() 33 static void getH(IB *st, Hdr *header) { in getH() 37 static void readILBM(IB *st, Info *pic) { in readILBM() 51 int bitmapImageRepFromIFF(IB st, const unsigned char *ib, int il) { in bitmapImageRepFromIFF()
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/FuzzMutate/ |
D | RandomIRBuilderTest.cpp | 62 RandomIRBuilder IB(Seed, {}); in TEST() local 82 Value *LastSrc = IB.newSource(BB, Insts, Srcs, Descr.SourcePreds[2]); in TEST() 104 RandomIRBuilder IB(Seed, Types); in TEST() local 126 Value *Src = IB.findOrCreateSource( in TEST() 148 RandomIRBuilder IB(Seed, {}); in TEST() local 162 IB.connectToSink(BB, Sinks, Source); in TEST() 183 RandomIRBuilder IB(Seed, Types); in TEST() local 198 Srcs[1] = IB.findOrCreateSource(BB, {Source}, Srcs, Descr.SourcePreds[1]); in TEST() 199 IB.findOrCreateSource(BB, {}, Srcs, Descr.SourcePreds[2]); in TEST() 224 RandomIRBuilder IB(Seed, Types); in TEST() local [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/FuzzMutate/ |
D | IRMutator.h | 49 virtual void mutate(Module &M, RandomIRBuilder &IB); 50 virtual void mutate(Function &F, RandomIRBuilder &IB); 51 virtual void mutate(BasicBlock &BB, RandomIRBuilder &IB); 52 virtual void mutate(Instruction &I, RandomIRBuilder &IB) { in mutate() argument 79 RandomIRBuilder &IB); 92 void mutate(Function &F, RandomIRBuilder &IB) override; 93 void mutate(BasicBlock &BB, RandomIRBuilder &IB) override; 102 void mutate(Function &F, RandomIRBuilder &IB) override; 103 void mutate(Instruction &Inst, RandomIRBuilder &IB) override;
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
D | StringMap.cpp | 202 for (ItemBucket *IB = TheTable, *E = TheTable+NumBuckets; IB != E; ++IB) { in RehashTable() local 203 if (IB->Item && IB->Item != getTombstoneVal()) { in RehashTable() 205 unsigned FullHash = IB->FullHashValue; in RehashTable() 208 NewTableArray[FullHash & (NewSize-1)].Item = IB->Item; in RehashTable() 220 NewTableArray[NewBucket].Item = IB->Item; in RehashTable()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-mca/ |
D | FetchStage.h | 29 InstrBuilder &IB; variable 33 FetchStage(InstrBuilder &IB, SourceMgr &SM) : IB(IB), SM(SM) {} in FetchStage() argument
|
D | InstructionTables.h | 31 InstrBuilder &IB; variable 36 : Stage(), SM(Model), IB(Builder) {} in InstructionTables()
|
D | Context.cpp | 32 Context::createDefaultPipeline(const PipelineOptions &Opts, InstrBuilder &IB, in createDefaultPipeline() argument 44 auto F = llvm::make_unique<FetchStage>(IB, SrcMgr); in createDefaultPipeline()
|
/external/walt/hardware/enclosure/ |
D | WALT_recessed_enclosure.stl | 37 …IB��@��L@�]?<�j�IB��@��L@�JB��@�@j�IB��@�@��a?9�j�IB��@��L@j�IB��@�@�…
|
/external/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. 52 Label IB end ports.
|
/external/llvm/lib/CodeGen/ |
D | TargetRegisterInfo.cpp | 258 for (SuperRegClassIterator IB(RCB, this, true); IB.isValid(); ++IB) { in getCommonSuperRegClass() local 261 firstCommonClass(IA.getMask(), IB.getMask(), this); in getCommonSuperRegClass() 266 unsigned FinalB = composeSubRegIndices(IB.getSubReg(), SubB); in getCommonSuperRegClass() 277 *BestPreB = IB.getSubReg(); in getCommonSuperRegClass()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Coroutines/ |
D | CoroCleanup.cpp | 61 for (auto IB = inst_begin(F), E = inst_end(F); IB != E;) { in lowerRemainingCoroIntrinsics() local 62 Instruction &I = *IB++; in lowerRemainingCoroIntrinsics()
|
/external/clang/test/Index/ |
D | cursor-dynamic-call.mm | 13 @interface IB interface 18 @interface IS : IB 36 [IB ClsMeth];
|
/external/clang/test/Layout/ |
D | ms-x86-vtordisp.cpp | 422 struct __declspec(dllexport) IB : virtual IA { struct 424 IB() {} in IB() function 456 sizeof(IB)+
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/ |
D | TargetRegisterInfo.cpp | 319 for (SuperRegClassIterator IB(RCB, this, true); IB.isValid(); ++IB) { in getCommonSuperRegClass() local 322 firstCommonClass(IA.getMask(), IB.getMask(), this); in getCommonSuperRegClass() 327 unsigned FinalB = composeSubRegIndices(IB.getSubReg(), SubB); in getCommonSuperRegClass() 338 *BestPreB = IB.getSubReg(); in getCommonSuperRegClass()
|
/external/clang/test/Index/Core/ |
D | index-subkinds.m | 42 // CHECK: [[@LINE+1]]:34 | instance-property(IB)/ObjC | prop | c:objc(cs)IBCls(py)prop | <no-cgname… 44 // CHECK: [[@LINE+1]]:54 | instance-property(IB,IBColl)/ObjC | propColl | c:objc(cs)IBCls(py)propCo… 46 // CHECK: [[@LINE+1]]:1 | instance-method(IB)/ObjC | doIt | c:objc(cs)IBCls(im)doIt | -[IBCls doIt]…
|
/external/clang/test/ARCMT/ |
D | retains.m.result | 57 id (^IB)() = ^() { 61 IB();
|
D | retains.m | 63 id (^IB)() = ^() { 67 IB();
|
D | releases.m.result | 62 id (^IB)() = ^() { 66 IB();
|