/reactos/modules/rostests/winetests/oleaut32/ |
H A D | varformat.c | 102 FMT_NUMBER(VT_R8, V_R8); in test_VarFormatNumber() 292 VNUMFMT(VT_R8,V_R8); in test_VarFormat() 377 VARFMT(VT_R8,V_R8,1.7,"#.00",S_OK,"1.70"); in test_VarFormat() 378 VARFMT(VT_R8,V_R8,.17,"#.00",S_OK,".17"); in test_VarFormat() 384 VARFMT(VT_R8,V_R8,.17,"#.33",S_OK,".33"); in test_VarFormat() 388 VARFMT(VT_R8,V_R8,1.7,"#0",S_OK,"2"); in test_VarFormat() 389 VARFMT(VT_R8,V_R8,1.7,"#.33",S_OK,"2.33"); in test_VarFormat() 390 VARFMT(VT_R8,V_R8,1.7,"#3",S_OK,"23"); in test_VarFormat() 407 VARFMT(VT_R8,V_R8,-0.1,".#",S_OK,"-.1"); in test_VarFormat() 408 VARFMT(VT_R8,V_R8,0.099,"#.#",S_OK,".1"); in test_VarFormat() [all …]
|
H A D | vartest.c | 565 case VT_R8: in variantstr() 612 case VT_R8: in is_expected_variant() 2625 else if (leftvt == VT_R8 || rightvt == VT_R8) in test_VarSub() 2930 case VT_R8: in test_VarMod() 2965 case VT_R8: in test_VarMod() 5450 else if (leftvt == VT_R8 || rightvt == VT_R8 || in test_VarMul() 5626 else if (leftvt == VT_R8 || rightvt == VT_R8) in test_VarAdd() 6279 leftvt == VT_R8 || rightvt == VT_R8 || in test_VarAnd() 7788 leftvt == VT_R8 || rightvt == VT_R8 || in test_VarDiv() 8178 leftvt == VT_R8 || rightvt == VT_R8 || in test_VarIdiv() [all …]
|
H A D | usrmarshal.c | 80 case VT_R8: in get_union_type() 355 lpsa = SafeArrayCreate(VT_R8, 1, sab); in test_marshal_LPSAFEARRAY() 1026 V_VT(&v) = VT_R8; in test_marshal_VARIANT() 1055 V_VT(&v) = VT_R8 | VT_BYREF; in test_marshal_VARIANT() 1293 lpsa = SafeArrayCreate(VT_R8, 1, &sab); in test_marshal_VARIANT() 1436 V_VT(&v2) = VT_R8; in test_marshal_VARIANT()
|
H A D | tmarshal.c | 1972 V_VT(&arg[1]) = VT_R8; V_R8(&arg[1]) = M_E; in test_marshal_basetypes() 1993 V_VT(&arg[1]) = VT_BYREF|VT_R8; V_R8REF(&arg[1]) = &d; in test_marshal_basetypes() 2926 V_VT(&vararg[1]) = VT_R8; in test_typelibmarshal() 2942 V_VT(&vararg[2]) = VT_R8; in test_typelibmarshal() 2959 V_VT(&vararg[3]) = VT_R8; in test_typelibmarshal() 3440 VARTYPE rgvt[] = { VT_R8, VT_BSTR, VT_BSTR, VT_VARIANT|VT_BYREF }; in test_DispCallFunc() 3447 V_VT(&vararg[0]) = VT_R8; in test_DispCallFunc()
|
H A D | safearray.c | 283 case VT_R8: return sizeof(LONG64); in SAFEARRAY_GetVTSize() 341 {VT_R8, 8, FADF_HAVEVARTYPE,0}, 866 ok(sa == NULL || vt == VT_R8, in test_SafeArrayCreateLockDestroy() 874 ok(SafeArrayGetElemsize(sa) == dwLen || vt == VT_R8, in test_SafeArrayCreateLockDestroy()
|
/reactos/dll/win32/oleaut32/ |
H A D | variant.c | 319 case VT_R8: in VARIANT_Coerce() 2953 leftvt == VT_R8 || rightvt == VT_R8 || in VarAnd() 3588 leftvt == VT_R8 || rightvt == VT_R8 || in VarDiv() 3641 case VT_R8: in VarDiv() 3848 else if (leftvt == VT_R8 || rightvt == VT_R8) in VarSub() 3915 case VT_R8: in VarSub() 4414 case VT_R8: in VarFix() 4502 case VT_R8: in VarInt() 4840 case VT_R8: in VarNeg() 5243 leftvt == VT_R8 || rightvt == VT_R8 || in VarIdiv() [all …]
|
H A D | recinfo.c | 226 case VT_R8: in IRecordInfoImpl_RecordClear()
|
/reactos/modules/rostests/apitests/atl/ |
H A D | CComVariant.cpp | 140 CComVariant d1(3.4, VT_R8), d2(3.4, VT_DATE), d3(8.8, VT_I1), d4(1.9); in test_construction() 141 expect_double(d1, 3.4, VT_R8); in test_construction() 144 expect_double(d4, 1.9, VT_R8); in test_construction() 241 CComVariant d1(3.4, VT_R8); in test_copyconstructor() 243 expect_double(d2, 3.4, VT_R8); in test_copyconstructor() 361 expect_double(d1, 3.4, VT_R8); in test_assign() 363 expect_double(d2, 3.4, VT_R8); in test_assign() 423 CComVariant d1(3.4, VT_R8), empty; in test_misc() 426 expect_double(empty, 3.4, VT_R8); in test_misc()
|
/reactos/sdk/tools/widl/ |
H A D | typelib.h | 41 VT_R8 = 5, enumerator
|
H A D | typelib.c | 196 return VT_R8; in get_type_vt()
|
/reactos/sdk/include/vcruntime/ |
H A D | comutil.h | 394 _variant_t(double dblSrc,VARTYPE vtSrc = VT_R8); 527 if((vtSrc!=VT_R8) && (vtSrc!=VT_DATE)) { in _variant_t() 535 V_VT(this) = VT_R8; in _variant_t() 632 if(V_VT(this)==VT_R8) return V_R8(this); 634 varDest.ChangeType(VT_R8,this); 781 if(V_VT(this)==VT_R8) { 791 V_VT(this) = VT_R8; 1072 case VT_R8:
|
/reactos/sdk/include/psdk/ |
H A D | propidl.idl | 131 [case(VT_R8)] double dblVal; 156 [case(VT_R8|VT_VECTOR)] CADBL cadbl; 176 VT_ARRAY|VT_R8, 195 [case(VT_BYREF|VT_R8)] DOUBLE *pdblVal;
|
/reactos/dll/win32/jscript/ |
H A D | jsutils.c | 276 case VT_R8: in variant_to_jsval() 384 V_VT(retv) = VT_R8; in jsval_to_variant() 742 V_VT(&v) = VT_R8; in double_to_string() 913 case VT_R8: { in variant_change_type()
|
/reactos/sdk/lib/atl/ |
H A D | atlcomcli.h | 546 CComVariant(double value, VARENUM type = VT_R8) 548 if (type == VT_R8 || type == VT_DATE)
|
/reactos/modules/rostests/winetests/scrrun/ |
H A D | dictionary.c | 563 V_VT(&key) = VT_R8; in test_hash_value() 587 V_VT(&key) = VT_R8; in test_hash_value() 629 V_VT(&key) = VT_R8; in test_hash_value() 639 V_VT(&key) = VT_R8|VT_BYREF; in test_hash_value()
|
H A D | filesystem.c | 1462 ok(V_VT(&size) == VT_R8 || V_VT(&size) == VT_I4, "got %d\n", V_VT(&size)); in test_DriveCollection() 1463 if (V_VT(&size) == VT_R8) in test_DriveCollection() 1471 ok(V_VT(&size) == VT_R8 || V_VT(&size) == VT_I4, "got %d\n", V_VT(&size)); in test_DriveCollection() 1472 if (V_VT(&size) == VT_R8) in test_DriveCollection() 1480 ok(V_VT(&size) == VT_R8 || V_VT(&size) == VT_I4, "got %d\n", V_VT(&size)); in test_DriveCollection() 1481 if (V_VT(&size) == VT_R8) in test_DriveCollection()
|
/reactos/dll/win32/ole32/ |
H A D | ole2.c | 2893 case VT_R8: in PROPVARIANT_ValidateType() 2924 case VT_R8|VT_VECTOR: in PROPVARIANT_ValidateType() 2949 case VT_ARRAY|VT_R8: in PROPVARIANT_ValidateType() 2993 case VT_R8: in PropVariantClear() 3119 case VT_R8: in PropVariantCopy() 3192 case VT_R8: elemSize = sizeof(pvarSrc->u.dblVal); break; in PropVariantCopy()
|
/reactos/dll/win32/propsys/ |
H A D | propvar.c | 130 case VT_R8: in PROPVAR_ConvertNumber() 884 case VT_R8: in PropVariantCompareEx()
|
/reactos/dll/win32/vbscript/ |
H A D | global.c | 377 V_VT(res) = VT_R8; in return_double() 430 hres = VariantChangeType(&dst, v, 0, VT_R8); in to_double() 755 hres = VariantChangeType(&v, arg, 0, VT_R8); in Global_CDbl() 2127 case VT_R8: in Global_TypeName() 2446 case VT_R8: in Global_Round() 2649 {L"vbDouble", NULL, BP_GET, VT_I2, VT_R8},
|
/reactos/dll/win32/scrrun/ |
H A D | dictionary.c | 847 case VT_R8|VT_BYREF: in dictionary_get_HashVal() 848 case VT_R8: in dictionary_get_HashVal()
|
/reactos/sdk/include/reactos/wine/ |
H A D | debug.h | 310 case VT_R8: in wine_dbgstr_variant()
|
/reactos/modules/rostests/winetests/msxml3/ |
H A D | schema.c | 1359 { "//Property[Name!text()='testFloat']/Value/floatData", VT_R8, "float" }, 1369 { "//Property[Name!text()='testR8']/Value/r8Data", VT_R8, "r8" }, 1555 case VT_R8: in test_XDR_datatypes()
|
/reactos/modules/rostests/winetests/jscript/ |
H A D | caller.c | 150 call_change_type(change_type, &v, src, VT_R8); in test_change_type()
|
/reactos/modules/rostests/winetests/propsys/ |
H A D | propsys.c | 718 r8_0.vt = VT_R8; in test_PropVariantCompare() 720 r8_2.vt = VT_R8; in test_PropVariantCompare() 1338 propvar.vt = VT_R8; in test_PropVariantToDouble()
|
/reactos/dll/win32/rpcrt4/ |
H A D | ndr_typelib.c | 135 case VT_R8: return FC_DOUBLE; in get_basetype() 173 case VT_R8: in type_memsize()
|