Searched refs:Num (Results 1 - 25 of 26) sorted by relevance

12

/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/Mtftp4Dxe/
H A DMtftp4Option.c83 UINT32 Num; local
87 Num = 0;
90 Num = Num * 10 + (*Str - '0');
93 return Num;
178 UINT8 Num; local
182 Num = 0;
206 Num++;
208 if ((Options != NULL) && (Num <= *Count)) {
209 Options[Num
319 UINT32 Num; local
[all...]
H A DMtftp4Support.c160 @param Num The block number to remove
161 @param Completed Whether Num is the last block number
172 IN UINT16 Num,
185 // skip to the first range with End >= Num
189 if (Range->End < Num) {
195 // 1. (Start > Num) && (End >= Num):
197 // End < Num, so this block number has been removed.
199 // 2. (Start == Num) && (End >= Num)
170 Mtftp4RemoveBlockNum( IN LIST_ENTRY *Head, IN UINT16 Num, IN BOOLEAN Completed, OUT UINT64 *TotalBlock ) argument
[all...]
H A DMtftp4Support.h94 @param Num The block number to remove
95 @param Completed Wether Num is the last block number
106 IN UINT16 Num,
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/Mtftp6Dxe/
H A DMtftp6Option.c45 UINT32 Num; local
100 Num = (UINT32) AsciiStrDecimalToUintn ((CHAR8 *) Str);
102 if (Num > 65535) {
106 ExtInfo->McastPort = (UINT16) Num;
122 Num = (UINT32) AsciiStrDecimalToUintn ((CHAR8 *) Str);
124 if (Num != 0 && Num != 1) {
128 ExtInfo->IsMaster = (BOOLEAN) (Num == 1);
270 UINT8 Num; local
274 Num
[all...]
H A DMtftp6Support.c160 @param[in] Num The block number to remove.
161 @param[in] Completed Whether Num is the last block number
172 IN UINT16 Num,
185 // skip to the first range with End >= Num
189 if (Range->End < Num) {
195 // 1. (Start > Num) && (End >= Num):
197 // End < Num, so this block number has been removed.
199 // 2. (Start == Num) && (End >= Num)
170 Mtftp6RemoveBlockNum( IN LIST_ENTRY *Head, IN UINT16 Num, IN BOOLEAN Completed, OUT UINT64 *TotalBlock ) argument
[all...]
H A DMtftp6Support.h98 @param[in] Num The block number to remove.
99 @param[in] Completed Whether Num is the last block number
110 IN UINT16 Num,
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/GenFds/
H A DAprioriSection.py101 for Num in range(2):
102 Char = GuidPart[3][Num*2:Num*2+2]
105 for Num in range(6):
106 Char = GuidPart[4][Num*2:Num*2+2]
H A DEfiSection.py117 Num = SecNum
118 OutputFile = os.path.join( OutputPath, ModuleName + 'SEC' + str(Num) + Ffs.SectionSuffix.get(SectionType))
127 Num = '%s.%d' %(SecNum , Index)
128 OutputFile = os.path.join(OutputPath, ModuleName + 'SEC' + Num + Ffs.SectionSuffix.get(SectionType))
155 Num = SecNum
156 OutputFile = os.path.join( OutputPath, ModuleName + 'SEC' + str(Num) + Ffs.SectionSuffix.get(SectionType))
173 Num = SecNum
174 OutputFile = os.path.join( OutputPath, ModuleName + 'SEC' + str(Num) + Ffs.SectionSuffix.get(SectionType))
182 Num = '%s.%d' %(SecNum , Index)
183 OutputFile = os.path.join(OutputPath, ModuleName + 'SEC' + Num
[all...]
H A DFvImageSection.py61 Num = SecNum
64 OutputFile = os.path.join(OutputPath, ModuleName + 'SEC' + Num + Ffs.SectionSuffix.get("FV_IMAGE"))
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/StdLib/
H A DMalloc.c95 /** The calloc function allocates space for an array of Num objects, each of
102 @param Num Number of objects to allocate.
110 calloc(size_t Num, size_t Size) argument
115 NumSize = Num * Size;
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/Ip4Dxe/
H A DIp4Output.c233 UINT32 Num; local
333 Num = (Packet->TotalSize + Mtu - 1) / Mtu;
340 PacketLen = Packet->TotalSize - (Num - 1) * Mtu;
341 Offset = Mtu * (Num - 1);
343 for (Index = 0; Index < Num - 1; Index++, Offset -= Mtu) {
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Universal/FirmwareVolume/UpdateDriverDxe/
H A DParseUpdateProfile.c948 UINTN Num; local
983 Num = UpdateAtoi((UINT8 *) Value);
984 if (Num <= 0) {
989 *NumOfUpdates = Num;
990 *UpdateArray = AllocatePool ((sizeof (UPDATE_CONFIG_DATA) * Num));
1035 Num = UpdateAtoi((UINT8 *) Value);
1036 if (( Num >= (UINTN) UpdateOperationMaximum)) {
1041 (*UpdateArray)[Index].UpdateType = (UPDATE_OPERATION_TYPE) Num;
1058 Num = AsciiStrHexToUintn ((CONST CHAR8 *) Value);
1059 (*UpdateArray)[Index].BaseAddress = (EFI_PHYSICAL_ADDRESS) Num;
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/
H A DSmbiosView.c456 UINTN Num; local
487 Num = SMBiosTable->NumberOfSmbiosStructures;
491 for (Index = 1; Index <= Num; Index++) {
H A DQueryTable.c3057 UINTN Num; \
3059 Num = sizeof (Table) / sizeof (TABLE_ITEM); \
3061 QueryTable (Table, Num, Key, Info, sizeof(Info)/sizeof(Info[0])); \
3067 UINTN Num; \
3068 Num = sizeof (Table) / sizeof (TABLE_ITEM); \
3069 PrintBitsInfo (Table, Num, (UINT32) bits); \
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/
H A Dstdlib.h53 void *calloc (size_t Num, size_t Size);
595 /** The calloc function allocates space for an array of Num objects, each of
598 @param[in] Num The number of objects to allocate space for.
605 void *calloc(size_t Num, size_t Size);
H A Dstring.h435 /** The strerror function maps the number in Num to a message string.
436 Typically, the values for Num come from errno, but strerror shall map
439 @param[in] Num A value to be converted to a message.
446 char *strerror(int Num);
H A Dmath.h132 /** Compute the value of the arc tangent of (Num / Denom).
135 @param[in] Num The numerator of the value to compute the arc tangent of.
138 @return The computed value of the arc tangent of (Num / Denom) in the interval [-pi,+pi] radians.
140 double atan2(double Num, double Denom);
H A Dstdio.h1245 /** Read Num elements of size Size from a Stream into a Buffer.
1247 The fread function reads, into the array pointed to by Buffer, up to Num
1258 @param[in] Num Number of elements to read.
1262 read, which may be less than Num if a read error or end-of-file
1263 is encountered. If Size or Num is zero, fread returns zero and
1269 size_t Num,
1273 /** Write Num elements of size Size from Buffer to Stream.
1275 The fwrite function writes, from the array pointed to by Buffer, up to Num
1286 @param[in] Num Number of elements to write.
1290 written, which will be less than Num onl
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/Ip6Dxe/
H A DIp6Output.c513 UINT32 Num; local
873 Num = (Packet->TotalSize + Mtu - 1) / Mtu;
875 for (Index = 0, Offset = 0, PacketLen = Mtu; Index < Num; Index++) {
887 if (Index == Num - 1){
921 if ((Index == Num -1) && (Context != NULL)) {
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellCommandLib/
H A DConsistMapping.c135 @param[in] Num The number to divide and append.
144 IN UINT64 Num
154 Result = DivU64x32Remainder (Num, 25, &Rem);
167 @param[in] Num The info to append.
176 IN UINT64 Num
184 CatPrint (&MappingItem->Csd, L"%ld", Num);
186 AppendCSDNum2 (&MappingItem->Csd, Num);
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/GenFw/
H A DElf64Convert.c193 UINT32 Num
196 if (Num >= mEhdr->e_shnum)
198 return (Elf_Shdr*)((UINT8*)mShdrBase + Num * mEhdr->e_shentsize);
H A DElf32Convert.c187 UINT32 Num
190 if (Num >= mEhdr->e_shnum)
192 return (Elf_Shdr*)((UINT8*)mShdrBase + Num * mEhdr->e_shentsize);
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/TargetTool/
H A DTargetTool.py97 def RWFile(self, CommentCharacter, KeySplitCharacter, Num):
116 if Num == 0:
/vbox/src/VBox/Runtime/testcase/
H A DtstRTBigNum.cpp195 RTBIGNUM Num; local
196 RTTESTI_CHECK_RC_RETV(RTBigNumInit(&Num, RTBIGNUMINIT_F_ENDIAN_LITTLE | RTBIGNUMINIT_F_SIGNED,
198 RTTESTI_CHECK(Num.fNegative == pBigNum->fNegative);
199 RTTESTI_CHECK(Num.cUsed == pBigNum->cUsed);
200 RTTESTI_CHECK(RTBigNumCompare(&Num, pBigNum) == 0);
201 RTTESTI_CHECK_RC(RTBigNumDestroy(&Num), VINF_SUCCESS);
203 RTTESTI_CHECK_RC_RETV(RTBigNumInit(&Num, RTBIGNUMINIT_F_ENDIAN_LITTLE | RTBIGNUMINIT_F_SIGNED | RTBIGNUMINIT_F_SENSITIVE,
205 RTTESTI_CHECK(Num.fNegative == pBigNum->fNegative);
206 RTTESTI_CHECK(Num.cUsed == pBigNum->cUsed);
207 RTTESTI_CHECK(RTBigNumCompare(&Num, pBigNu
[all...]
/vbox/src/VBox/Main/src-server/darwin/
H A Diokit.cpp1151 CFNumberRef Num = CFNumberCreate(kCFAllocatorDefault, kCFNumberSInt32Type, &i32);
1152 AssertBreak(Num);
1153 CFDictionarySetValue(RefMatchingDict, chValue == 'p' ? CFSTR(kUSBProductID) : CFSTR(kUSBVendorID), Num);
1154 CFRelease(Num);

Completed in 91 milliseconds

12