Searched refs:addr64 (Results 1 - 11 of 11) sorted by relevance
/third_party/skia/include/core/ |
H A D | SkPixmap.h | 279 one of: addr8, addr16, addr32, addr64, or addrF16(). 336 const uint64_t* addr64() const { in addr64() function in SkPixmap 423 const uint64_t* addr64(int x, int y) const { in addr64() function in SkPixmap 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/ |
H A D | Pixmap_addr64_2.cpp | 12 SkDebugf("pixmap.addr64(1, 2) %c= &storage[1 + 2 * w]\n", in REG_FIDDLE() 13 pixmap.addr64(1, 2) == &storage[1 + 2 * w] ? '=' : '!'); in REG_FIDDLE()
|
H A D | Pixmap_addr64.cpp | 12 SkDebugf("pixmap.addr64() %c= storage\n", in REG_FIDDLE() 13 pixmap.addr64() == storage ? '=' : '!'); in REG_FIDDLE()
|
/third_party/mesa3d/src/freedreno/ir3/ |
H A 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/ |
H A 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/mesa3d/src/amd/compiler/ |
H A 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()
|
H A D | aco_print_ir.cpp | 374 if (mubuf.addr64) in print_instr_format_specific() 375 fprintf(output, " addr64"); in print_instr_format_specific()
|
H A D | aco_ir.h | 1565 bool addr64 : 1; /* SI, CIK: Address size is 64-bit */
|
H A D | aco_instruction_selection.cpp | 4657 mubuf->addr64 = addr.type() == RegType::vgpr; 5089 /* idxen*/ false, /* addr64 */ false, /* disable_wqm */ false, 6989 mubuf->addr64 = write_address.type() == RegType::vgpr; 7172 mubuf->addr64 = addr.type() == RegType::vgpr; 8357 load->addr64 = true;
|
/third_party/elfutils/src/ |
H A D | readelf.c | 4972 bool addr64:1; member 4980 #define listptr_address_size(p) ((p)->addr64 ? 8 : 4) 5025 if (p1->addr64 != p2->addr64) in compare_listptr() 5104 .addr64 = address_size == 8, in notice_listptr()
|
/third_party/skia/dm/ |
H A D | DM.cpp | 1240 Sk4f rgba = SkHalfToFloat_finite_ftz(*pm.addr64(x, y)); in Run()
|
Completed in 43 milliseconds