/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
H A D | SIAddIMGInit.cpp | 103 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 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/v8/third_party/zlib/contrib/optimizations/ |
H A 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/node/deps/v8/third_party/zlib/ |
H A 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/ |
H A D | inffast.c | 73 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 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/ |
H A 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/zlib/ |
H A D | inffast.c | 69 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 D | inffast_chunk.c | 95 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 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/ntfs-3g/src/ |
H A D | ntfs-3g_common.h | 138 unsigned int dmask; member
|
H A D | ntfs-3g_common.c | 97 { "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 D | ntfs-3g.c | 207 " 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 D | lowntfs-3g.c | 271 " 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 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()
|
H A D | aco_opt_value_numbering.cpp | 270 return aM.sync == bM.sync && aM.dmask == bM.dmask && aM.unrm == bM.unrm && in operator ()()
|
H A D | aco_instruction_selection.cpp | 6109 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 D | aco_assembler.cpp | 475 encoding |= (0xF & mimg.dmask) << 8; in emit_instruction()
|
/third_party/mesa3d/src/amd/compiler/tests/ |
H A D | test_insert_nops.cpp | 44 mimg->dmask = 0x1; in create_mimg()
|
H A D | test_hard_clause.cpp | 79 mimg->dmask = 0x1; in create_mimg()
|
/third_party/mesa3d/src/amd/llvm/ |
H A D | ac_nir_to_llvm.c | 1518 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 D | ac_llvm_build.h | 392 unsigned dmask : 4; member
|
/third_party/ntfs-3g/ntfsprogs/ |
H A D | ntfssecaudit.c | 5593 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 D | si_shader_llvm_ps.c | 100 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 D | AMDGPUDisassembler.cpp | 473 AMDGPU::OpName::dmask); in convertMIMGInst()
|