Searched refs:Val (Results 1 - 25 of 38) sorted by relevance

12

/vbox/src/VBox/Runtime/testcase/
H A DtstRTGetOpt.cpp47 RTGETOPTUNION Val; local
58 CHECK2(Val.pDef == &(paOpts)[(i)], ("Got #%d (%p) expected #%d\n", (int)(Val.pDef - &(paOpts)[0]), Val.pDef, i));
75 CHECK2(VALID_PTR(Val.psz) && !strcmp(Val.psz, (str)), ("got %s, expected %s\n", Val.psz, (str))); \
197 CHECK_GETOPT(RTGetOpt(&GetState, &Val), 's', 2);
198 CHECK(VALID_PTR(Val.psz) && !strcmp(Val
[all...]
/vbox/src/VBox/HostDrivers/Support/testcase/
H A DSUPLoggerCtl.cpp91 RTGETOPTUNION Val; local
94 while ((ch = RTGetOpt(&GetState, &Val)))
99 pszFlags = Val.psz;
103 pszGroups = Val.psz;
107 pszDest = Val.psz;
111 if (!strcmp(Val.psz, "set"))
113 else if (!strcmp(Val.psz, "create"))
115 else if (!strcmp(Val.psz, "destroy"))
119 RTStrmPrintf(g_pStdErr, "SUPLoggerCtl: error: Unknown operation '%s'.\n", Val.psz);
125 if (!strcmp(Val
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Video/mp/xpdm/
H A DVBoxMPRegistry.cpp50 VP_STATUS VBoxMPCmnRegSetDword(IN VBOXMPCMNREGISTRY Reg, PWSTR pName, uint32_t Val) argument
52 return VideoPortSetRegistryParameters(Reg, pName, &Val, sizeof(Val));
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Application/Shell/
H A DShellEnvVar.c116 if (Node->Val != NULL) {
117 FreePool(Node->Val);
181 Status = SHELL_GET_ENVIRONMENT_VARIABLE_AND_ATTRIBUTES(VariableName, &VarList->Atts, &ValSize, VarList->Val);
183 VarList->Val = AllocateZeroPool(ValSize);
184 if (VarList->Val == NULL) {
188 Status = SHELL_GET_ENVIRONMENT_VARIABLE_AND_ATTRIBUTES(VariableName, &VarList->Atts, &ValSize, VarList->Val);
194 SHELL_FREE_NON_NULL(VarList->Val);
264 Size = StrSize(Node->Val);
266 Status = SHELL_SET_ENVIRONMENT_VARIABLE_NV(Node->Key, Size, Node->Val);
268 Status = SHELL_SET_ENVIRONMENT_VARIABLE_V (Node->Key, Size, Node->Val);
[all...]
H A DShellEnvVar.h26 CHAR16 *Val; member in struct:__anon12755
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Common/
H A DExpression.py200 Val = eval(EvalStr, {}, Dict)
205 if Val:
206 Val = True
208 Val = False
211 WrnExp.result = Val
213 return Val
269 Val = self._OrExpr()
270 RealVal = Val
271 if type(Val) == type(''):
272 if Val
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/GenFw/
H A DElfConvert.h71 UINT16 Val
H A DElfConvert.c66 UINT16 Val
69 *mCoffEntryRel = Val;
/vbox/src/VBox/Additions/WINNT/Graphics/Video/mp/wddm/
H A DVBoxMPRegistry.cpp67 VP_STATUS VBoxMPCmnRegSetDword(IN VBOXMPCMNREGISTRY Reg, PWSTR pName, uint32_t Val) argument
74 NTSTATUS Status = vboxWddmRegSetValueDword(Reg, pName, Val);
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseUefiDecompressLib/
H A DBaseUefiDecompressLib.c275 UINT16 Val; local
279 Val = Sd->mPTTable[Sd->mBitBuf >> (BITBUFSIZ - 8)];
281 if (Val >= MAXNP) {
287 Val = Sd->mRight[Val];
289 Val = Sd->mLeft[Val];
293 } while (Val >= MAXNP);
298 FillBuf (Sd, Sd->mPTLen[Val]);
300 Pos = Val;
[all...]
/vbox/src/VBox/HostServices/SharedOpenGL/OpenGLTest/
H A DOpenGLTestApp.cpp251 RTGETOPTUNION Val; local
252 rc = RTGetOpt(&State, &Val);
259 if (!strcmp(Val.psz, "3D") || !strcmp(Val.psz, "3d"))
267 if (!strcmp(Val.psz, "2D") || !strcmp(Val.psz, "2d"))
279 pLog = Val.psz;
314 /* complain? RTGetOptPrintError(rc, &Val); */
/vbox/src/VBox/NetworkServices/NetLib/
H A DVBoxNetBaseService.cpp263 RTGETOPTUNION Val; local
264 rc = RTGetOpt(&State, &Val);
270 m->m_Name = Val.psz;
274 m->m_Network = Val.psz;
278 m->m_TrunkName = Val.psz;
282 if (!strcmp(Val.psz, "none"))
284 else if (!strcmp(Val.psz, "whatever"))
286 else if (!strcmp(Val.psz, "netflt"))
288 else if (!strcmp(Val.psz, "netadp"))
290 else if (!strcmp(Val
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Library/BaseUefiTianoCustomDecompressLib/
H A DBaseUefiTianoCustomDecompressLib.c265 UINT16 Val; local
269 Val = Sd->mPTTable[Sd->mBitBuf >> (BITBUFSIZ - 8)];
271 if (Val >= MAXNP) {
277 Val = Sd->mRight[Val];
279 Val = Sd->mLeft[Val];
283 } while (Val >= MAXNP);
288 FillBuf (Sd, Sd->mPTLen[Val]);
290 Pos = Val;
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/Common/
H A DDecompress.c317 UINT16 Val; local
321 Val = Sd->mPTTable[Sd->mBitBuf >> (BITBUFSIZ - 8)];
323 if (Val >= MAXNP) {
329 Val = Sd->mRight[Val];
331 Val = Sd->mLeft[Val];
335 } while (Val >= MAXNP);
340 FillBuf (Sd, Sd->mPTLen[Val]);
342 Pos = Val;
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/VBoxPkg/VBoxAppleSim/
H A DCpu.c78 CopyRecord(MAGIC_HUB_DATA* Rec, const CHAR16* Name, VOID* Val, UINT32 ValLen) argument
83 CopyMem(Rec->Data + Rec->NameLen, Val, ValLen);
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/TcpDxe/
H A DTcpFunc.h21 #define TCP_COMP_VAL(Min, Max, Default, Val) \
22 ((((Val) <= (Max)) && ((Val) >= (Min))) ? (Val) : (Default))
/vbox/src/VBox/Additions/WINNT/Graphics/Video/mp/common/
H A DVBoxMPCommon.h50 VP_STATUS VBoxMPCmnRegSetDword(IN VBOXMPCMNREGISTRY Reg, PWSTR pName, uint32_t Val);
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Dbits.idl255 [in] LPCWSTR Val
263 [in] LPCWSTR Val
271 [in] BG_JOB_PRIORITY Val
279 [in] ULONG Val
287 [in] IUnknown *Val
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/
H A Dbits.idl255 [in] LPCWSTR Val
263 [in] LPCWSTR Val
271 [in] BG_JOB_PRIORITY Val
279 [in] ULONG Val
287 [in] IUnknown *Val
/vbox/src/VBox/VMM/testcase/
H A DtstCompressionBenchmark.cpp255 RTGETOPTUNION Val; local
260 while ((rc = RTGetOpt(&State, &Val)))
265 g_cPages = Val.u32;
273 cIterations = Val.u32;
279 cPagesAtATime = Val.u32;
285 pszPageFile = Val.psz;
289 offPageFile = Val.u64;
293 offPageFile = Val.u64 * PAGE_SIZE;
320 return RTGetOptPrintError(rc, &Val);
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDebug1CommandsLib/
H A DUefiShellDebug1CommandsLib.c158 CHAR8 Val[50]; local
175 Val[Index * 3 + 0] = Hex[TempByte >> 4];
176 Val[Index * 3 + 1] = Hex[TempByte & 0xF];
177 Val[Index * 3 + 2] = (CHAR8) ((Index == 7) ? '-' : ' ');
181 Val[Index * 3] = 0;
183 ShellPrintEx(-1, -1, L"%*a%02X: %-.48a *%a*\r\n", Indent, "", Offset, Val, Str);
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/Tcp4Dxe/
H A DTcp4Dispatcher.c17 #define TCP_COMP_VAL(Min, Max, Default, Val) \
18 ((((Val) <= (Max)) && ((Val) >= (Min))) ? (Val) : (Default))
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/Xml/
H A DIniToXml.py102 Val = Attr[1].strip()
106 if Key == 'OS' and Val not in ["Win32", "Win64", "Linux32",
110 elif Key == 'Executable' and Val not in ['true', 'false']:
112 FileList[1][Key] = Val
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/TianoCompress/
H A DTianoCompress.c2276 UINT16 Val; local
2280 Val = Sd->mPTTable[Sd->mBitBuf >> (BITBUFSIZ - 8)];
2282 if (Val >= MAXNP) {
2288 Val = Sd->mRight[Val];
2290 Val = Sd->mLeft[Val];
2294 } while (Val >= MAXNP);
2299 FillBuf (Sd, Sd->mPTLen[Val]);
2301 Pos = Val;
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/
H A DVfrSyntax.g1457 EFI_IFR_TYPE_VALUE Val = gZeroEfiIfrTypeValue;
1467 | "=" vfrConstantValueField[_GET_CURRQEST_DATATYPE()] > [Val] "," <<
1470 if (Val.u64 < gCurrentMinMaxData->GetMinData(_GET_CURRQEST_DATATYPE()) || Val.u64 > gCurrentMinMaxData->GetMaxData(_GET_CURRQEST_DATATYPE())) {
1475 DObj.SetValue(Val);
1490 Val),
1824 EFI_IFR_TYPE_VALUE Val = gZeroEfiIfrTypeValue;
1842 Val.b = TRUE;
1850 Val
1864 Val
[all...]

Completed in 138 milliseconds

12