/reactos/boot/rtl/ |
H A D | nlsboot.c | 78 if (ResultSize) in RtlMultiByteToUnicodeN() 121 if (ResultSize) in RtlUnicodeToMultiByteN() 122 *ResultSize = Size; in RtlUnicodeToMultiByteN() 202 if (ResultSize) in RtlUpcaseUnicodeToMultiByteN() 203 *ResultSize = Size; in RtlUpcaseUnicodeToMultiByteN() 273 if (ResultSize) in RtlUnicodeToOemN() 274 *ResultSize = 0; in RtlUnicodeToOemN() 292 if (ResultSize) in RtlOemToUnicodeN() 293 *ResultSize = 0; in RtlOemToUnicodeN() 311 if (ResultSize) in RtlUpcaseUnicodeToOemN() [all …]
|
/reactos/sdk/lib/rtl/ |
H A D | nls.c | 65 if (ResultSize) in RtlCustomCPToUnicodeN() 250 if (ResultSize) in RtlMultiByteToUnicodeN() 289 if (ResultSize) in RtlMultiByteToUnicodeN() 392 if (ResultSize) in RtlOemToUnicodeN() 434 if (ResultSize) in RtlOemToUnicodeN() 502 if (ResultSize) in RtlUnicodeToCustomCPN() 543 if (ResultSize) in RtlUnicodeToMultiByteN() 586 if (ResultSize) in RtlUnicodeToMultiByteN() 685 if (ResultSize) in RtlUnicodeToOemN() 753 if (ResultSize) in RtlUpcaseUnicodeToCustomCPN() [all …]
|
/reactos/modules/rostests/tests/regqueryvalue/ |
H A D | regqueryvalue.c | 8 ULONG ResultSize; in main() local 30 if(RegQueryValueExW( RegKey, ValueNameWC, NULL, NULL, NULL, &ResultSize ) in main() 36 WcharResult = malloc( (ResultSize + 1) * sizeof(WCHAR) ); in main() 39 printf( "Could not alloc %d wchars\n", (int)(ResultSize + 1) ); in main() 44 &ResultSize ); in main() 49 RegQueryValueExA( RegKey, argv[2], NULL, NULL, NULL, &ResultSize ); in main() 51 CharResult = malloc( ResultSize + 1 ); in main() 54 printf( "Could not alloc %d chars\n", (int)(ResultSize + 1) ); in main() 58 RegQueryValueExA( RegKey, argv[2], NULL, NULL, (PBYTE)CharResult, &ResultSize ); in main()
|
/reactos/modules/rostests/apitests/ntdll/ |
H A D | RtlUnicodeToOemN.c | 115 ULONG ResultSize; in START_TEST() local 213 ResultSize = 0x0BADF00D; in START_TEST() 217 &ResultSize, in START_TEST() 222 ok_long(ResultSize, TestData[i].Test[j].ReturnedSize); in START_TEST() 223 for (int k = 0; k < ResultSize; k++) in START_TEST() 229 for (int k = ResultSize; k < (Length + 1); k++) in START_TEST()
|
/reactos/ntoskrnl/wmi/ |
H A D | smbios.c | 226 ULONG TableSize, ResultSize; in WmipQueryRawSMBiosTables() local 237 ResultSize = sizeof(WNODE_ALL_DATA) + TableSize; in WmipQueryRawSMBiosTables() 243 if (*InOutBufferSize < ResultSize) in WmipQueryRawSMBiosTables() 246 *InOutBufferSize, ResultSize); in WmipQueryRawSMBiosTables() 252 AllData->WnodeHeader.BufferSize = ResultSize; in WmipQueryRawSMBiosTables() 271 *InOutBufferSize = ResultSize; in WmipQueryRawSMBiosTables()
|
/reactos/drivers/bus/acpi/acpica/dispatcher/ |
H A D | dswstate.c | 172 if (WalkState->ResultCount > WalkState->ResultSize) in AcpiDsResultPush() 177 else if (WalkState->ResultCount == WalkState->ResultSize) in AcpiDsResultPush() 189 if (!(WalkState->ResultCount < WalkState->ResultSize)) in AcpiDsResultPush() 248 if (((UINT32) WalkState->ResultSize + ACPI_RESULTS_FRAME_OBJ_NUM) > in AcpiDsResultStackPush() 252 WalkState, WalkState->ResultSize)); in AcpiDsResultStackPush() 267 WalkState->ResultSize += ACPI_RESULTS_FRAME_OBJ_NUM; in AcpiDsResultStackPush() 307 if (WalkState->ResultSize < ACPI_RESULTS_FRAME_OBJ_NUM) in AcpiDsResultStackPop() 318 WalkState->ResultSize -= ACPI_RESULTS_FRAME_OBJ_NUM; in AcpiDsResultStackPop()
|
/reactos/sdk/lib/inflib/ |
H A D | infhostrtl.c | 21 IN PULONG ResultSize, in RtlMultiByteToUnicodeN() argument 35 if (ResultSize != NULL) in RtlMultiByteToUnicodeN() 36 *ResultSize = Size * sizeof(WCHAR); in RtlMultiByteToUnicodeN()
|
H A D | builddep.h | 34 IN ULONG UnicodeSize, IN PULONG ResultSize, IN PCSTR MbString, IN ULONG MbSize);
|
/reactos/drivers/network/tcpip/ip/network/ |
H A D | interface.c | 73 ULONG ResultSize = 0; in GetInterfaceName() local 77 &ResultSize, in GetInterfaceName() 82 NameBuffer[ResultSize] = 0; in GetInterfaceName()
|
/reactos/modules/rosapps/applications/devutils/shimdbg/ |
H A D | shimdbg.c | 267 ULONG KeyInfoSize, ResultSize; in DumpRegistryData() local 275 sizeof(KeyValueObject), &ResultSize); in DumpRegistryData() 285 KeyInfoSize, &ResultSize); in DumpRegistryData()
|
/reactos/ntoskrnl/fsrtl/ |
H A D | notify.c | 507 ULONG AlreadyWritten = 0, ResultSize; in FsRtlNotifyUpdateBuffer() local 550 &ResultSize, ParentName->Buffer, in FsRtlNotifyUpdateBuffer() 552 OutputBuffer->FileName[ResultSize / sizeof(WCHAR)] = L'\\'; in FsRtlNotifyUpdateBuffer() 553 AlreadyWritten = ResultSize + sizeof(WCHAR); in FsRtlNotifyUpdateBuffer() 556 OutputBuffer->FileNameLength, &ResultSize, in FsRtlNotifyUpdateBuffer() 561 AlreadyWritten += ResultSize; in FsRtlNotifyUpdateBuffer() 564 OutputBuffer->FileNameLength, &ResultSize, in FsRtlNotifyUpdateBuffer()
|
/reactos/subsystems/win/basesrv/ |
H A D | basesrv.h | 58 ULONG ResultSize);
|
/reactos/ntoskrnl/io/pnpmgr/ |
H A D | pnproot.c | 663 ULONG ResultSize; in EnumerateDevices() local 714 &ResultSize); in EnumerateDevices() 723 ASSERT(KeyInfoSize < ResultSize); in EnumerateDevices() 724 KeyInfoSize = ResultSize; in EnumerateDevices() 774 &ResultSize); in EnumerateDevices() 782 ASSERT(SubKeyInfoSize < ResultSize); in EnumerateDevices() 783 SubKeyInfoSize = ResultSize; in EnumerateDevices()
|
/reactos/ntoskrnl/ps/ |
H A D | apphelp.c | 312 ULONG KeyInfoSize, ResultSize; in ApphelpCacheRead() local 326 &ResultSize); in ApphelpCacheRead() 338 &ResultSize); in ApphelpCacheRead()
|
/reactos/drivers/bus/acpi/acpica/include/ |
H A D | acstruct.h | 89 UINT8 ResultSize; /* Total elements for the result stack */ member
|
/reactos/dll/win32/kernel32/winnls/string/ |
H A D | nls.c | 54 LPSTR BaseName, LPSTR Result, ULONG ResultSize); 1488 ULONG ResultSize) in GetNlsSectionName() argument 1499 if (strlen(Integer) + strlen(BaseName) >= ResultSize) in GetNlsSectionName()
|
/reactos/dll/ntdll/ldr/ |
H A D | ldrinit.c | 195 ULONG KeyInfoSize, ResultSize; in LdrQueryImageFileKeyOption() local 210 &ResultSize); in LdrQueryImageFileKeyOption() 227 &ResultSize); in LdrQueryImageFileKeyOption()
|
/reactos/sdk/include/ndk/ |
H A D | rtlfuncs.h | 1954 PULONG ResultSize, 1984 PULONG ResultSize, 1998 PULONG ResultSize, 2009 PULONG ResultSize,
|
/reactos/dll/win32/kernel32/client/ |
H A D | proc.c | 2295 ULONG ResultSize; in CreateProcessInternalW() local 3601 &ResultSize); in CreateProcessInternalW() 3603 (ResultSize < sizeof(WCHAR)) || in CreateProcessInternalW()
|
/reactos/dll/win32/advapi32/reg/ |
H A D | reg.c | 2521 ULONG ResultSize; in RegEnumKeyExW() local 2591 &ResultSize); in RegEnumKeyExW()
|