HomeSort by: relevance | last modified time | path
    Searched defs:Value (Results 1 - 25 of 431) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/apache2/llvm/dist/llvm/lib/Support/
InstructionCost.cpp 21 OS << Value;
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
PointerEmbeddedInt.h 28 /// Note that much like pointers, an integer value of zero has special utility
29 /// due to boolean conversions. For example, a non-null value can be tested for
31 /// Also, the default constructed value zero initializes the integer.
34 uintptr_t Value = 0;
42 // We shift as many zeros into the value as we can while preserving the
56 explicit PointerEmbeddedInt(uintptr_t Value, RawValueTag) : Value(Value) {}
64 assert((std::is_signed<IntT>::value ? isInt<Bits>(I) : isUInt<Bits>(I)) &&
66 Value = static_cast<uintptr_t>(I) << Shift
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/
PDBSymbolCompilandEnv.cpp 21 Variant Value = RawSymbol->getValue();
22 if (Value.Type != PDB_VariantType::String)
24 return std::string(Value.Value.String);
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/
PDBExtras.h 25 raw_ostream &operator<<(raw_ostream &OS, const PDB_VariantType &Value);
40 raw_ostream &operator<<(raw_ostream &OS, const Variant &Value);
47 void dumpSymbolField(raw_ostream &OS, StringRef Name, T Value, int Indent) {
50 OS << Name << ": " << Value;
  /src/sys/external/bsd/acpica/dist/executer/
exdebug.c 85 UINT32 Value;
122 * We will emit the current timer value (in microseconds) with each
191 (UINT32) SourceDesc->Integer.Value);
196 ACPI_FORMAT_UINT64 (SourceDesc->Integer.Value));
237 AcpiOsPrintf ("0x%X\n", SourceDesc->Reference.Value);
244 AcpiOsPrintf ("Table Index 0x%X\n", SourceDesc->Reference.Value);
303 Value = SourceDesc->Reference.Value;
310 Value, *SourceDesc->Reference.IndexPointer);
316 Value, *SourceDesc->Reference.IndexPointer
    [all...]
exoparg2.c 61 * and whether or not a value is returned:
71 * zR - RETURN VALUE: Indicates whether this opcode type returns a value
88 * value.
100 UINT32 Value;
118 /* Second value is the notify value */
120 Value = (UINT32) Operand[1]->Integer.Value;
141 Status = AcpiEvQueueNotifyRequest (Node, Value);
    [all...]
exstore.c 74 * PARAMETERS: *SourceDesc - Value to be stored
82 * DESCRIPTION: Store the value described by SourceDesc into the location
188 RefDesc->Reference.Value, SourceDesc, WalkState);
193 * Storing to the Debug object causes the value stored to be
221 * PARAMETERS: *SourceDesc - Value to be stored
222 * *DestDesc - Named object to receive the value
240 UINT8 Value = 0;
344 Value = (UINT8) (SourceDesc->Integer.Value);
352 Value = SourceDesc->Buffer.Pointer[0]
    [all...]
  /src/sys/external/bsd/acpica/dist/hardware/
hwacpi.c 183 UINT32 Value;
205 Status = AcpiReadBitRegister (ACPI_BITREG_SCI_ENABLE, &Value);
211 if (Value)
  /src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
ubsan_value.cc 10 // Representation of a runtime value, as marshaled from the generated code to
23 SIntMax Value::getSIntValue() const {
44 UIntMax Value::getUIntValue() const {
60 UIntMax Value::getPositiveIntValue() const {
68 /// Get the floating-point value of this object, extended to a long double.
71 FloatMax Value::getFloatValue() const {
79 __fp16 Value;
80 internal_memcpy(&Value, &Val, 4);
81 return Value;
85 float Value;
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/Refactoring/
RefactoringOptions.h 22 /// A refactoring option that stores a value of type \c T.
24 typename = std::enable_if_t<traits::IsValidOptionType<T>::value>>
28 Visitor.visit(*this, Value);
35 const ValueType &getValue() const { return Value; }
38 Optional<T> Value;
41 /// A required refactoring option that stores a value of type \c T.
43 typename = std::enable_if_t<traits::IsValidOptionType<T>::value>>
49 return *OptionalRefactoringOption<T>::Value;
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/MCTargetDesc/
MipsOptionRecord.cpp 34 // The EntrySize value of 1 seems strange since the records are neither
35 // 1-byte long nor fixed length but it matches the value GAS emits.
75 unsigned Value = 0;
79 Value |= 1 << EncVal;
82 ri_gprmask |= Value;
84 ri_cprmask[0] |= Value;
90 ri_cprmask[1] |= Value;
92 ri_cprmask[2] |= Value;
94 ri_cprmask[3] |= Value;
  /src/common/dist/zlib/contrib/dotzlib/DotZLib/
ChecksumImpl.cs 23 /// The value of the current checksum
37 /// Initializes a new instance of the checksum generator base with a specified value
39 /// <param name="initialValue">The value to set the current checksum to</param>
51 /// Gets the current checksum value
53 public uint Value { get { return _current; } }
119 /// Initializes a new instance of the CRC32 checksum generator with a specified value
121 /// <param name="initialValue">The value to set the current checksum to</param>
170 /// Initializes a new instance of the Adler checksum generator with a specified value
172 /// <param name="initialValue">The value to set the current checksum to</param>
  /src/sys/external/bsd/acpica/dist/events/
evxfevnt.c 195 UINT32 Value;
230 AcpiGbl_FixedEventInfo[Event].EnableRegisterId, &Value);
236 if (Value != 1)
268 UINT32 Value;
301 AcpiGbl_FixedEventInfo[Event].EnableRegisterId, &Value);
307 if (Value != 0)
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
MacroBuilder.h 28 /// Append a \#define line for macro of the form "\#define Name Value\n".
29 void defineMacro(const Twine &Name, const Twine &Value = "1") {
30 Out << "#define " << Name << ' ' << Value << '\n';
  /src/external/apache2/llvm/dist/libcxx/include/__support/ibm/
gettod_zos.h 25 struct _t Value = {0, 0};
30 : "=m"(Value), "+r"(CC)::);
36 uint64_t us = (Value.Hi >> 4);
37 uint64_t ns = ((Value.Hi & 0x0F) << 8) + (Value.Lo >> 56);
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/
DWARFAttribute.h 19 /// Encapsulates a DWARF attribute value and all of the data required to
20 /// describe the attribute value.
31 /// The form and value for this attribute.
32 DWARFFormValue Value;
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
ConstantPools.h 33 : Label(L), Value(Val), Size(Sz), Loc(Loc_) {}
36 const MCExpr *Value;
53 // \param Value is the new entry to put in the constant pool.
56 // \returns a MCExpr that references the newly inserted value
57 const MCExpr *addEntry(const MCExpr *Value, MCContext &Context,
72 // constant pool is a vector of (label, value) pairs. When the ldr
73 // pseudo is parsed we insert a new (label, value) pair into the constant pool
76 // output the (label, value) pairs in each constant pool at the end of the
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/DIA/
DIAFrameData.cpp 22 ArgType Value;
23 if (S_OK == (FrameData->*Method)(&Value))
24 return static_cast<ArgType>(Value);
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
Hash.cpp 27 for (auto Value : Longs)
28 Result ^= Value;
36 uint16_t Value = *reinterpret_cast<const ulittle16_t *>(Remainder);
37 Result ^= static_cast<uint32_t>(Value);
  /src/external/gpl3/binutils/dist/zlib/contrib/dotzlib/DotZLib/
ChecksumImpl.cs 23 /// The value of the current checksum
37 /// Initializes a new instance of the checksum generator base with a specified value
39 /// <param name="initialValue">The value to set the current checksum to</param>
51 /// Gets the current checksum value
53 public uint Value { get { return _current; } }
119 /// Initializes a new instance of the CRC32 checksum generator with a specified value
121 /// <param name="initialValue">The value to set the current checksum to</param>
170 /// Initializes a new instance of the Adler checksum generator with a specified value
172 /// <param name="initialValue">The value to set the current checksum to</param>
  /src/external/gpl3/binutils.old/dist/zlib/contrib/dotzlib/DotZLib/
ChecksumImpl.cs 23 /// The value of the current checksum
37 /// Initializes a new instance of the checksum generator basewith a specified value
39 /// <param name="initialValue">The value to set the current checksum to</param>
51 /// Gets the current checksum value
53 public uint Value { get { return _current; } }
119 /// Initializes a new instance of the CRC32 checksum generator with a specified value
121 /// <param name="initialValue">The value to set the current checksum to</param>
170 /// Initializes a new instance of the Adler checksum generator with a specified value
172 /// <param name="initialValue">The value to set the current checksum to</param>
  /src/external/gpl3/gdb.old/dist/zlib/contrib/dotzlib/DotZLib/
ChecksumImpl.cs 23 /// The value of the current checksum
37 /// Initializes a new instance of the checksum generator basewith a specified value
39 /// <param name="initialValue">The value to set the current checksum to</param>
51 /// Gets the current checksum value
53 public uint Value { get { return _current; } }
119 /// Initializes a new instance of the CRC32 checksum generator with a specified value
121 /// <param name="initialValue">The value to set the current checksum to</param>
170 /// Initializes a new instance of the Adler checksum generator with a specified value
172 /// <param name="initialValue">The value to set the current checksum to</param>
  /src/external/gpl3/gdb/dist/zlib/contrib/dotzlib/DotZLib/
ChecksumImpl.cs 23 /// The value of the current checksum
37 /// Initializes a new instance of the checksum generator base with a specified value
39 /// <param name="initialValue">The value to set the current checksum to</param>
51 /// Gets the current checksum value
53 public uint Value { get { return _current; } }
119 /// Initializes a new instance of the CRC32 checksum generator with a specified value
121 /// <param name="initialValue">The value to set the current checksum to</param>
170 /// Initializes a new instance of the Adler checksum generator with a specified value
172 /// <param name="initialValue">The value to set the current checksum to</param>
  /src/sys/external/bsd/acpica/dist/compiler/
aslpld.c 96 UINT32 Value;
121 Value = (UINT32) ThisOp->Asl.Child->Asl.Value.Integer;
133 if (Value > 127)
139 PldInfo.Revision = (UINT8) Value;
150 if (Value > 1)
156 PldInfo.IgnoreColor = (UINT8) Value;
169 if (Value > 255)
177 PldInfo.Red = (UINT8) Value;
181 PldInfo.Green = (UINT8) Value;
    [all...]
prexpress.c 174 * RETURN: 64-bit boolean integer value
184 UINT64 Value;
191 Value = 0; /* Default is "Not defined" -- FALSE */
196 Value = ACPI_UINT64_MAX; /* TRUE */
201 AslGbl_CurrentLineNumber, Identifier, ACPI_FORMAT_UINT64 (Value));
203 return (Value);
213 * RETURN: A 64-bit boolean integer value
223 UINT64 Value;
230 Value = 0; /* Default is "Not defined" -- FALSE */
235 Value = ACPI_UINT64_MAX; /* TRUE *
    [all...]

Completed in 65 milliseconds

1 2 3 4 5 6 7 8 91011>>