/third_party/spirv-tools/source/fuzz/ |
D | comparator_deep_blocks_first.h | 33 bool operator()(uint32_t bb1, uint32_t bb2) const { in operator() 34 return this->operator()(fuzzerutil::MaybeFindBlock(ir_context_, bb1), 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() 42 return ir_context_->GetStructuredCFGAnalysis()->NestingDepth(bb1->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() 34 return this->operator()(fuzzerutil::MaybeFindBlock(ir_context_, bb1), 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() 42 return ir_context_->GetStructuredCFGAnalysis()->NestingDepth(bb1->id()) > in operator()
|
/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() 34 return this->operator()(fuzzerutil::MaybeFindBlock(ir_context_, bb1), 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() 42 return ir_context_->GetStructuredCFGAnalysis()->NestingDepth(bb1->id()) > in operator()
|
/third_party/gstreamer/gstplugins_good/gst/deinterlace/tvtime/ |
D | vfir.c | 86 const guint8 *lum = scanlines->bb1; in deinterlace_line_packed_c() 99 const guint8 *lum = scanlines->bb1; in deinterlace_line_planar_y_c() 112 const guint8 *lum = scanlines->bb1; in deinterlace_line_planar_u_c() 125 const guint8 *lum = scanlines->bb1; in deinterlace_line_planar_v_c() 190 const guint8 *lum = scanlines->bb1; in deinterlace_line_packed_mmx() 204 const guint8 *lum = scanlines->bb1; in deinterlace_line_planar_y_mmx() 218 const guint8 *lum = scanlines->bb1; in deinterlace_line_planar_u_mmx() 232 const guint8 *lum = scanlines->bb1; in deinterlace_line_planar_v_mmx()
|
/third_party/gstreamer/gstplugins_good/gst/deinterlace/ |
D | yadif.c | 392 int mode = (s.tt1 == NULL || s.bb1 == NULL || s.ttp == NULL in filter_scanline_yadif() 400 if (s.bb1 == NULL) in filter_scanline_yadif() 401 s.bb1 = s.bbp; in filter_scanline_yadif() 408 s.ttp, s.bb1, s.bbp, w, colors, y_alternates_every, mode, bpp); in filter_scanline_yadif() 410 s.ttp, s.bb1, s.bbp, w, colors, y_alternates_every, colors * 3, w - edge, in filter_scanline_yadif() 424 int mode = (s.tt1 == NULL || s.bb1 == NULL || s.ttp == NULL in filter_scanline_yadif_planar() 432 if (s.bb1 == NULL) in filter_scanline_yadif_planar() 433 s.bb1 = s.bbp; in filter_scanline_yadif_planar() 440 s.ttp, s.bb1, s.bbp, w, 1, 0, mode, bpp); in filter_scanline_yadif_planar() 444 (void *) s.bp2, (void *) s.tt1, (void *) s.ttp, (void *) s.bb1, in filter_scanline_yadif_planar() [all …]
|
D | gstdeinterlacemethod.h | 136 const guint8 *tt1, *t1, *m1, *b1, *bb1; member
|
D | gstdeinterlacemethod.c | 460 scanlines.bb1 = get_line (&lg, 1, 0, i, 2); in gst_deinterlace_simple_method_deinterlace_frame_packed() 577 scanlines.bb1 = get_line (lg, 1, plane, i, 2); in gst_deinterlace_simple_method_deinterlace_frame_planar_plane()
|
/third_party/typescript/tests/baselines/reference/ |
D | nullishCoalescingOperator1.js | 28 const bb1 = b1 ?? 1; constant 74 var bb1 = b1 !== null && b1 !== void 0 ? b1 : 1; variable
|
D | nullishCoalescingOperator1.symbols | 74 const bb1 = b1 ?? 1; 75 >bb1 : Symbol(bb1, Decl(nullishCoalescingOperator1.ts, 26, 5))
|
D | nullishCoalescingOperator1.types | 93 const bb1 = b1 ?? 1; 94 >bb1 : number
|
/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 286 if (bb_list_size(bb1->parents) != 1) in trivial_common_parent() 288 parent = first_basic_block(bb1->parents); in trivial_common_parent()
|
D | simplify.c | 112 struct basic_block *bb, *bb1, *bb2, *source; in if_convert_phi() local 122 bb1 = array[0]->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() 134 source = phi_parent(bb1, p1); in if_convert_phi() 158 if (br->bb_true == bb2 || br->bb_false == bb1) { in if_convert_phi()
|
/third_party/typescript/tests/cases/conformance/expressions/nullishCoalescingOperator/ |
D | nullishCoalescingOperator1.ts | 30 const bb1 = b1 ?? 1; constant
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | README-X86-64.txt | 93 LBB1_1: ## bb1 110 bb1: 0x203af60, LLVM BB @0x1e02310, ID#2: 118 %reg1026, mbb<bb1,0x203af60>
|
/third_party/libwebsockets/ |
D | .gitignore | 65 /bb1/
|
/third_party/FreeBSD/contrib/gdtoa/ |
D | strtod.c | 102 Bigint *bb, *bb1, *bd, *bd0, *bs, *delta; local 647 bb1 = mult(bs, bb); 649 bb = bb1;
|
D | strtodg.c | 334 Bigint *ab, *bb, *bb1, *bd, *bd0, *bs, *delta, *rvb, *rvb0; local 752 bb1 = mult(bs, bb); 754 bb = bb1;
|
/third_party/ffmpeg/libavfilter/opencl/ |
D | deshake.cl | 307 float a = 0, b = 0, c = 0, bb1 = 0, bb2 = 0; 330 bb1 += gxx * px + gxy * 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/x86/ |
D | yadif.asm | 301 ; m3 = bb1
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ |
D | README.txt | 961 br i1 %2, label %bb2, label %bb1 963 bb1: ; preds = %bb 968 bb2: ; preds = %bb, %bb1 969 %.rle6 = phi i32 [ %3, %bb1 ], [ %.rle, %bb ] 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 ] 2254 Note that bb1 and bb2 are the same. This doesn't happen at the IR level
|
/third_party/python/Python/ |
D | dtoa.c | 1877 Bigint *bb1 = mult(bs, bb); in _Py_dg_strtod() local 1879 bb = bb1; in _Py_dg_strtod()
|
/third_party/cJSON/ |
D | CHANGELOG.md | 382 * Prevent the usage of incompatible C and header versions via preprocessor directive ([123bb1](http…
|
/third_party/elfutils/tests/ |
D | testfile44.expect.bz2 | 1testfile44.o: elf32-elf_i386
2
3Disassembly of section .text:
4
5 0 ... |
D | testfile45.expect.bz2 |
|