HomeSort by relevance Sort by last modified time
    Searched refs:Volatile (Results 1 - 25 of 100) sorted by null

1 2 3 4

  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/dcl.fct.def.default/
p2.cpp 11 struct Volatile {
12 Volatile(volatile Volatile&&) = default; // expected-error {{the parameter for an explicitly-defaulted move constructor may not be volatile}}
13 Volatile& operator=(volatile Volatile&&) = default; // expected-error {{the parameter for an explicitly-defaulted move assignment operator may not be volatile}}
25 ConstAssignment& operator=(ConstAssignment&&) const = default; // expected-error {{an explicitly-defaulted move assignment operator may not have 'const', 'constexpr' or 'volatile' qualifiers}
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLevel3CommandsLib/
Alias.c 36 BOOLEAN Volatile;
38 Volatile = FALSE;
57 Command = gEfiShellProtocol->GetAlias(Alias, &Volatile);
59 Volatile = FALSE;
61 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_ALIAS_OUTPUT), gShellLevel3HiiHandle, !Volatile?L' ':L'*', Alias, Command);
96 BOOLEAN Volatile;
173 ConstAliasVal = gEfiShellProtocol->GetAlias(Param1, &Volatile);
179 Volatile = FALSE;
181 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_ALIAS_OUTPUT), gShellLevel3HiiHandle, !Volatile?L' ':L'*', Param1, ConstAliasVal);
  /device/linaro/bootloader/edk2/SecurityPkg/VariableAuthenticated/EsalVariableDxeSal/
Variable.c 104 Reads/Writes variable storage, volatile or non-volatile.
106 This function reads or writes volatile or non-volatile variable stroage.
107 For volatile storage, it performs memory copy.
108 For non-volatile storage, it accesses data on firmware storage. Data
114 @param[in] Volatile TRUE - Variable is volatile.
115 FALSE - Variable is non-volatile.
130 IN BOOLEAN Volatile,
    [all...]
AuthService.c 100 Variable.Volatile,
111 Variable.Volatile,
165 Variable.Volatile,
511 Variable->Volatile,
540 PkVariable.Volatile,
644 Variable->Volatile,
673 KekVariable.Volatile,
793 Variable->Volatile,
Variable.h 86 BOOLEAN Volatile;
133 Initializes variable store area for non-volatile and volatile variable.
136 variable service and variable store area for non-volatile and volatile variable.
156 variable store for non-volatile and volatile variables, and registers
367 Finds variable in volatile and non-volatile storage areas.
369 This code finds variable in volatile and non-volatile storage areas.
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Ebl/
Variable.c 98 BOOLEAN Volatile = FALSE;
107 Volatile = 0;
134 ( !Volatile ? EFI_VARIABLE_NON_VOLATILE : 0) |
179 ( !Volatile ? EFI_VARIABLE_NON_VOLATILE : 0) |
201 " ; set UEFI variable\n\r [v]; create volatile variable",
  /device/linaro/bootloader/edk2/ShellPkg/Application/Shell/
ShellProtocol.h 306 already exists and is non-volatile then EFI_INVALID_PARAMETER is returned.
345 exists, is non-volatile and the OpenMode indicates EFI_FILE_MODE_WRITE, then
678 For a description of volatile and non-volatile environment variables, see UEFI Shell
684 @param Volatile Indicates whether the variable is non-volatile (FALSE) or volatile (TRUE).
693 IN BOOLEAN Volatile
814 @param[out] Volatile upon return of a single command if TRUE indicates
815 this is stored in a volatile fashion. FALSE otherwise.
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Application/VariableInfo/
VariableInfo.c 105 Print (L"Non-Volatile SMM Variables:\n");
127 if (!VariableInfo->Volatile) {
140 Print (L"Volatile SMM Variables:\n");
163 if (VariableInfo->Volatile) {
216 Print (L"Non-Volatile EFI Variables:\n");
219 if (!VariableInfo->Volatile) {
234 Print (L"Volatile EFI Variables:\n");
237 if (VariableInfo->Volatile) {
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Variable/EmuRuntimeDxe/
EmuVariable.c 3 Emulation Variable services operate on the runtime volatile memory.
64 Finds variable in storage blocks of volatile and non-volatile storage areas.
66 This code finds variable in storage blocks of volatile and non-volatile storage areas.
76 base of volatile variable storage area, base of
287 @param[in] Volatile TRUE if volatile FALSE if non-volatile
298 IN BOOLEAN Volatile,
    [all...]
Variable.h 56 BOOLEAN Volatile;
83 Initializes variable store area for non-volatile and volatile variable.
86 variable service and variable store area for non-volatile and volatile variable.
107 variable store for non-volatile and volatile variables, and registers
141 This code finds variable in storage blocks (Volatile or Non-Volatile).
201 This code sets variable in storage blocks (Volatile or Non-Volatile).
    [all...]
  /device/linaro/bootloader/edk2/DuetPkg/FSVariable/
FSVariable.c 297 IsVolatile The variable store is volatile or not,
298 if it is non-volatile, need FTW
325 // recaluate the total size of Common/HwErr type variables in non-volatile area.
439 This code finds variable in storage blocks (Volatile or Non-Volatile)
476 // 0: Non-Volatile, 1: Volatile
487 // Find the variable by walk through non-volatile and volatile variable store
894 // PlatformLangCodes is a volatile variable, so it can not be updated at runtime.
    [all...]
FSVariable.h 76 Volatile,
  /external/llvm/include/llvm/Analysis/
AliasSetTracker.h 153 /// True if this alias set contains volatile loads or stores.
154 unsigned Volatile : 1;
175 /// Return true if this alias set contains volatile loads or stores.
176 bool isVolatile() const { return Volatile; }
234 Access(NoAccess), Alias(SetMustAlias), Volatile(false) {
276 void setVolatile() { Volatile = true; }
  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
AliasSetTracker.h 140 // Volatile - True if this alias set contains volatile loads or stores.
141 bool Volatile : 1;
162 // isVolatile - Return true if this alias set contains volatile loads or
164 bool isVolatile() const { return Volatile; }
226 AccessTy(NoModRef), AliasTy(MustAlias), Volatile(false) {
265 void setVolatile() { Volatile = true; }
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Analysis/
AliasSetTracker.h 162 /// True if this alias set contains volatile loads or stores.
163 unsigned Volatile : 1;
187 /// Return true if this alias set contains volatile loads or stores.
188 bool isVolatile() const { return Volatile; }
249 Volatile(false), SetSize(0) {}
290 void setVolatile() { Volatile = true; }
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Analysis/
AliasSetTracker.h 162 /// True if this alias set contains volatile loads or stores.
163 unsigned Volatile : 1;
187 /// Return true if this alias set contains volatile loads or stores.
188 bool isVolatile() const { return Volatile; }
249 Volatile(false), SetSize(0) {}
290 void setVolatile() { Volatile = true; }
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Analysis/
AliasSetTracker.h 162 /// True if this alias set contains volatile loads or stores.
163 unsigned Volatile : 1;
187 /// Return true if this alias set contains volatile loads or stores.
188 bool isVolatile() const { return Volatile; }
249 Volatile(false), SetSize(0) {}
290 void setVolatile() { Volatile = true; }
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
AliasSetTracker.h 162 /// True if this alias set contains volatile loads or stores.
163 unsigned Volatile : 1;
187 /// Return true if this alias set contains volatile loads or stores.
188 bool isVolatile() const { return Volatile; }
249 Volatile(false), SetSize(0) {}
290 void setVolatile() { Volatile = true; }
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Analysis/
AliasSetTracker.h 162 /// True if this alias set contains volatile loads or stores.
163 unsigned Volatile : 1;
187 /// Return true if this alias set contains volatile loads or stores.
188 bool isVolatile() const { return Volatile; }
249 Volatile(false), SetSize(0) {}
290 void setVolatile() { Volatile = true; }
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Analysis/
AliasSetTracker.h 162 /// True if this alias set contains volatile loads or stores.
163 unsigned Volatile : 1;
187 /// Return true if this alias set contains volatile loads or stores.
188 bool isVolatile() const { return Volatile; }
249 Volatile(false), SetSize(0) {}
290 void setVolatile() { Volatile = true; }
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Analysis/
AliasSetTracker.h 162 /// True if this alias set contains volatile loads or stores.
163 unsigned Volatile : 1;
187 /// Return true if this alias set contains volatile loads or stores.
188 bool isVolatile() const { return Volatile; }
249 Volatile(false), SetSize(0) {}
290 void setVolatile() { Volatile = true; }
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
AliasSetTracker.h 162 /// True if this alias set contains volatile loads or stores.
163 unsigned Volatile : 1;
187 /// Return true if this alias set contains volatile loads or stores.
188 bool isVolatile() const { return Volatile; }
249 Volatile(false), SetSize(0) {}
290 void setVolatile() { Volatile = true; }
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Variable/RuntimeDxe/
Variable.c 127 @param[in] Volatile TRUE if volatile FALSE if non-volatile.
138 IN BOOLEAN Volatile,
166 gVariableInfo->Volatile = Volatile;
202 Entry->Next->Volatile = Volatile;
245 @param Volatile Point out the Variable is Volatile or Non-Volatile.
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Include/Protocol/
EfiShell.h 80 already exists and is non-volatile then EFI_INVALID_PARAMETER is returned.
663 exists, is non-volatile and the OpenMode indicates EFI_FILE_MODE_WRITE, then
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Include/Guid/
VariableFormat.h 223 BOOLEAN Volatile; ///< TRUE if volatile, FALSE if non-volatile.

Completed in 927 milliseconds

1 2 3 4