Home
last modified time | relevance | path

Searched refs:dmask (Results 1 - 25 of 31) sorted by relevance

12

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
H A DSIAddIMGInit.cpp103 TII->getNamedOperand(MI, AMDGPU::OpName::dmask); in runOnMachineFunction()
105 // check that dmask operand is found. in runOnMachineFunction()
106 assert(MO_Dmask && "Expected dmask operand in instruction"); in runOnMachineFunction()
108 unsigned dmask = MO_Dmask->getImm(); in runOnMachineFunction() local
112 TII->isGather4(Opcode) ? 4 : countPopulation(dmask); in runOnMachineFunction()
H A 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/v8/third_party/zlib/contrib/optimizations/
H A 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/node/deps/v8/third_party/zlib/
H A 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/
H A Dinffast.c73 unsigned dmask; /* mask for first level of distance codes */ in inflate_fast() local
100 dmask = (1U << state->distbits) - 1; in inflate_fast()
142 here = dcode + (hold & dmask); in inflate_fast()
/third_party/skia/third_party/externals/zlib/contrib/optimizations/
H A 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/
H A 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/zlib/
H A Dinffast.c69 unsigned dmask; /* mask for first level of distance codes */ in inflate_fast() local
96 dmask = (1U << state->distbits) - 1; in inflate_fast()
138 here = dcode + (hold & dmask); in inflate_fast()
/third_party/node/deps/zlib/contrib/optimizations/
H A Dinffast_chunk.c95 unsigned dmask; /* mask for first level of distance codes */ in inflate_fast_chunk_() local
123 dmask = (1U << state->distbits) - 1; in inflate_fast_chunk_()
203 here = dcode + (hold & dmask); in inflate_fast_chunk_()
/third_party/libwebsockets/win32port/zlib/
H A 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/ntfs-3g/src/
H A Dntfs-3g_common.h138 unsigned int dmask; member
H A Dntfs-3g_common.c97 { "dmask", OPT_DMASK, FLGOPT_OCTAL },
334 ctx->dmask = ctx->fmask = intarg; in parse_mount_options()
342 ctx->dmask = intarg; in parse_mount_options()
H A Dntfs-3g.c207 " umask=, fmask=, dmask=, streams_interface=.\n"
794 stbuf->st_mode &= ~ctx->dmask; in apply_umask()
891 stbuf->st_mode = S_IFDIR | (0777 & ~ctx->dmask); in ntfs_fuse_getattr()
1290 st.st_mode = S_IFDIR | (0777 & ~ctx->dmask); in ntfs_fuse_filler()
2118 perm = (typemode & ~ctx->dmask & 0777) in ntfs_fuse_create()
4520 ctx->dmask = ctx->fmask = 0; in main()
H A Dlowntfs-3g.c271 " umask=, fmask=, dmask=, streams_interface=.\n"
735 stbuf->st_mode &= ~ctx->dmask; in apply_umask()
806 stbuf->st_mode = S_IFDIR | (0777 & ~ctx->dmask); in ntfs_fuse_getstat()
1258 st.st_mode = S_IFDIR | (0777 & ~ctx->dmask); in ntfs_fuse_filler()
2385 perm = (typemode & ~ctx->dmask & 0777) in ntfs_fuse_create()
4788 ctx->dmask = ctx->fmask = 0;
/third_party/mesa3d/src/amd/compiler/
H A 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()
H A Daco_opt_value_numbering.cpp270 return aM.sync == bM.sync && aM.dmask == bM.dmask && aM.unrm == bM.unrm && in operator ()()
H A Daco_instruction_selection.cpp6109 mimg->dmask = 0xf;
6229 unsigned dmask = expand_mask;
6233 dmask = ((expand_mask & 0x1) ? 0x3 : 0) | ((expand_mask & 0x8) ? 0xc : 0);
6241 unsigned num_bytes = util_bitcount(dmask) * (d16 ? 2 : 4) + is_sparse * 4;
6256 switch (util_bitcount(dmask)) {
6264 switch (util_bitcount(dmask)) {
6301 load->dmask = dmask;
6386 uint32_t dmask = BITFIELD_MASK(num_components);
6387 /* remove zero/undef elements from data, components which aren't in dmask
[all...]
H A Daco_assembler.cpp475 encoding |= (0xF & mimg.dmask) << 8; in emit_instruction()
/third_party/mesa3d/src/amd/compiler/tests/
H A Dtest_insert_nops.cpp44 mimg->dmask = 0x1; in create_mimg()
H A Dtest_hard_clause.cpp79 mimg->dmask = 0x1; in create_mimg()
/third_party/mesa3d/src/amd/llvm/
H A Dac_nir_to_llvm.c1518 resinfo.dmask = 0xf; in lower_gather4_integer()
2638 args.dmask = 15; in visit_image_load()
2730 args.dmask = 15; in visit_image_store()
2947 args.dmask = 0xf; in visit_image_size()
4889 txf_args.dmask = 0xf; in visit_tex()
4929 args.dmask = 0xf; in visit_tex()
4932 args.dmask = 1; in visit_tex()
4934 args.dmask = 1 << instr->component; in visit_tex()
H A Dac_llvm_build.h392 unsigned dmask : 4; member
/third_party/ntfs-3g/ntfsprogs/
H A Dntfssecaudit.c5593 BOOL dmask; in encode_posix_acl() local
5605 dmask = FALSE; in encode_posix_acl()
5621 dmask = TRUE; in encode_posix_acl()
5631 if (defcnt && !dmask) in encode_posix_acl()
5815 if (defcnt && !dmask) { in encode_posix_acl()
/third_party/mesa3d/src/gallium/drivers/radeonsi/
H A Dsi_shader_llvm_ps.c100 args.dmask = 0xf; in si_nir_emit_fbfetch()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/Disassembler/
H A DAMDGPUDisassembler.cpp473 AMDGPU::OpName::dmask); in convertMIMGInst()

Completed in 49 milliseconds

12