Home
last modified time | relevance | path

Searched refs:vtyp (Results 1 – 25 of 176) sorted by relevance

12345678

/dports/science/afni/afni-AFNI_21.3.16/src/
H A DAmalloc.h125 #define AFNI_CALL_VALU_1ARG(func,vtyp,vval,typ1,arg1) \ argument
126 do{ vtyp (*fp)(typ1) = (vtyp (*)(typ1))(func) ; \
139 #define AFNI_CALL_VALU_2ARG(func,vtyp,vval,typ1,arg1,typ2,arg2) \ argument
140 do{ vtyp (*fp)(typ1,typ2) = (vtyp (*)(typ1,typ2))(func) ; \
153 #define AFNI_CALL_VALU_3ARG(func,vtyp,vval,typ1,arg1,typ2,arg2,typ3,arg3) \ argument
154 do{ vtyp (*fp)(typ1,typ2,typ3) = (vtyp (*)(typ1,typ2,typ3))(func) ; \
167 #define AFNI_CALL_VALU_4ARG(func,vtyp,vval,typ1,arg1,typ2,arg2,typ3,arg3,typ4,arg4) \ argument
168 do{ vtyp (*fp)(typ1,typ2,typ3,typ4) = (vtyp (*)(typ1,typ2,typ3,typ4))(func) ; \
H A Dthd_serialate.c67 int ntyp , ii , ntl , tpos , jj , *vtyp=NULL ; in SER_new_vector() local
97 vtyp = (int *) malloc(sizeof(int)) ; in SER_new_vector()
108 if( jj == SERTYPE_NUM ){ free(tlist); free(vtyp); return NULL; } in SER_new_vector()
111 vtyp = (int *) realloc( vtyp , sizeof(int)*ntyp ) ; in SER_new_vector()
112 vtyp[ntyp-1] = SERTYPE_code[jj] ; in SER_new_vector()
117 if( ntyp < 1 ){ free(vtyp); return NULL; } /* got no types */ in SER_new_vector()
124 sv->vtype = vtyp ; in SER_new_vector()
/dports/cad/gtkwave/gtkwave-3.3.107/contrib/vpi/
H A Dsys_fst.c371 int vtyp; in draw_module_type() local
418 vtyp = FST_VT_VCD_WAND; in draw_module_type()
421 vtyp = FST_VT_VCD_WOR; in draw_module_type()
424 vtyp = FST_VT_VCD_TRI; in draw_module_type()
427 vtyp = FST_VT_VCD_TRI0; in draw_module_type()
430 vtyp = FST_VT_VCD_TRI1; in draw_module_type()
449 vtyp = FST_VT_VCD_WIRE; in draw_module_type()
455 vtyp = FST_VT_VCD_REG; in draw_module_type()
462 vtyp = FST_VT_VCD_TIME; in draw_module_type()
465 vtyp = FST_VT_VCD_REAL; in draw_module_type()
[all …]
/dports/science/xtb/xtb-6.4.1/src/
H A Dwrmodef.f9033 real(wp),allocatable :: dit (:),geo(:,:),vtyp(:),fdum(:),tors(:) local
50 & dit(nfree), geo(3,n), vtyp(3), fdum(3*n), tors(3*n))
87 vtyp = 0
103 vtyp(l)=vtyp(l)+dit(kl)**2
107 norm=sum(vtyp)
108 vtyp=vtyp/norm
113 ttyp(root)=vtyp(3)**2
114 tors(root)=vtyp(3)
/dports/cad/gplcver/gplcver-2.12a.src/tests_and_examples/examples.vpi/
H A Dvsetval1.c52 int numargs, inst_id, vtyp, lhs_wire; in vsetval() local
86 vtyp = vpi_get(vpiType, lvalref); in vsetval()
90 if (vtyp == vpiMemoryWord || vtyp == vpiConstant || vtyp == vpiOperation in vsetval()
91 || vtyp == vpiPartSelect) goto bad_args; in vsetval()
94 if (vtyp == vpiNet || vtyp == vpiNetBit) in vsetval()
H A Dvsetval2.c50 int numargs, inst_id, vtyp, flags; in vsetval() local
85 vtyp = vpi_get(vpiType, lvalref); in vsetval()
89 if (vtyp == vpiMemoryWord || vtyp == vpiConstant || vtyp == vpiOperation in vsetval()
90 || vtyp == vpiPartSelect) goto bad_args; in vsetval()
128 if (vtyp == vpiNet || vtyp == vpiNetBit) in vsetval()
/dports/misc/rump/buildrump.sh-b914579/src/sys/nfs/
H A Dnfs_clntsubs.c155 enum vtype vtyp; in nfs_loadattrcache() local
166 vtyp = nfsv3tov_type(fp->fa_type); in nfs_loadattrcache()
173 vtyp = nfsv2tov_type(fp->fa_type); in nfs_loadattrcache()
175 if (vtyp == VNON || vtyp == VREG) in nfs_loadattrcache()
176 vtyp = IFTOVT(vmode); in nfs_loadattrcache()
186 if (vtyp == VCHR && rdev == 0xffffffff) in nfs_loadattrcache()
187 vtyp = VFIFO; in nfs_loadattrcache()
201 vp->v_type = vtyp; in nfs_loadattrcache()
225 vap->va_type = vtyp; in nfs_loadattrcache()
233 switch (vtyp) { in nfs_loadattrcache()
/dports/cad/gtkwave/gtkwave-3.3.107/contrib/wlf2vcd/
H A Dwlf2vcd.c117 WlfDataType vtyp; in countSubElements() local
141 vtyp = wlfTypePropDataType(wid, WLF_TYPE_TYPE); in countSubElements()
143 if(vtyp == wlfTypeRecord) in countSubElements()
149 if(vtyp != wlfTypeArray) /* still possibly have to recurse */ in countSubElements()
155 if(vtyp == wlfTypeScalar) in countSubElements()
370 WlfDataType vtyp = wlfTypePropDataType(wid, WLF_TYPE_TYPE); in printSubElements() local
372 if((typ & (wlfSelVhdlScopes | wlfSelVlogScopes)) || (vtyp == wlfTypeRecord)) in printSubElements()
389 wgc.prev_hier[hlen] = (vtyp == wlfTypeRecord) ? '.' : '/'; in printSubElements()
400 if(vtyp == wlfTypeScalar) in printSubElements()
406 if(vtyp == wlfTypeEnum) in printSubElements()
[all …]
/dports/devel/autogen/autogen-5.18.16/agen5/
H A DdefLoad.c104 char const * vtyp; in print_ent() local
107 case VALTYP_UNKNOWN: vtyp = DEF_TYPE_UNKNOWN; break; in print_ent()
108 case VALTYP_TEXT: vtyp = DEF_TYPE_TEXT; break; in print_ent()
109 case VALTYP_BLOCK: vtyp = DEF_TYPE_BLOCK; break; in print_ent()
110 default: vtyp = DEF_TYPE_INVALID; break; in print_ent()
116 vtyp, in print_ent()
/dports/security/vault/vault-1.8.2/vendor/honnef.co/go/tools/internal/gosmith/
H A Dtype.go42 vtyp *Type // map val member
208 vtyp := smith.atype(TraitAny)
210 id: F("map[%v]%v", ktyp.id, vtyp.id),
213 vtyp: vtyp,
220 return F("make(map[%v]%v %v)", ktyp.id, vtyp.id, cap)
222 return F("map[%v]%v{}", ktyp.id, vtyp.id)
494 if dependsOn(t.vtyp, t0) {
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/workhorse/vendor/honnef.co/go/tools/internal/gosmith/
H A Dtype.go42 vtyp *Type // map val member
208 vtyp := smith.atype(TraitAny)
210 id: F("map[%v]%v", ktyp.id, vtyp.id),
213 vtyp: vtyp,
220 return F("make(map[%v]%v %v)", ktyp.id, vtyp.id, cap)
222 return F("map[%v]%v{}", ktyp.id, vtyp.id)
494 if dependsOn(t.vtyp, t0) {
/dports/sysutils/terraform-docs/terraform-docs-0.16.0/vendor/honnef.co/go/tools/internal/gosmith/
H A Dtype.go42 vtyp *Type // map val member
208 vtyp := smith.atype(TraitAny)
210 id: F("map[%v]%v", ktyp.id, vtyp.id),
213 vtyp: vtyp,
220 return F("make(map[%v]%v %v)", ktyp.id, vtyp.id, cap)
222 return F("map[%v]%v{}", ktyp.id, vtyp.id)
494 if dependsOn(t.vtyp, t0) {
/dports/multimedia/navidrome/navidrome-0.40.0/vendor/honnef.co/go/tools/internal/gosmith/
H A Dtype.go42 vtyp *Type // map val member
208 vtyp := smith.atype(TraitAny)
210 id: F("map[%v]%v", ktyp.id, vtyp.id),
213 vtyp: vtyp,
220 return F("make(map[%v]%v %v)", ktyp.id, vtyp.id, cap)
222 return F("map[%v]%v{}", ktyp.id, vtyp.id)
494 if dependsOn(t.vtyp, t0) {
/dports/lang/gcc12-devel/gcc-12-20211205/libgo/go/golang.org/x/tools/go/analysis/passes/stringintconv/
H A Dstring.go84 vtyp := pass.TypesInfo.TypeOf(v)
85 V, _ := vtyp.Underlying().(*types.Basic)
95 source := typeName(vtyp)
/dports/security/vault/vault-1.8.2/vendor/golang.org/x/tools/go/analysis/passes/stringintconv/
H A Dstring.go84 vtyp := pass.TypesInfo.TypeOf(v)
85 V, _ := vtyp.Underlying().(*types.Basic)
95 source := typeName(vtyp)
/dports/net/evans/evans-0.9.1/vendor/golang.org/x/tools/go/analysis/passes/stringintconv/
H A Dstring.go84 vtyp := pass.TypesInfo.TypeOf(v)
85 V, _ := vtyp.Underlying().(*types.Basic)
95 source := typeName(vtyp)
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/workhorse/vendor/golang.org/x/tools/go/analysis/passes/stringintconv/
H A Dstring.go84 vtyp := pass.TypesInfo.TypeOf(v)
85 V, _ := vtyp.Underlying().(*types.Basic)
95 source := typeName(vtyp)
/dports/dns/dnscrypt-proxy2/dnscrypt-proxy-2.1.1/vendor/golang.org/x/tools/go/analysis/passes/stringintconv/
H A Dstring.go84 vtyp := pass.TypesInfo.TypeOf(v)
85 V, _ := vtyp.Underlying().(*types.Basic)
95 source := typeName(vtyp)
/dports/lang/gcc11/gcc-11.2.0/libgo/go/golang.org/x/tools/go/analysis/passes/stringintconv/
H A Dstring.go84 vtyp := pass.TypesInfo.TypeOf(v)
85 V, _ := vtyp.Underlying().(*types.Basic)
95 source := typeName(vtyp)
/dports/lang/gcc11-devel/gcc-11-20211009/libgo/go/golang.org/x/tools/go/analysis/passes/stringintconv/
H A Dstring.go84 vtyp := pass.TypesInfo.TypeOf(v)
85 V, _ := vtyp.Underlying().(*types.Basic)
95 source := typeName(vtyp)
/dports/sysutils/helmfile/helmfile-0.138.7/vendor/golang.org/x/tools/go/analysis/passes/stringintconv/
H A Dstring.go84 vtyp := pass.TypesInfo.TypeOf(v)
85 V, _ := vtyp.Underlying().(*types.Basic)
95 source := typeName(vtyp)
/dports/devel/liteide/liteide-x37.4/liteidex/vendor/golang.org/x/tools/go/analysis/passes/stringintconv/
H A Dstring.go84 vtyp := pass.TypesInfo.TypeOf(v)
85 V, _ := vtyp.Underlying().(*types.Basic)
95 source := typeName(vtyp)
/dports/security/snowflake-tor/snowflake-ead5a960d7fa19dc890ccbfc0765c5ab6629eaa9/vendor/golang.org/x/tools/go/analysis/passes/stringintconv/
H A Dstring.go84 vtyp := pass.TypesInfo.TypeOf(v)
85 V, _ := vtyp.Underlying().(*types.Basic)
95 source := typeName(vtyp)
/dports/net-im/dendrite/dendrite-0.5.1/vendor/golang.org/x/tools/go/analysis/passes/stringintconv/
H A Dstring.go84 vtyp := pass.TypesInfo.TypeOf(v)
85 V, _ := vtyp.Underlying().(*types.Basic)
95 source := typeName(vtyp)
/dports/security/xray-core/Xray-core-1.5.0/vendor/golang.org/x/tools/go/analysis/passes/stringintconv/
H A Dstring.go84 vtyp := pass.TypesInfo.TypeOf(v)
85 V, _ := vtyp.Underlying().(*types.Basic)
95 source := typeName(vtyp)

12345678