/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/fuzz/ |
D | comparator_deep_blocks_first.h | 33 bool operator()(uint32_t bb1, uint32_t bb2) const { in operator() 35 fuzzerutil::MaybeFindBlock(ir_context_, bb2)); in operator() 38 bool operator()(const opt::BasicBlock* bb1, opt::BasicBlock* bb2) const { in operator() 39 assert(bb1 && bb2 && "The blocks must exist."); in operator() 40 assert(bb1->GetParent() == bb2->GetParent() && in operator() 43 ir_context_->GetStructuredCFGAnalysis()->NestingDepth(bb2->id()); in operator()
|
/third_party/skia/third_party/externals/spirv-tools/source/fuzz/ |
D | comparator_deep_blocks_first.h | 33 bool operator()(uint32_t bb1, uint32_t bb2) const { in operator() 35 fuzzerutil::MaybeFindBlock(ir_context_, bb2)); in operator() 38 bool operator()(const opt::BasicBlock* bb1, opt::BasicBlock* bb2) const { in operator() 39 assert(bb1 && bb2 && "The blocks must exist."); in operator() 40 assert(bb1->GetParent() == bb2->GetParent() && in operator() 43 ir_context_->GetStructuredCFGAnalysis()->NestingDepth(bb2->id()); in operator()
|
/third_party/spirv-tools/source/fuzz/ |
D | comparator_deep_blocks_first.h | 33 bool operator()(uint32_t bb1, uint32_t bb2) const { in operator() 35 fuzzerutil::MaybeFindBlock(ir_context_, bb2)); in operator() 38 bool operator()(const opt::BasicBlock* bb1, opt::BasicBlock* bb2) const { in operator() 39 assert(bb1 && bb2 && "The blocks must exist."); in operator() 40 assert(bb1->GetParent() == bb2->GetParent() && in operator() 43 ir_context_->GetStructuredCFGAnalysis()->NestingDepth(bb2->id()); in operator()
|
/third_party/typescript/tests/baselines/reference/ |
D | contextuallyTypedBooleanLiterals.js | 15 const bb2: Box<boolean> = box(false); // Error, box<false> not assignable to Box<boolean> constant 36 var bb2 = box(false); // Error, box<false> not assignable to Box<boolean> variable 49 declare const bb2: Box<boolean>;
|
D | contextuallyTypedBooleanLiterals.symbols | 39 const bb2: Box<boolean> = box(false); // Error, box<false> not assignable to Box<boolean> 40 >bb2 : Symbol(bb2, Decl(contextuallyTypedBooleanLiterals.ts, 13, 5))
|
D | contextuallyTypedBooleanLiterals.types | 37 const bb2: Box<boolean> = box(false); // Error, box<false> not assignable to Box<boolean> 38 >bb2 : Box<boolean>
|
D | nullishCoalescingOperator1.js | 29 const bb2 = b2 ?? 1; constant 75 var bb2 = b2 !== null && b2 !== void 0 ? b2 : 1; variable
|
D | nullishCoalescingOperator1.symbols | 78 const bb2 = b2 ?? 1; 79 >bb2 : Symbol(bb2, Decl(nullishCoalescingOperator1.ts, 27, 5))
|
D | nullishCoalescingOperator1.types | 99 const bb2 = b2 ?? 1; 100 >bb2 : number
|
/third_party/FreeBSD/contrib/gdtoa/ |
D | strtodg.c | 325 int bb0, bb2, bb5, bbe, bd2, bd5, bbbits, bs2, c, decpt, denorm; local 724 bb2 = bb5 = 0; 728 bb2 = bb5 = -e; 732 bb2 += bbe; 735 bs2 = bb2; 740 bb2 += j; 742 i = bb2 < bd2 ? bb2 : bd2; 746 bb2 -= i; 756 bb2 -= bb0; 757 if (bb2 > 0) [all …]
|
D | strtod.c | 95 int bb2, bb5, bbe, bd2, bd5, bbbits, bs2, c, decpt, dsign, local 586 bb2 = bb5 = 0; 590 bb2 = bb5 = -e; 594 bb2 += bbe; 597 bs2 = bb2; 632 bb2 += j; 637 i = bb2 < bd2 ? bb2 : bd2; 641 bb2 -= i; 651 if (bb2 > 0) 652 bb = lshift(bb, bb2);
|
/third_party/typescript/tests/arkTSTest/testcase/arkts-no-destruct-assignment/ |
D | arkts-no-destruct-assignment-2-ok.ets | 19 let bb2 = numbersArr2[1] 23 console.log(bb2);
|
/third_party/ltp/tools/sparse/sparse-src/ |
D | cse.c | 282 static struct basic_block *trivial_common_parent(struct basic_block *bb1, struct basic_block *bb2) in trivial_common_parent() argument 289 if (bb_list_size(bb2->parents) != 1) in trivial_common_parent() 291 if (first_basic_block(bb2->parents) != parent) in trivial_common_parent()
|
D | simplify.c | 112 struct basic_block *bb, *bb1, *bb2, *source; in if_convert_phi() local 124 bb2 = array[1]->bb; in if_convert_phi() 127 if ((bb1 != parents[0] || bb2 != parents[1]) && in if_convert_phi() 128 (bb1 != parents[1] || bb2 != parents[0])) in if_convert_phi() 135 if (source != phi_parent(bb2, p2)) in if_convert_phi() 158 if (br->bb_true == bb2 || br->bb_false == bb1) { in if_convert_phi()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | README-X86-64.txt | 95 LBB1_2: ## bb2 102 jmp LBB1_2 ## bb2 107 JMP mbb<bb2,0x203afb0> 115 bb2: 0x203afb0, LLVM BB @0x1e02340, ID#3:
|
/third_party/typescript/tests/cases/compiler/ |
D | contextuallyTypedBooleanLiterals.ts | 20 const bb2: Box<boolean> = box(false); // Error, box<false> not assignable to Box<boolean>
|
/third_party/python/Python/ |
D | dtoa.c | 1440 int bb2, bb5, bbe, bd2, bd5, bs2, c, dsign, e, e1, error; in _Py_dg_strtod() local 1829 bb2 = bb5 = 0; in _Py_dg_strtod() 1833 bb2 = bb5 = -e; in _Py_dg_strtod() 1837 bb2 += bbe; in _Py_dg_strtod() 1840 bs2 = bb2; in _Py_dg_strtod() 1841 bb2++; in _Py_dg_strtod() 1862 i = bb2 < bd2 ? bb2 : bd2; in _Py_dg_strtod() 1866 bb2 -= i; in _Py_dg_strtod() 1884 if (bb2 > 0) { in _Py_dg_strtod() 1885 bb = lshift(bb, bb2); in _Py_dg_strtod()
|
/third_party/typescript/tests/cases/conformance/expressions/nullishCoalescingOperator/ |
D | nullishCoalescingOperator1.ts | 31 const bb2 = b2 ?? 1; constant
|
/third_party/ffmpeg/libavfilter/opencl/ |
D | deshake.cl | 307 float a = 0, b = 0, c = 0, bb1 = 0, bb2 = 0; 331 bb2 += gxy * px + gyy * py; 342 feature_tmp.x = (float)(feature.x + (c * scale * bb1) - (b * scale * bb2)); 343 feature_tmp.y = (float)(feature.y - (b * scale * bb1) + (a * scale * bb2));
|
/third_party/gstreamer/gstplugins_good/gst/deinterlace/ |
D | gstdeinterlacemethod.h | 137 const guint8 *tt2, *t2, *m2, *b2, *bb2; member
|
D | gstdeinterlacemethod.c | 442 scanlines.bb2 = get_line (&lg, 2, 0, i, 2); in gst_deinterlace_simple_method_deinterlace_frame_packed() 560 scanlines.bb2 = get_line (lg, 2, plane, i, 2); in gst_deinterlace_simple_method_deinterlace_frame_planar_plane()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ |
D | README.txt | 956 bb: ; preds = %bb2, %entry 957 %.rle = phi i32 [ 0, %entry ], [ %.rle6, %bb2 ] 958 %i.05 = phi i32 [ 0, %entry ], [ %indvar.next, %bb2 ] 961 br i1 %2, label %bb2, label %bb1 966 br label %bb2 968 bb2: ; preds = %bb, %bb1 1104 bb2: ; preds = %bb1 1109 bb3: ; preds = %bb1, %bb2, %bb 1110 %c_addr.0 = phi %struct.f* [ %g, %bb2 ], [ %c, %bb ], [ %c, %bb1 ] 1111 %b_addr.0 = phi %struct.f* [ %b, %bb2 ], [ %g, %bb ], [ %b, %bb1 ] [all …]
|
/third_party/elfutils/tests/ |
D | testfile44.expect.bz2 |
|
D | testfile45.expect.bz2 | 1testfile45.o: elf64-elf_x86_64
2
3Disassembly of section .text:
4
5 0 ... |