Searched defs:Result (Results 1 - 25 of 104) sorted by relevance

12345

/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/
H A DMultU64x32.c46 UINT64 Result; local
48 Result = InternalMathMultU64x32 (Multiplicand, Multiplier);
50 return Result;
H A DMultU64x64.c46 UINT64 Result; local
48 Result = InternalMathMultU64x64 (Multiplicand, Multiplier);
50 return Result;
H A DSynchronizationGcc.c194 VOID *Result; local
202 Result = InterlockedCompareExchangePointer (
209 return (BOOLEAN) (Result == (VOID*) SPIN_LOCK_RELEASED);
H A DSynchronizationMsc.c166 VOID *Result; local
174 Result = InterlockedCompareExchangePointer (
181 return (BOOLEAN) (Result == (VOID*) SPIN_LOCK_RELEASED);
/device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/
H A DMultU64x32.c41 UINT64 Result; local
43 Result = InternalMathMultU64x32 (Multiplicand, Multiplier);
45 return Result;
H A DMultU64x64.c41 UINT64 Result; local
43 Result = InternalMathMultU64x64 (Multiplicand, Multiplier);
45 return Result;
/device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
H A DOsPath.c239 CHAR8 *Result; local
242 Result = (CHAR8 *) malloc (strlen (OldPath) + strlen (Peer) + 1);
243 if (Result == NULL) {
247 strcpy (Result, OldPath);
253 for (Offset = strlen (Result); Offset >= 0; Offset--) {
254 if ((Result[Offset] == '/') || (Result[Offset] == '\\')) {
255 Result[Offset + 1] = '\0';
256 strcat (Result, Peer);
257 return Result;
[all...]
/device/linaro/bootloader/edk2/MdeModulePkg/Core/Pei/Dependency/
H A DDependency.h28 BOOLEAN Result; member in struct:__anon6409
/device/generic/goldfish/wifi/ipv6proxy/
H A Dresult.h18 class Result { class
20 static Result success() {
21 return Result(true);
26 static Result error(const char* message) {
27 return Result(message);
35 explicit Result(bool success) : mSuccess(success) { } function in class:Result
36 explicit Result(const char* message) function in class:Result
/device/linaro/bootloader/edk2/MdePkg/Library/BaseSynchronizationLib/Ia32/
H A DGccInline.c37 UINT32 Result; local
43 : "=a" (Result), // %0
50 return Result;
74 UINT32 Result; local
80 : "=a" (Result), // %0
87 return Result;
/device/linaro/bootloader/edk2/MdePkg/Library/BaseSynchronizationLib/X64/
H A DGccInline.c38 UINT32 Result; local
44 : "=a" (Result), // %0
51 return Result;
74 UINT32 Result; local
80 : "=a" (Result), // %0
87 return Result;
/device/generic/goldfish/dhcp/common/
H A Dresult.h23 class Result { class
25 static Result success() {
26 return Result(true);
29 static Result error(std::string message) {
30 return Result(message);
32 static Result error(const char* format, ...) {
39 return Result(std::string(buffer));
47 explicit Result(bool success) : mSuccess(success) { } function in class:Result
48 explicit Result(std::string message) function in class:Result
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/
H A DMath.c84 UINT64 Result; local
86 Result = Operand;
88 Result *= 10;
90 return Result;
/device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/MonoStatusCode/
H A DMonoStatusCode.c97 VOID *Result;
101 Result = BuildGuidDataHob (
106 if (Result != NULL) {
88 VOID *Result; local
/device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Library/Dw8250SerialPortLib/
H A DDw8250SerialPortLib.c86 UINTN Result; local
92 Result = NumberOfBytes;
100 return Result;
122 UINTN Result; local
128 Result = 0;
136 Result++;
139 return Result;
/device/linaro/bootloader/OpenPlatformPkg/Platforms/Marvell/Library/ParsePcdLib/
H A DParsePcdLib.c96 UINTN Result = 0; local
120 Result <<= 4;
121 Result += HexCharToUintn (*String);
125 return (UINTN) Result;
134 UINTN Result = 0; local
137 Result = 10 * Result + (*String - L'0');
141 return Result;
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/GenDepex/
H A DDepexParser.c862 BOOLEAN Result; local
866 Result = FALSE;
873 Result = ParseGuid (Pbegin, length, Pindex);
877 Result = ParseGuid (Pbegin, length, Pindex);
881 Result = ParseBool (Pbegin, length, Pindex);
884 Result = ParseBool (Pbegin, length, Pindex);
889 return (BOOLEAN) (Result && (*Pindex) >= (Pbegin + length));
/device/linaro/bootloader/edk2/MdePkg/Library/UefiUsbLib/
H A DHid.c60 EFI_STATUS Result; local
72 Result = UsbIo->UsbControlTransfer (
82 return Result;
117 EFI_STATUS Result; local
132 Result = UsbIo->UsbControlTransfer (
142 return Result;
172 EFI_STATUS Result; local
187 Result = UsbIo->UsbControlTransfer (
197 return Result;
227 EFI_STATUS Result; local
281 EFI_STATUS Result; local
335 EFI_STATUS Result; local
397 EFI_STATUS Result; local
462 EFI_STATUS Result; local
[all...]
/device/linaro/bootloader/edk2/StdLib/LibC/StdLib/
H A DNumericInt.c187 long Result = 0; local
236 Previous = Result;
237 Result = (Result * base) + (long int)temp;
238 if( Result <= Previous) { // Detect Overflow
240 Result = LONG_MIN;
243 Result = LONG_MAX;
252 Result = -Result;
259 return Result;
276 unsigned long Result = 0; local
351 long long Result = 0; local
440 unsigned long long Result = 0; local
[all...]
/device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Library/SerialPortLib/
H A DSerialPortLib.c138 UINTN Result;
145 Result = NumberOfBytes;
157 return Result;
201 UINTN Result;
208 Result = NumberOfBytes;
221 return Result;
129 UINTN Result; local
192 UINTN Result; local
/device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Library/Dw8250SerialPortRuntimeLib/
H A DDw8250SerialPortRuntimeLib.c140 UINTN Result; local
146 Result = NumberOfBytes;
154 return Result;
176 UINTN Result; local
182 Result = 0;
190 Result++;
193 return Result;
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/UhciDxe/
H A DUhciSched.h35 // Result is the final result of the QH's QTD. NextToggle
40 UINT32 Result; member in struct:__anon6146
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/
H A DRegularExpressionDxe.c50 @param Result On return, points to TRUE if String fully matches against
81 OUT BOOLEAN *Result,
152 *Result = TRUE;
154 *Result = FALSE;
167 if (*Result && Captures != NULL) {
287 @param Result On return, points to TRUE if String fully matches against
314 @retval EFI_INVALID_PARAMETER String, Pattern, Result, or CapturesCountis
325 OUT BOOLEAN *Result,
334 if (This == NULL || String == NULL || Pattern == NULL || Result == NULL || CapturesCount == NULL) {
356 Status = OnigurumaMatch (String, Pattern, SyntaxType, Result, Capture
77 OnigurumaMatch( IN CHAR16 *String, IN CHAR16 *Pattern, IN EFI_REGEX_SYNTAX_TYPE *SyntaxType, OUT BOOLEAN *Result, OUT EFI_REGEX_CAPTURE **Captures, OPTIONAL OUT UINTN *CapturesCount ) argument
320 RegularExpressionMatch( IN EFI_REGULAR_EXPRESSION_PROTOCOL *This, IN CHAR16 *String, IN CHAR16 *Pattern, IN EFI_REGEX_SYNTAX_TYPE *SyntaxType, OPTIONAL OUT BOOLEAN *Result, OUT EFI_REGEX_CAPTURE **Captures, OPTIONAL OUT UINTN *CapturesCount ) argument
[all...]
/device/linaro/bootloader/edk2/MdePkg/Library/BaseSynchronizationLib/
H A DSynchronizationGcc.c193 VOID *Result; local
201 Result = InterlockedCompareExchangePointer (
208 return (BOOLEAN) (Result == (VOID*) SPIN_LOCK_RELEASED);
H A DSynchronizationMsc.c195 VOID *Result; local
203 Result = InterlockedCompareExchangePointer (
210 return (BOOLEAN) (Result == (VOID*) SPIN_LOCK_RELEASED);

Completed in 323 milliseconds

12345