| /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...] |
| Any.h | 11 // It can hold a value of any copy-constructible copy-assignable type 41 explicit StorageImpl(const T &Value) : Value(Value) {} 43 explicit StorageImpl(T &&Value) : Value(std::move(Value)) {} 46 return std::make_unique<StorageImpl<T>>(Value); 51 T Value; 82 std::is_copy_constructible<std::decay_t<T>>>::value, [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/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/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...] |
| /src/sys/external/bsd/acpica/dist/hardware/ |
| hwacpi.c | 183 UINT32 Value; 205 Status = AcpiReadBitRegister (ACPI_BITREG_SCI_ENABLE, &Value); 211 if (Value)
|
| /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/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/usr.sbin/ypserv/yptest/ |
| yptest.c | 51 char *Domain, *Value, *Key2; 71 Status = yp_match(Domain, Map, Key, KeyLen, &Value, &ValLen); 73 printf("%*.*s\n", ValLen, ValLen, Value); 78 Status = yp_first(Domain, Map, &Key2, &KeyLen, &Value, &ValLen); 81 Value); 88 &KeyLen, &Value, &ValLen); 91 ValLen, ValLen, Value);
|
| /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/ |
| MipsLinux.cpp | 86 StringRef Value = A->getValue(); 87 if (Value != "libc++")
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/JITLink/ |
| x86_64.h | 27 /// A plain 64-bit pointer value relocation. 34 /// A plain 32-bit pointer value relocation. 249 /// Returns true if the given uint64_t value is in range for a uint32_t. 250 inline bool isInRangeForImmU32(uint64_t Value) { 251 return Value <= std::numeric_limits<uint32_t>::max(); 254 /// Returns true if the given int64_t value is in range for an int32_t. 255 inline bool isInRangeForImmS32(int64_t Value) { 256 return (Value >= std::numeric_limits<int32_t>::min() && 257 Value <= std::numeric_limits<int32_t>::max()); 271 uint64_t Value = E.getTarget().getAddress() + E.getAddend() [all...] |