Home
last modified time | relevance | path

Searched refs:dim (Results 1 – 25 of 63) sorted by relevance

123

/freebsd/sys/compat/linuxkpi/common/include/linux/
H A Dnet_dim.h166 net_dim_on_top(struct net_dim *dim) in net_dim_on_top() argument
168 switch (dim->tune_state) { in net_dim_on_top()
173 return (dim->steps_left > 1) && (dim->steps_right == 1); in net_dim_on_top()
175 return (dim->steps_right > 1) && (dim->steps_left == 1); in net_dim_on_top()
180 net_dim_turn(struct net_dim *dim) in net_dim_turn() argument
182 switch (dim->tune_state) { in net_dim_turn()
187 dim->tune_state = NET_DIM_GOING_LEFT; in net_dim_turn()
188 dim->steps_left = 0; in net_dim_turn()
191 dim->tune_state = NET_DIM_GOING_RIGHT; in net_dim_turn()
192 dim->steps_right = 0; in net_dim_turn()
[all …]
/freebsd/sys/dev/mlx5/mlx5_en/
H A Dmlx5_en_dim.c63 struct net_dim *dim = container_of(work, struct net_dim, work); in mlx5e_dim_work() local
64 struct mlx5e_rq *rq = container_of(dim, struct mlx5e_rq, dim); in mlx5e_dim_work()
72 profile_ix = dim->profile_ix; in mlx5e_dim_work()
73 mode = dim->mode; in mlx5e_dim_work()
74 dim->state = NET_DIM_START_MEASURE; in mlx5e_dim_work()
/freebsd/contrib/file/magic/Magdir/
H A Dnifty34 >>0 use nifti1-dim-le
43 >>0 use \^nifti1-dim-le
58 >>0 use nifti2-dim-le
67 >>0 use \^nifti2-dim-le
102 0 name nifti1-dim-le
104 >40 leshort <0 \b, INVALID dim[0]=%d
105 >40 leshort >7 \b, INVALID dim[0]=%d
132 0 name nifti2-dim-le
134 >16 lequad <0 \b, INVALID dim[0]=%lld
135 >16 lequad >7 \b, INVALID dim[0]=%lld
/freebsd/
H A DMAINTAINERS41 contrib/libcxxrt dim,emaste Pre-commit review preferred.
42 contrib/llvm-project/compiler-rt dim Pre-commit review preferred.
43 contrib/llvm-project/libcxx dim Pre-commit review preferred.
44 contrib/llvm-project/libunwind dim,emaste,jhb Pre-commit review preferred.
45 contrib/llvm-project/lldb dim,emaste Pre-commit review preferred.
46 contrib/llvm-project/llvm dim Pre-commit review preferred.
47 contrib/llvm-project/openmp dim,emaste Pre-commit review preferred.
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DMIMGInstructions.td453 Dim:$dim, UNorm:$unorm, CPol:$cpol,
456 let AsmString = opcode#" $vdata, $vaddr0, $srsrc$dmask$dim$unorm$cpol$r128$a16$tfe$lwe"
466 Dim:$dim, UNorm:$unorm, CPol:$cpol,
469 let AsmString = opcode#" $vdata, "#AddrAsm#", $srsrc$dmask$dim$unorm$cpol$r128$a16$tfe$lwe"
478 Dim:$dim, UNorm:$unorm, CPol:$cpol,
481 let AsmString = opcode#" $vdata, $vaddr0, $srsrc$dmask$dim$unorm$cpol$r128$a16$tfe$lwe"
491 Dim:$dim, UNorm:$unorm, CPol:$cpol,
494 let AsmString = opcode#" $vdata, "#AddrAsm#", $srsrc$dmask$dim$unorm$cpol$r128$a16$tfe$lwe"
503 (ins SReg_256_XNULL:$rsrc, DMask:$dmask, Dim:$dim,
506 let AsmString = opcode#" $vdata, "#AddrAsm#", $rsrc$dmask$dim$cpol$r128$a16$tfe"
[all …]
H A DSIInstrFormats.td405 bits<3> dim;
411 let Inst{5-3} = dim;
432 bits<3> dim;
436 let Inst{4-2} = dim;
456 bits<3> dim;
470 let Inst{2-0} = dim;
/freebsd/usr.sbin/moused/moused/
H A Dquirks.c94 struct quirk_dimensions dim; member
714 struct quirk_dimensions dim; in parse_attr() local
722 if (!parse_dimension_property(value, &dim.x, &dim.y)) in parse_attr()
725 p->value.dim = dim; in parse_attr()
787 if (!parse_dimension_property(value, &dim.x, &dim.y)) in parse_attr()
790 p->value.dim = dim; in parse_attr()
901 struct quirk_dimensions dim; in parse_moused() local
1968 *val = p->value.dim; in quirks_get_dimensions()
/freebsd/contrib/llvm-project/openmp/runtime/src/include/
H A Dompx.h.var73 /// ompx_{thread,block}_{id,dim}
133 /// ompx_{thread,block}_{id,dim}_{x,y,z}
186 /// ompx::{thread,block}_{id,dim}_{,x,y,z}
/freebsd/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Ddwarf.c646 tdesc_array_create(dwarf_t *dw, Dwarf_Die dim, tdesc_t *arrtdp, in tdesc_array_create() argument
655 if ((dim2 = die_sibling(dw, dim)) == NULL) { in tdesc_array_create()
682 if (die_unsigned(dw, dim, DW_AT_upper_bound, &uval, 0)) in tdesc_array_create()
684 else if (die_signed(dw, dim, DW_AT_upper_bound, &sval, 0)) in tdesc_array_create()
686 else if (die_unsigned(dw, dim, DW_AT_count, &uval, 0)) in tdesc_array_create()
688 else if (die_signed(dw, dim, DW_AT_count, &sval, 0)) in tdesc_array_create()
716 Dwarf_Die dim; in die_array_create() local
720 if ((dim = die_child(dw, arr)) == NULL || in die_array_create()
721 die_tag(dw, dim) != DW_TAG_subrange_type) in die_array_create()
724 tdesc_array_create(dw, dim, arrtdp, tdp); in die_array_create()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DIntrinsicsAMDGPU.td942 AMDGPUDimProps dim> {
943 AMDGPUDimProps Dim = dim;
964 !if(Gradients, dim.GradientArgs, []),
965 !listconcat(!if(IsSample, dim.CoordSliceArgs, dim.CoordSliceIntArgs),
997 AMDGPUDimProps dim,
999 bit has_return = true> : AMDGPUDimProfile<opmod, dim> {
1011 AMDGPUDimProps dim,
1013 : AMDGPUDimSampleProfile<opmod, dim, sample, false> {
1017 AMDGPUDimProps dim,
1020 bit Mip = false> : AMDGPUDimProfile<opmod, dim> {
[all …]
H A DIntrinsicsNVVM.td2017 foreach dim = 1...5 in {
2018 defvar tensor_dim_args = !listsplat(llvm_i32_ty, dim);
2019 foreach mode = !if(!ge(dim, 3), ["tile", "im2col"], ["tile"]) in {
2020 def int_nvvm_cp_async_bulk_tensor_s2g_ # mode # _ # dim # d :
2033 def int_nvvm_cp_async_bulk_tensor_reduce_ # red_op # _ # mode # _ # dim # d :
2046 foreach dim = 1...5 in {
2047 defvar tensor_dim_args = !listsplat(llvm_i32_ty, dim);
2049 foreach mode = !if(!ge(dim, 3), ["tile", "im2col"], ["tile"]) in {
2051 defvar num_im2col_offsets = !if(is_im2col, !add(dim, -2), 0);
2072 def int_nvvm_cp_async_bulk_tensor_g2s_ # mode # _ # dim # d :
[all …]
/freebsd/contrib/netbsd-tests/lib/libcurses/
H A Datf.terminfo10 dch=dch%p1%dX, dch1=, dl=dl%p1%dX, dl1= , dim=dim, ech=ech%p1%dX,
/freebsd/contrib/llvm-project/clang/lib/CIR/Lowering/
H A DLoweringHelpers.cpp107 for (auto dim : dims) in convertToDenseElementsAttr() local
108 vectorSize *= dim; in convertToDenseElementsAttr()
/freebsd/sys/contrib/device-tree/Bindings/leds/backlight/
H A Darcxcnn_bl.txt16 - arc,dim-freq: PWM mode frequence setting (bits [3:0] used)
/freebsd/share/timedef/
H A Dfr_BE.ISO8859-15.src35 dim.
H A Dfr_CA.ISO8859-15.src35 dim.
H A Dfr_CA.UTF-8.src35 dim.
H A Dfr_CH.ISO8859-15.src35 dim.
H A Dfr_CH.UTF-8.src35 dim.
H A Dfr_FR.ISO8859-15.src35 dim.
H A Dfr_BE.UTF-8.src35 dim.
H A Dfr_FR.UTF-8.src35 dim.
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXIntrinsics.td563 class TMA_DIMS_UTIL<int dim> {
564 // For example, when 'dim' is 3, this generates:
567 dag ins_dag = !dag(ins, !listsplat(B32, dim), !foreach(i, !range(dim), "d" # i));
568 string base_str = !interleave(!foreach(i, !range(dim), "$d" # i), ", ");
571 class TMA_IM2COL_UTIL<int dim, string mode> {
573 // For im2col mode, offsets is (dim - 2).
576 !eq(mode, "im2col") : !sub(dim, 2),
588 class G2S_STRINGS<int dim, string mode, bit mc, bit ch, bit is_shared32 = 0> {
593 # "." # dim # "d"
600 # dim # "D"
[all …]
H A DNVPTXISelDAGToDAG.cpp2153 #define CP_ASYNC_BULK_TENSOR_OPCODE(dir, dim, mode, is_s32, suffix) \ argument
2155 ? NVPTX::CP_ASYNC_BULK_TENSOR_##dir##_##dim##_SHARED32_##mode##suffix \
2156 : NVPTX::CP_ASYNC_BULK_TENSOR_##dir##_##dim##_##mode##suffix)
2158 #define GET_CP_ASYNC_BULK_TENSOR_OPCODE_S2G_RED(dim, mode, is_ch, is_s32) \ argument
2159 (is_ch ? (CP_ASYNC_BULK_TENSOR_OPCODE(RED, dim, mode, is_s32, _CH)) \
2160 : (CP_ASYNC_BULK_TENSOR_OPCODE(RED, dim, mode, is_s32, )))
2162 #define GET_CP_ASYNC_BULK_TENSOR_OPCODE_G2S(dim, mode, is_mc, is_ch, is_s32) \ argument
2165 return CP_ASYNC_BULK_TENSOR_OPCODE(G2S, dim, mode, is_s32, _MC_CH); \
2167 return CP_ASYNC_BULK_TENSOR_OPCODE(G2S, dim, mode, is_s32, _CH); \
2169 return CP_ASYNC_BULK_TENSOR_OPCODE(G2S, dim, mode, is_s32, _MC); \
[all …]
/freebsd/contrib/openpam/
H A DCREDITS25 Dimitry Andric <dim@freebsd.org>

123