vt                140 ext/com_dotnet/com_handlers.c 		VARTYPE vt;
vt                143 ext/com_dotnet/com_handlers.c 			if (FAILED(SafeArrayGetVartype(V_ARRAY(&obj->v), &vt)) || vt == VT_EMPTY) {
vt                144 ext/com_dotnet/com_handlers.c 				vt = V_VT(&obj->v) & ~VT_ARRAY;
vt                153 ext/com_dotnet/com_handlers.c 			if (V_VT(&v) != vt) {
vt                154 ext/com_dotnet/com_handlers.c 				VariantChangeType(&v, &v, 0, vt);
vt                157 ext/com_dotnet/com_handlers.c 			if (vt == VT_VARIANT) {
vt                471 ext/com_dotnet/com_handlers.c 	VARTYPE vt = VT_EMPTY;
vt                489 ext/com_dotnet/com_handlers.c 			vt = VT_INT;
vt                492 ext/com_dotnet/com_handlers.c 			vt = VT_R8;
vt                497 ext/com_dotnet/com_handlers.c 			vt = VT_BOOL;
vt                500 ext/com_dotnet/com_handlers.c 			vt = VT_BSTR;
vt                506 ext/com_dotnet/com_handlers.c 	if (vt != VT_EMPTY && vt != V_VT(&v)) {
vt                507 ext/com_dotnet/com_handlers.c 		res = VariantChangeType(&v, &v, 0, vt);
vt                103 ext/com_dotnet/com_misc.c 	VARTYPE vt;
vt                117 ext/com_dotnet/com_misc.c 	if (FAILED(SafeArrayGetVartype(V_ARRAY(array), &vt)) || vt == VT_EMPTY) {
vt                118 ext/com_dotnet/com_misc.c 		vt = V_VT(array) & ~VT_ARRAY;
vt                136 ext/com_dotnet/com_misc.c 	if (vt == VT_VARIANT) {
vt                139 ext/com_dotnet/com_misc.c 		V_VT(dest) = vt;
vt                159 ext/com_dotnet/com_saproxy.c 		VARTYPE vt;
vt                177 ext/com_dotnet/com_saproxy.c 		if (FAILED(SafeArrayGetVartype(sa, &vt)) || vt == VT_EMPTY) {
vt                178 ext/com_dotnet/com_saproxy.c 			vt = V_VT(&proxy->obj->v) & ~VT_ARRAY;
vt                181 ext/com_dotnet/com_saproxy.c 		if (vt == VT_VARIANT) {
vt                184 ext/com_dotnet/com_saproxy.c 			V_VT(&v) = vt;
vt                237 ext/com_dotnet/com_saproxy.c 		VARTYPE vt;
vt                251 ext/com_dotnet/com_saproxy.c 		if (FAILED(SafeArrayGetVartype(V_ARRAY(&proxy->obj->v), &vt)) || vt == VT_EMPTY) {
vt                252 ext/com_dotnet/com_saproxy.c 			vt = V_VT(&proxy->obj->v) & ~VT_ARRAY;
vt                258 ext/com_dotnet/com_saproxy.c 		if (V_VT(&v) != vt) {
vt                259 ext/com_dotnet/com_saproxy.c 			VariantChangeType(&v, &v, 0, vt);
vt                262 ext/com_dotnet/com_saproxy.c 		if (vt == VT_VARIANT) {
vt                480 ext/com_dotnet/com_saproxy.c 	VARTYPE vt;
vt                487 ext/com_dotnet/com_saproxy.c 	if (FAILED(SafeArrayGetVartype(sa, &vt)) || vt == VT_EMPTY) {
vt                488 ext/com_dotnet/com_saproxy.c 		vt = V_VT(&I->proxy->obj->v) & ~VT_ARRAY;
vt                492 ext/com_dotnet/com_saproxy.c 	if (vt == VT_VARIANT) {
vt                495 ext/com_dotnet/com_saproxy.c 		V_VT(&v) = vt;
vt                377 ext/com_dotnet/com_typeinfo.c 	VARTYPE vt;
vt                410 ext/com_dotnet/com_typeinfo.c static inline const char *vt_to_string(VARTYPE vt)
vt                414 ext/com_dotnet/com_typeinfo.c 		if (vt_names[i].vt == vt)
vt                506 ext/com_dotnet/com_typeinfo.c 					if (func->elemdescFunc.tdesc.vt != VT_VOID) {
vt                508 ext/com_dotnet/com_typeinfo.c 								vt_to_string(func->elemdescFunc.tdesc.vt),
vt                509 ext/com_dotnet/com_typeinfo.c 								func->elemdescFunc.tdesc.vt
vt                533 ext/com_dotnet/com_typeinfo.c 							php_printf("\t\t/* %s [%d] ", vt_to_string(elem->tdesc.vt), elem->tdesc.vt);
vt                540 ext/com_dotnet/com_typeinfo.c 							if (elem->tdesc.vt == VT_PTR) {
vt                543 ext/com_dotnet/com_typeinfo.c 										vt_to_string(elem->tdesc.lptdesc->vt),
vt                544 ext/com_dotnet/com_typeinfo.c 										elem->tdesc.lptdesc->vt
vt                557 ext/com_dotnet/com_typeinfo.c 									elem->tdesc.vt == VT_PTR ? "&$" : "$",
vt                437 ext/com_dotnet/com_variant.c 	/* VARTYPE == unsigned short */ zend_long vt = VT_EMPTY;
vt                452 ext/com_dotnet/com_variant.c 		"z!|ll", &zvalue, &vt, &codepage)) {
vt                467 ext/com_dotnet/com_variant.c 	if ((ZEND_NUM_ARGS() >= 2) && (vt != V_VT(&obj->v))) {
vt                474 ext/com_dotnet/com_variant.c 		if ((vt & VT_ARRAY) && (V_VT(&obj->v) & VT_ARRAY)) {
vt                475 ext/com_dotnet/com_variant.c 			zend_long orig_vt = vt;
vt                477 ext/com_dotnet/com_variant.c 			vt &= ~VT_ARRAY;
vt                478 ext/com_dotnet/com_variant.c 			if (vt) {
vt                479 ext/com_dotnet/com_variant.c 				vt = orig_vt;
vt                483 ext/com_dotnet/com_variant.c 		if (vt) {
vt                484 ext/com_dotnet/com_variant.c 			res = VariantChangeType(&obj->v, &obj->v, 0, (VARTYPE)vt);
vt               1051 ext/com_dotnet/com_variant.c 	/* VARTYPE == unsigned short */ zend_long vt;
vt               1055 ext/com_dotnet/com_variant.c 		"Ol", &zobj, php_com_variant_class_entry, &vt)) {
vt               1060 ext/com_dotnet/com_variant.c 	res = VariantChangeType(&obj->v, &obj->v, 0, (VARTYPE)vt);
vt               1063 ext/com_dotnet/com_variant.c 		if (vt != VT_DISPATCH && obj->typeinfo) {
vt               1086 ext/com_dotnet/com_variant.c 	/* VARTYPE == unsigned short */ zend_long vt;
vt               1091 ext/com_dotnet/com_variant.c 		"Ol", &zobj, php_com_variant_class_entry, &vt)) {
vt               1097 ext/com_dotnet/com_variant.c 	res = VariantChangeType(&vres, &obj->v, 0, (VARTYPE)vt);
vt                 57 ext/pcre/pcrelib/sljit/sljitNativeARM_64.c #define VT(vt) (vt)