/reactos/drivers/network/dd/netkvm/Common/ |
H A D | ParaNdis-Oid.c | 201 ULONG ul = (ULONG)u64; in ParaNdis_OidQueryCopy() local 202 NdisMoveMemory(pOid->InformationBuffer, &ul, sizeof(ul)); in ParaNdis_OidQueryCopy() 203 *(pOid->pBytesWritten) = sizeof(ul); in ParaNdis_OidQueryCopy() 235 ULONG ul; in ParaNdis_OidQueryCommon() member 251 SETINFO(ul, NdisHardwareStatusReady); in ParaNdis_OidQueryCommon() 283 SETINFO(ul, 0x00ffffff); in ParaNdis_OidQueryCommon() 309 SETINFO(ul, options); in ParaNdis_OidQueryCommon() 424 SETINFO(ul, 0); in ParaNdis_OidQueryCommon() 427 SETINFO(ul, pContext->VlanId); in ParaNdis_OidQueryCommon() 437 SETINFO(ul, pContext->ulEnableWakeup); in ParaNdis_OidQueryCommon() [all …]
|
/reactos/modules/rostests/apitests/compiler/ |
H A D | floatconv.c | 37 #define ULONG_OVERFLOW 0ul 115 ok_eq_ulong(cast_float_to_ulong(0.0f), 0ul); in Test_float() 117 ok_eq_ulong(cast_float_to_ulong(0.5f), 0ul); in Test_float() 118 ok_eq_ulong(cast_float_to_ulong(0.999999f), 0ul); in Test_float() 124 ok_eq_ulong(cast_float_to_ulong(-0.0f), 0ul); in Test_float() 125 ok_eq_ulong(cast_float_to_ulong(-0.5f), 0ul); in Test_float() 203 ok_eq_ulong(cast_double_to_ulong(0.0), 0ul); in Test_double() 205 ok_eq_ulong(cast_double_to_ulong(0.5), 0ul); in Test_double() 206 ok_eq_ulong(cast_double_to_ulong(0.999999999), 0ul); in Test_double() 212 ok_eq_ulong(cast_double_to_ulong(-0.0), 0ul); in Test_double() [all …]
|
/reactos/dll/3rdparty/libtirpc/src/ |
H A D | xdr.c | 799 u_long ul[2]; local 804 ul[1] = (u_long)((u_int64_t)*llp) & 0xffffffff; 805 if (XDR_PUTLONG(xdrs, (long *)&ul[0]) == FALSE) 807 return (XDR_PUTLONG(xdrs, (long *)&ul[1])); 809 if (XDR_GETLONG(xdrs, (long *)&ul[0]) == FALSE) 814 (((u_int64_t)ul[0] << 32) | ((u_int64_t)ul[1])); 832 u_long ul[2]; local 836 ul[0] = (u_long)(*ullp >> 32) & 0xffffffff; 837 ul[1] = (u_long)(*ullp) & 0xffffffff; 840 return (XDR_PUTLONG(xdrs, (long *)&ul[1])); [all …]
|
/reactos/modules/rostests/winetests/ntdll/ |
H A D | env.c | 231 ULONG ul; in testExpand() local 246 nts = pRtlExpandEnvironmentStrings_U(small_env, &us_src, &us_dst, &ul); in testExpand() 248 ok(ul == strlen(test->dst) * sizeof(WCHAR) + sizeof(WCHAR), in testExpand() 249 "Wrong returned length for %s: %u\n", test->src, ul ); in testExpand() 255 nts = pRtlExpandEnvironmentStrings_U(small_env, &us_src, &us_dst, &ul); in testExpand() 257 ok(ul == us_dst.Length + sizeof(WCHAR), in testExpand() 258 "Wrong returned length for %s: %u\n", test->src, ul); in testExpand() 259 ok(ul == strlen(test->dst) * sizeof(WCHAR) + sizeof(WCHAR), in testExpand() 260 "Wrong returned length for %s: %u\n", test->src, ul); in testExpand() 268 nts = pRtlExpandEnvironmentStrings_U(small_env, &us_src, &us_dst, &ul); in testExpand() [all …]
|
/reactos/ntoskrnl/kdbg/ |
H A D | kdb_cli.c | 476 ULONG ul; in KdbpCmdEvalExpression() local 509 if (ul <= 0xff && ul >= 0x80) in KdbpCmdEvalExpression() 511 else if (ul <= 0xffff && ul >= 0x8000) in KdbpCmdEvalExpression() 519 KdbpPrint("0x%08lx %10lu\n", ul, ul); in KdbpCmdEvalExpression() 805 ULONG ul; in KdbpCmdDisassembleX() local 841 for (ul = 1; ul < Argc; ul++) in KdbpCmdDisassembleX() 843 Argv[ul][strlen(Argv[ul])] = ' '; in KdbpCmdDisassembleX() 1229 ULONG ul; in KdbpCmdBackTrace() local 1258 for (ul = 1; ul < Argc; ul++) in KdbpCmdBackTrace() 1260 Argv[ul][strlen(Argv[ul])] = ' '; in KdbpCmdBackTrace() [all …]
|
H A D | kdb_expr.c | 256 ULONG ul; in RpnpDumpStack() local 261 for (ul = 0; ul < Stack->Sp; ul++) in RpnpDumpStack() 263 PRPN_OP Op = Stack->Ops + ul; in RpnpDumpStack() 315 ul = Stack->Sp; in RpnpDumpStack() 908 ULONG ul; in RpnpEvaluateStack() local 960 ul = Op->Data.Register; in RpnpEvaluateStack() 961 p = (PVOID)((ULONG_PTR)TrapFrame + RegisterToTrapFrame[ul].Offset); in RpnpEvaluateStack() 963 switch (RegisterToTrapFrame[ul].Size) in RpnpEvaluateStack() 1009 if (NT_SUCCESS(KdbpSafeReadMemory(&ul, p, sizeof (ul)))) in RpnpEvaluateStack() 1012 ull = (ULONGLONG)ul; in RpnpEvaluateStack()
|
/reactos/sdk/include/psdk/ |
H A D | basetsd.h | 92 #define ULongToPtr( ul ) ((VOID*)(ULONG_PTR)((unsigned long)ul)) argument 97 #define UlongToHandle(ul) ULongToHandle(ul) argument 98 #define UlongToPtr(ul) ULongToPtr(ul) argument 160 static inline void* ULongToPtr( const unsigned long ul ) in ULongToPtr() argument 161 { return( (void*)(ULONG_PTR)ul ); } in ULongToPtr()
|
/reactos/modules/rostests/apitests/rtl/i386/ |
H A D | RtlUnwind.c | 39 ok_eq_hex(g_OutContext.Ebx, 0ul); in START_TEST() 40 ok_eq_hex(g_OutContext.Ecx, 0ul); in START_TEST() 41 ok_eq_hex(g_OutContext.Edx, 0ul); in START_TEST() 42 ok_eq_hex(g_OutContext.Esi, 0ul); in START_TEST() 43 ok_eq_hex(g_OutContext.Edi, 0ul); in START_TEST()
|
/reactos/modules/rosapps/templates/dialog/ |
H A D | memdlg.c | 41 ULONG_PTR ul; in lpwAlign() local 43 ul = (ULONG_PTR)lpIn; in lpwAlign() 44 ul += 3; in lpwAlign() 45 ul >>= 2; in lpwAlign() 46 ul <<= 2; in lpwAlign() 47 return (LPWORD)ul; in lpwAlign()
|
/reactos/win32ss/gdi/dib/ |
H A D | alphablend.c | 16 ULONG ul; member 92 SrcPixel32.ul = DIB_GetSource(Source, SrcX, SrcY, &exloSrcRGB.xlo); in DIB_XXBPP_AlphaBlend() 101 DstPixel32.ul = DIB_GetSource(Dest, DstX, DstY, &exloDstRGB.xlo); in DIB_XXBPP_AlphaBlend() 105 DstPixel32.ul = XLATEOBJ_iXlate(&exloRGBSrc.xlo, DstPixel32.ul); in DIB_XXBPP_AlphaBlend() 106 pfnDibPutPixel(Dest, DstX, DstY, XLATEOBJ_iXlate(ColorTranslation, DstPixel32.ul)); in DIB_XXBPP_AlphaBlend()
|
/reactos/dll/directx/wine/d3dcompiler_43/ |
H A D | ppy.y | 38 case cv_ulong: r.val.ul = OP v.val.ul; break; \ 65 r.val.ul = v1.val.ul OP v2.val.ul; 406 case cv_ulong: v->val.si = v->val.ul; break; 420 case cv_ulong: v->val.ui = v->val.ul; break; in cast_to_uint() 445 case cv_sint: v->val.ul = v->val.si; break; in cast_to_ulong() 446 case cv_uint: v->val.ul = v->val.ui; break; in cast_to_ulong() 449 case cv_sll: v->val.ul = v->val.sll; break; in cast_to_ulong() 450 case cv_ull: v->val.ul = v->val.ull; break; in cast_to_ulong() 462 case cv_ulong: v->val.sll = v->val.ul; break; in cast_to_sll() 476 case cv_ulong: v->val.ull = v->val.ul; break; in cast_to_ull() [all …]
|
H A D | ppl.l | 147 ul [uUlL]|[uUlL][lL]|[lL][uU]|[lL][lL][uU]|[uU][lL][lL]|[lL][uU][lL] 403 <pp_if>0[0-7]*{ul}? return make_number(8, &ppy_lval, ppy_text, ppy_leng); 404 <pp_if>0[0-7]*[8-9]+{ul}? ppy_error("Invalid octal digit"); 405 <pp_if>[1-9][0-9]*{ul}? return make_number(10, &ppy_lval, ppy_text, ppy_leng); 406 <pp_if>0[xX][0-9a-fA-F]+{ul}? return make_number(16, &ppy_lval, ppy_text, ppy_leng); 907 unsigned long ul; 909 ul = strtoul(str, NULL, radix); 910 if ((ul == ULONG_MAX && errno == ERANGE) || (ul > UINT_MAX)) 912 val->uint = (unsigned int)ul;
|
/reactos/sdk/tools/wpp/ |
H A D | ppy.y | 50 case cv_ulong: r.val.ul = OP v.val.ul; break; \ 73 r.val.sl = v1.val.sl OP (signed long) v2.val.ul; \ 77 r.val.ul = v1.val.ul OP v2.val.ul; 424 case cv_ulong: v->val.si = v->val.ul; break; 438 case cv_ulong: v->val.ui = v->val.ul; break; in cast_to_uint() 463 case cv_sint: v->val.ul = v->val.si; break; in cast_to_ulong() 464 case cv_uint: v->val.ul = v->val.ui; break; in cast_to_ulong() 467 case cv_sll: v->val.ul = v->val.sll; break; in cast_to_ulong() 468 case cv_ull: v->val.ul = v->val.ull; break; in cast_to_ulong() 480 case cv_ulong: v->val.sll = v->val.ul; break; in cast_to_sll() [all …]
|
H A D | ppl.l | 161 ul [uUlL]|[uUlL][lL]|[lL][uU]|[lL][lL][uU]|[uU][lL][lL]|[lL][uU][lL] 431 <pp_if>0[0-7]*{ul}? return make_number(8, &ppy_lval, ppy_text, ppy_leng); 432 <pp_if>0[0-7]*[8-9]+{ul}? ppy_error("Invalid octal digit"); 433 <pp_if>[1-9][0-9]*{ul}? return make_number(10, &ppy_lval, ppy_text, ppy_leng); 434 <pp_if>0[xX][0-9a-fA-F]+{ul}? return make_number(16, &ppy_lval, ppy_text, ppy_leng); 940 unsigned long ul; 942 ul = strtoul(str, NULL, radix); 943 if ((ul == ULONG_MAX && errno == ERANGE) || (ul > UINT_MAX)) 945 val->uint = (unsigned int)ul;
|
/reactos/drivers/network/tcpip/lwip/src/core/ipv6/ |
H A D | ip6_addr.c | 58 const ip_addr_t ip6_addr_any = IPADDR6_INIT(0ul, 0ul, 0ul, 0ul);
|
/reactos/modules/rostests/winetests/shlwapi/ |
H A D | clist.c | 593 ULARGE_INTEGER ul; in test_SHLWAPI_213() local 611 ul.QuadPart = 50001; in test_SHLWAPI_213() 612 hRet = pSHLWAPI_214(&streamobj.IStream_iface, &ul); in test_SHLWAPI_213() 614 ok(ul.QuadPart == 0, "213 didn't rewind stream\n"); in test_SHLWAPI_213() 620 ULARGE_INTEGER ul; in test_SHLWAPI_214() local 630 ul.QuadPart = 0; in test_SHLWAPI_214() 632 hRet = pSHLWAPI_214(&streamobj.IStream_iface, &ul); in test_SHLWAPI_214() 639 ok(ul.QuadPart == 5000l, "Stat gave wrong size\n"); in test_SHLWAPI_214()
|
/reactos/drivers/network/tcpip/lwip/src/include/lwip/ |
H A D | ip_addr.h | 81 #define IPADDR4_INIT(u32val) { { { { u32val, 0ul, 0ul, 0ul } IPADDR6_ZONE_INIT } }, IPADDR… 93 #define IPADDR_ANY_TYPE_INIT { { { { 0ul, 0ul, 0ul, 0ul } IPADDR6_ZONE_INIT } }, IPADDR_TY…
|
/reactos/dll/win32/oleacc/lang/ |
H A D | oleacc_Sq.rc | 72 ROLE_SYSTEM_DROPLIST "ul poshtë" 81 ROLE_SYSTEM_BUTTONDROPDOWN "buton ul poshtë" 83 ROLE_SYSTEM_BUTTONDROPDOWNGRID "buton ul poshtë rrjetin"
|
/reactos/modules/rostests/unittests/isapnp/ |
H A D | res_card.c | 533 0ul, in DrvTestCard1Dev1QueryResourceRequirements() 534 0ul); in DrvTestCard1Dev1QueryResourceRequirements() 938 0ul, in DrvTestCard1Dev5QueryResourceRequirements() 939 0ul); in DrvTestCard1Dev5QueryResourceRequirements() 1092 0ul, in DrvTestCard1Dev6QueryResourceRequirements() 1093 0ul); in DrvTestCard1Dev6QueryResourceRequirements()
|
H A D | tests.c | 347 0ul, in DrvTestReadDataPortQueryResourcesRequirementsForEnum() 375 0ul, in DrvTestReadDataPortQueryResourcesRequirementsForEnum() 447 0ul, in DrvTestReadDataPortQueryResourcesRequirementsForRebalance()
|
/reactos/dll/cpl/hdwwiz/lang/ |
H A D | ro-RO.rc | 19 …LTEXT "1) Instalarea de software de suport pentru hardware-ul adăugat la computer.", -1, 121, 56, … 22 …are pentru a închide acest expert şi să utilizaţi CD-ul producătorului pentru a instala hardware-u… 140 …e, astfel încât acesta să poată fi desfăcut şi să se poată adăuga hardware-ul.", IDC_TURNOFFCHECKB… 141 …LTEXT "De cele mai multe ori, Windows va instala automat hardware-ul după ce este conectat. Dacă W…
|
/reactos/sdk/lib/3rdparty/freetype/src/gxvalid/ |
H A D | gxvmorx5.c | 177 currentInsertList = (FT_Byte) ( glyphOffset_p->ul >> 16 ); in gxv_morx_subtable_type5_entry_validate() 178 markedInsertList = (FT_UShort)( glyphOffset_p->ul ); in gxv_morx_subtable_type5_entry_validate()
|
H A D | gxvmort5.c | 179 currentInsertList = (FT_UShort)( glyphOffset->ul >> 16 ); in gxv_mort_subtable_type5_entry_validate() 180 markedInsertList = (FT_UShort)( glyphOffset->ul ); in gxv_mort_subtable_type5_entry_validate()
|
H A D | gxvmort1.c | 161 markOffset = (FT_Short)( glyphOffset_p->ul >> 16 ); in gxv_mort_subtable_type1_entry_validate() 162 currentOffset = (FT_Short)( glyphOffset_p->ul ); in gxv_mort_subtable_type1_entry_validate()
|
/reactos/dll/win32/crypt32/lang/ |
H A D | crypt32_Ro.rc | 60 IDS_NETSCAPE_BASE_URL "URL-ul de bază Netscape" 61 IDS_NETSCAPE_REVOCATION_URL "URL-ul de revocare Netscape" 62 IDS_NETSCAPE_CA_REVOCATION_URL "URL-ul de revocare a CA Netscape" 63 IDS_NETSCAPE_CERT_RENEWAL_URL "URL-ul de înnoire a certificatului Netscape" 64 IDS_NETSCAPE_CA_POLICY_URL "URL-ul politicii CA Netscape"
|