/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
D | MIMGInstructions.td | 228 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 …]
|
D | SIAddIMGInit.cpp | 103 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()
|
D | SIInstrFormats.td | 266 bits<4> dmask; 277 let Inst{11-8} = dmask;
|
D | SILoadStoreOptimizer.cpp | 289 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/ |
D | check-files-permission.js | 9 function checkFilesPermission (root, fmask, dmask, cb) { argument 43 fs.access(file, stat.isFile() ? fmask : dmask, (err) => {
|
/third_party/freetype/src/gzip/ |
D | inffast.c | 72 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/ |
D | inffast.c | 72 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/ |
D | inffast.c | 76 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/ |
D | inffast.c | 76 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/ |
D | inffast.c | 76 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/ |
D | inffast_chunk.c | 97 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/ |
D | inffast_chunk.c | 97 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/ |
D | inffast_chunk.c | 97 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/ |
D | inffast.c | 89 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/ |
D | wuffs-deflate-decoder-decode-huffman.c | 282 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/ |
D | decode_huffman_slow.wuffs | 21 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]
|
D | decode_huffman_fast.wuffs | 28 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/ |
D | aco_print_ir.cpp | 395 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()
|
D | aco_opt_value_numbering.cpp | 270 return aM.sync == bM.sync && aM.dmask == bM.dmask && aM.unrm == bM.unrm && in operator ()()
|
D | aco_instruction_selection.cpp | 6109 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/ |
D | ntfs-3g_common.h | 138 unsigned int dmask; member
|
D | ntfs-3g_common.c | 334 ctx->dmask = ctx->fmask = intarg; in parse_mount_options() 342 ctx->dmask = intarg; in parse_mount_options()
|
D | ntfs-3g.c | 793 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/ |
D | test_insert_nops.cpp | 44 mimg->dmask = 0x1; in create_mimg()
|
D | test_hard_clause.cpp | 79 mimg->dmask = 0x1; in create_mimg()
|