/third_party/skia/include/core/ |
D | SkPixmap.h | 336 const uint64_t* addr64() const { in addr64() function 423 const uint64_t* addr64(int x, int y) const { in addr64() function 426 return (const uint64_t*)((const char*)this->addr64() + (size_t)y * fRowBytes + (x << 3)); in addr64() 447 return reinterpret_cast<const uint16_t*>(this->addr64(x, y)); in addrF16() 523 return const_cast<uint64_t*>(this->addr64(x, y)); in writable_addr64()
|
/third_party/skia/docs/examples/ |
D | Pixmap_addr64.cpp | 13 pixmap.addr64() == storage ? '=' : '!'); in draw()
|
D | Pixmap_addr64_2.cpp | 13 pixmap.addr64(1, 2) == &storage[1 + 2 * w] ? '=' : '!'); in draw()
|
/third_party/mesa3d/src/freedreno/ir3/ |
D | ir3_nir_lower_64b.c | 260 nir_ssa_def *addr64 = nir_ssa_for_src(b, intr->src[load ? 0 : 1], 1); in lower_64b_global() local 261 nir_ssa_def *addr = nir_unpack_64_2x32(b, addr64); in lower_64b_global()
|
/third_party/skia/src/core/ |
D | SkPixmap.cpp | 392 uint64_t value = *this->addr64(x, y); in getColor() 565 const uint64_t* row = this->addr64(0, y); in computeIsOpaque()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
D | BUFInstructions.td | 34 !if(!eq(addrKind, BUFAddrKind.Addr64), "addr64", 95 bits<1> addr64 = 0; 179 "$vaddr, $srsrc, $format, $soffset addr64", 191 bits<1> addr64 = !if(!eq(addrKind, BUFAddrKind.Addr64), 1, 0); 329 bits<1> addr64 = 0; 382 let addr64 = 0; 457 !if(!eq(addrKind, BUFAddrKind.Addr64), "$vaddr, $srsrc, $soffset addr64", 469 bits<1> addr64 = !if(!eq(addrKind, BUFAddrKind.Addr64), 1, 0); 1847 let Inst{15} = ps.addr64; 2129 let Inst{15} = ps.addr64;
|
D | AMDGPU.td | 588 // FIXME: moveToVALU should be able to handle converting addr64 MUBUF
|
D | SIInstrInfo.td | 1043 def addr64 : NamedOperandBit<"Addr64", NamedMatchClass<"Addr64">>;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/ |
D | WebAssemblyInstrCall.td | 14 // TODO: addr64: These currently assume the callee address is 32-bit.
|
/third_party/mesa3d/src/amd/compiler/ |
D | aco_assembler.cpp | 385 assert(!mubuf.addr64 || ctx.gfx_level <= GFX7); in emit_instruction() 387 encoding |= (mubuf.addr64 ? 1 : 0) << 15; in emit_instruction()
|
D | aco_print_ir.cpp | 374 if (mubuf.addr64) in print_instr_format_specific()
|
D | aco_ir.h | 1565 bool addr64 : 1; /* SI, CIK: Address size is 64-bit */ member
|
D | aco_instruction_selection.cpp | 4657 mubuf->addr64 = addr.type() == RegType::vgpr; in global_load_callback() 6989 mubuf->addr64 = write_address.type() == RegType::vgpr; in visit_store_global() 7172 mubuf->addr64 = addr.type() == RegType::vgpr; in visit_global_atomic() 8357 load->addr64 = true; in visit_intrinsic()
|
/third_party/skia/dm/ |
D | DM.cpp | 1240 Sk4f rgba = SkHalfToFloat_finite_ftz(*pm.addr64(x, y)); in Run()
|
/third_party/elfutils/src/ |
D | readelf.c | 4971 bool addr64:1; member 4979 #define listptr_address_size(p) ((p)->addr64 ? 8 : 4) 5024 if (p1->addr64 != p2->addr64) in compare_listptr() 5103 .addr64 = address_size == 8, in notice_listptr()
|
/third_party/skia/tools/fiddle/ |
D | documumentation_examples_map.txt | 2910 const uint64_t* addr64() const; 2914 const uint64_t* addr64(int x, int y) const;
|
/third_party/mesa3d/docs/relnotes/ |
D | 20.0.0.rst | 3188 - aco: add new addr64 bit to MUBUF instructions on GFX6-GFX7
|