HomeSort by relevance Sort by last modified time
    Searched defs:ParamCount (Results 1 - 15 of 15) sorted by null

  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLevel3CommandsLib/
Echo.c 42 UINTN ParamCount;
100 for ( ParamCount = 1
101 ; ShellCommandLineGetRawValue(Package, ParamCount) != NULL
102 ; ParamCount++
104 StrnCatGrow(&PrintString, &Size, ShellCommandLineGetRawValue(Package, ParamCount), 0);
105 if (ShellCommandLineGetRawValue(Package, ParamCount+1) != NULL) {
Touch.c 177 UINTN ParamCount;
183 ParamCount = 0;
225 for ( ParamCount = 1, Param = ShellCommandLineGetRawValue(Package, ParamCount)
227 ; ParamCount++, Param = ShellCommandLineGetRawValue(Package, ParamCount)
Type.c 185 UINTN ParamCount;
193 ParamCount = 0;
241 for ( ParamCount = 1, Param = ShellCommandLineGetRawValue(Package, ParamCount)
243 ; ParamCount++, Param = ShellCommandLineGetRawValue(Package, ParamCount)
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLevel2CommandsLib/
Load.c 197 UINTN ParamCount;
236 for ( ParamCount = 1
237 ; ShellCommandLineGetRawValue(Package, ParamCount) != NULL
238 ; ParamCount++
240 Status = ShellOpenFileMetaArg((CHAR16*)ShellCommandLineGetRawValue(Package, ParamCount), EFI_FILE_MODE_READ, &ListHead);
264 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_FILE_NF), gShellLevel2HiiHandle, L"load", (CHAR16*)ShellCommandLineGetRawValue(Package, ParamCount));
Rm.c 276 UINTN ParamCount;
282 ParamCount = 0;
321 for ( ParamCount = 1, Param = ShellCommandLineGetRawValue(Package, ParamCount)
323 ; ParamCount++, Param = ShellCommandLineGetRawValue(Package, ParamCount)
Cp.c 644 UINTN ParamCount;
654 ParamCount = 0;
696 switch (ParamCount = ShellCommandLineGetCount(Package)) {
732 for (ParamCount--, LoopCounter = 1 ; LoopCounter < ParamCount && ShellStatus == SHELL_SUCCESS ; LoopCounter++) {
749 ShellStatus = ProcessValidateAndCopyFiles(FileList, PathCleanUpDirectories((CHAR16*)ShellCommandLineGetRawValue(Package, ParamCount)), SilentMode, RecursiveMode);
752 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_ERR_FILE), gShellLevel2HiiHandle, L"cp", ShellCommandLineGetRawValue(Package, ParamCount), ShellStatus|MAX_BIT);
Mv.c 672 UINTN ParamCount;
679 ParamCount = 0;
709 switch (ParamCount = ShellCommandLineGetCount(Package)) {
747 for (ParamCount--, LoopCounter = 1 ; LoopCounter < ParamCount ; LoopCounter++) {
761 ShellStatus = ValidateAndMoveFiles(FileList, &Response, ShellCommandLineGetRawValue(Package, ParamCount));
763 ValidateAndMoveFiles(FileList, &Response, ShellCommandLineGetRawValue(Package, ParamCount));
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/
LoadPciRom.c 82 UINTN ParamCount;
119 for ( ParamCount = 1, Param = ShellCommandLineGetRawValue(Package, ParamCount)
121 ; ParamCount++, Param = ShellCommandLineGetRawValue(Package, ParamCount)
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellTftpCommandLib/
Tftp.c 255 UINTN ParamCount;
312 ParamCount = ShellCommandLineGetCount (CheckPackage);
313 if (ParamCount > 4) {
320 if (ParamCount < 3) {
354 if (ParamCount == 4) {
  /frameworks/compile/slang/
slang_rs_reflection_state.cpp 262 const size_t ParamCount = EF->params_count();
284 foreach.mParams.BeginCollecting(ParamCount);
364 if (foreach.mParams.Size() != ParamCount) {
368 << Name << unsigned(foreach.mParams.Size()) << unsigned(ParamCount);
576 const size_t ParamCount = EF->getNumParameters();
582 invokable.mParamCount = ParamCount;
585 invokable.mParams = new llvm::StringRef[ParamCount];
622 if (invokable.mParamCount != ParamCount) {
626 << Name << unsigned(invokable.mParamCount) << unsigned(ParamCount);
    [all...]
  /prebuilts/go/darwin-x86/src/syscall/
mksyscall_windows.go 493 // ParamCount return number of syscall parameters for function f.
494 func (f *Fn) ParamCount() int {
505 n := f.ParamCount()
892 {{define "syscall"}}{{.Rets.SetReturnValuesCode}}{{.Syscall}}(proc{{.DLLFuncName}}.Addr(), {{.ParamCount}}, {{.SyscallParamList}}){{end}}
  /prebuilts/go/linux-x86/src/syscall/
mksyscall_windows.go 493 // ParamCount return number of syscall parameters for function f.
494 func (f *Fn) ParamCount() int {
505 n := f.ParamCount()
892 {{define "syscall"}}{{.Rets.SetReturnValuesCode}}{{.Syscall}}(proc{{.DLLFuncName}}.Addr(), {{.ParamCount}}, {{.SyscallParamList}}){{end}}
  /external/llvm/tools/llvm-c-test/
echo.cpp 90 unsigned ParamCount = LLVMCountParamTypes(Src);
92 if (ParamCount > 0) {
93 Params = (LLVMTypeRef*) malloc(ParamCount * sizeof(LLVMTypeRef));
95 for (unsigned i = 0; i < ParamCount; i++)
100 Params, ParamCount,
102 if (ParamCount > 0)
  /external/swiftshader/third_party/LLVM/lib/VMCore/
Core.cpp 266 LLVMTypeRef *ParamTypes, unsigned ParamCount,
268 ArrayRef<Type*> Tys(unwrap(ParamTypes), ParamCount);
    [all...]
  /external/llvm/lib/IR/
Core.cpp 480 LLVMTypeRef *ParamTypes, unsigned ParamCount,
482 ArrayRef<Type*> Tys(unwrap(ParamTypes), ParamCount);
    [all...]

Completed in 1007 milliseconds