Home
last modified time | relevance | path

Searched refs:dmask (Results 1 – 25 of 41) sorted by relevance

12

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DMIMGInstructions.td228 DMask:$dmask, UNorm:$unorm, GLC:$glc, SLC:$slc,
231 let AsmString = asm#" $vdata, $vaddr, $srsrc$dmask$unorm$glc$slc$r128$tfe$lwe$da"
239 let InOperandList = !con((ins AddrRC:$vaddr0, SReg_256:$srsrc, DMask:$dmask,
243 let AsmString = opcode#" $vdata, $vaddr0, $srsrc$dmask$dim$unorm$dlc$glc$slc$r128$tfe$lwe"
252 (ins SReg_256:$srsrc, DMask:$dmask,
256 let AsmString = opcode#" $vdata, "#AddrAsm#", $srsrc$dmask$dim$unorm$dlc$glc$slc$r128$tfe$lwe"
321 DMask:$dmask, UNorm:$unorm, GLC:$glc, SLC:$slc,
324 let AsmString = asm#" $vdata, $vaddr, $srsrc$dmask$unorm$glc$slc$r128$tfe$lwe$da"
333 DMask:$dmask, Dim:$dim, UNorm:$unorm, DLC:$dlc,
336 let AsmString = opcode#" $vdata, $vaddr0, $srsrc$dmask$dim$unorm$dlc$glc$slc$r128$tfe$lwe"
[all …]
DSIAddIMGInit.cpp103 TII->getNamedOperand(MI, AMDGPU::OpName::dmask); in runOnMachineFunction()
108 unsigned dmask = MO_Dmask->getImm(); in runOnMachineFunction() local
112 TII->isGather4(Opcode) ? 4 : countPopulation(dmask); in runOnMachineFunction()
DSIInstrFormats.td266 bits<4> dmask;
277 let Inst{11-8} = dmask;
DSILoadStoreOptimizer.cpp289 TII.getNamedOperand(MI, AMDGPU::OpName::dmask)->getImm(); in getOpcodeWidth()
497 DMask = TII.getNamedOperand(*I, AMDGPU::OpName::dmask)->getImm(); in setMI()
1129 AMDGPU::getNamedOperandIdx(CI.I->getOpcode(), AMDGPU::OpName::dmask); in mergeImagePair()
/third_party/node/deps/npm/lib/doctor/
Dcheck-files-permission.js9 function checkFilesPermission (root, fmask, dmask, cb) { argument
43 fs.access(file, stat.isFile() ? fmask : dmask, (err) => {
/third_party/freetype/src/gzip/
Dinffast.c72 unsigned dmask; /* mask for first level of distance codes */ in inflate_fast() local
99 dmask = (1U << state->distbits) - 1; in inflate_fast()
141 here = dcode + (hold & dmask); in inflate_fast()
/third_party/zlib/
Dinffast.c72 unsigned dmask; /* mask for first level of distance codes */ local
99 dmask = (1U << state->distbits) - 1;
141 here = dcode + (hold & dmask);
/third_party/node/deps/zlib/
Dinffast.c76 unsigned dmask; /* mask for first level of distance codes */ local
103 dmask = (1U << state->distbits) - 1;
145 here = dcode[hold & dmask];
/third_party/skia/third_party/externals/zlib/
Dinffast.c76 unsigned dmask; /* mask for first level of distance codes */ local
103 dmask = (1U << state->distbits) - 1;
145 here = dcode[hold & dmask];
/third_party/flutter/skia/third_party/externals/zlib/
Dinffast.c76 unsigned dmask; /* mask for first level of distance codes */ local
103 dmask = (1U << state->distbits) - 1;
145 here = dcode[hold & dmask];
/third_party/node/deps/zlib/contrib/optimizations/
Dinffast_chunk.c97 unsigned dmask; /* mask for first level of distance codes */ local
125 dmask = (1U << state->distbits) - 1;
185 here = dcode[hold & dmask];
/third_party/flutter/skia/third_party/externals/zlib/contrib/optimizations/
Dinffast_chunk.c97 unsigned dmask; /* mask for first level of distance codes */ local
125 dmask = (1U << state->distbits) - 1;
185 here = dcode[hold & dmask];
/third_party/skia/third_party/externals/zlib/contrib/optimizations/
Dinffast_chunk.c97 unsigned dmask; /* mask for first level of distance codes */ local
125 dmask = (1U << state->distbits) - 1;
185 here = dcode[hold & dmask];
/third_party/libwebsockets/win32port/zlib/
Dinffast.c89 unsigned dmask; /* mask for first level of distance codes */ local
116 dmask = (1U << state->distbits) - 1;
158 here = dcode[hold & dmask];
/third_party/flutter/skia/third_party/externals/wuffs/script/
Dwuffs-deflate-decoder-decode-huffman.c282 uint32_t dmask = MASK(self->private_impl.f_n_huffs_bits[1]); in c_wuffs_deflate__decoder__decode_huffman_fast() local
373 table_entry = self->private_data.f_huffs[1][bits & dmask]; in c_wuffs_deflate__decoder__decode_huffman_fast()
/third_party/flutter/skia/third_party/externals/wuffs/std/deflate/
Ddecode_huffman_slow.wuffs21 var dmask base.u32[..511]
49 dmask = ((1 as base.u32) << this.n_huffs_bits[1]) - 1
143 table_entry = this.huffs[1][bits & dmask]
Ddecode_huffman_fast.wuffs28 var dmask base.u32[..511]
45 dmask = ((1 as base.u32) << this.n_huffs_bits[1]) - 1
217 table_entry = this.huffs[1][bits & dmask]
/third_party/mesa3d/src/amd/compiler/
Daco_print_ir.cpp395 if ((mimg.dmask & identity_dmask) != identity_dmask) in print_instr_format_specific()
396 fprintf(output, " dmask:%s%s%s%s", mimg.dmask & 0x1 ? "x" : "", in print_instr_format_specific()
397 mimg.dmask & 0x2 ? "y" : "", mimg.dmask & 0x4 ? "z" : "", in print_instr_format_specific()
398 mimg.dmask & 0x8 ? "w" : ""); in print_instr_format_specific()
Daco_opt_value_numbering.cpp270 return aM.sync == bM.sync && aM.dmask == bM.dmask && aM.unrm == bM.unrm && in operator ()()
Daco_instruction_selection.cpp6109 mimg->dmask = 0xf; in visit_bvh64_intersect_ray_amd()
6229 unsigned dmask = expand_mask; in visit_image_load() local
6233 dmask = ((expand_mask & 0x1) ? 0x3 : 0) | ((expand_mask & 0x8) ? 0xc : 0); in visit_image_load()
6241 unsigned num_bytes = util_bitcount(dmask) * (d16 ? 2 : 4) + is_sparse * 4; in visit_image_load()
6256 switch (util_bitcount(dmask)) { in visit_image_load()
6264 switch (util_bitcount(dmask)) { in visit_image_load()
6301 load->dmask = dmask; in visit_image_load()
6386 uint32_t dmask = BITFIELD_MASK(num_components); in visit_image_store() local
6395 dmask &= ~BITFIELD_BIT(i); in visit_image_store()
6399 if (dmask == 0) in visit_image_store()
[all …]
/third_party/ntfs-3g/src/
Dntfs-3g_common.h138 unsigned int dmask; member
Dntfs-3g_common.c334 ctx->dmask = ctx->fmask = intarg; in parse_mount_options()
342 ctx->dmask = intarg; in parse_mount_options()
Dntfs-3g.c793 stbuf->st_mode &= ~ctx->dmask; in apply_umask()
890 stbuf->st_mode = S_IFDIR | (0777 & ~ctx->dmask); in ntfs_fuse_getattr()
1289 st.st_mode = S_IFDIR | (0777 & ~ctx->dmask); in ntfs_fuse_filler()
2117 perm = (typemode & ~ctx->dmask & 0777) in ntfs_fuse_create()
4515 ctx->dmask = ctx->fmask = 0; in main()
/third_party/mesa3d/src/amd/compiler/tests/
Dtest_insert_nops.cpp44 mimg->dmask = 0x1; in create_mimg()
Dtest_hard_clause.cpp79 mimg->dmask = 0x1; in create_mimg()

12