HomeSort by relevance Sort by last modified time
    Searched defs:Value (Results 201 - 225 of 2048) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/llvm/include/llvm/MC/
SubtargetFeature.h 50 /// SubtargetFeatureKV - Used to provide key value pairs for feature and
56 FeatureBitset Value; // K-V integer value
72 /// SubtargetInfoKV - Used to provide key value pairs for CPU and arbitrary
77 const void *Value; // K-V pointer value
  /external/llvm/include/llvm/Support/
LEB128.h 22 /// Utility function to encode a SLEB128 value to an output stream.
23 inline void encodeSLEB128(int64_t Value, raw_ostream &OS) {
26 uint8_t Byte = Value & 0x7f;
28 Value >>= 7;
29 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) ||
30 ((Value == -1) && ((Byte & 0x40) != 0))));
37 /// Utility function to encode a ULEB128 value to an output stream.
38 inline void encodeULEB128(uint64_t Value, raw_ostream &OS,
41 uint8_t Byte = Value & 0x7f;
42 Value >>= 7
    [all...]
  /external/llvm/lib/DebugInfo/PDB/Raw/
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);
  /external/llvm/lib/Option/
Option.cpp 140 const char *Value = Args.getArgString(Index) + ArgSize;
141 return new Arg(UnaliasedOption, Spelling, Index++, Value);
155 char *Value = new char[Str - Prev + 1];
156 memcpy(Value, Prev, Str - Prev);
157 Value[Str - Prev] = '\0';
158 A->getValues().push_back(Value);
204 const char *Value = Args.getArgString(Index) + ArgSize;
205 return new Arg(*this, Spelling, Index++, Value);
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCMCExpr.cpp 57 MCValue Value;
59 if (!getSubExpr()->evaluateAsRelocatable(Value, nullptr, nullptr))
62 if (!Value.isAbsolute())
65 Res = evaluateAsInt64(Value.getConstant());
70 PPCMCExpr::evaluateAsInt64(int64_t Value) const {
73 return Value & 0xffff;
75 return (Value >> 16) & 0xffff;
77 return ((Value + 0x8000) >> 16) & 0xffff;
79 return (Value >> 32) & 0xffff;
81 return ((Value + 0x8000) >> 32) & 0xffff
    [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCExpand.cpp 31 #include "llvm/IR/Value.h"
113 Value *Value = cast<CallInst>(Inst)->getArgOperand(0);
115 " New = " << *Value << "\n");
116 Inst->replaceAllUsesWith(Value);
  /external/llvm/tools/llvm-pdbdump/
PdbYaml.cpp 44 uint8_t Value = (llvm::hexDigitValue(*Iter) << 4);
46 Value |= llvm::hexDigitValue(*Iter);
48 *OutBuffer++ = Value;
58 static void enumeration(IO &io, llvm::pdb::PDB_Machine &Value) {
59 io.enumCase(Value, "Invalid", PDB_Machine::Invalid);
60 io.enumCase(Value, "Am33", PDB_Machine::Am33);
61 io.enumCase(Value, "Amd64", PDB_Machine::Amd64);
62 io.enumCase(Value, "Arm", PDB_Machine::Arm);
63 io.enumCase(Value, "ArmNT", PDB_Machine::ArmNT);
64 io.enumCase(Value, "Ebc", PDB_Machine::Ebc)
    [all...]
  /external/llvm/tools/llvm-readobj/
ARMWinEHPrinter.h 30 uint8_t Value;
  /external/llvm/unittests/ADT/
FoldingSet.cpp 40 unsigned Value = 0;
41 TrivialPair(unsigned K, unsigned V) : FoldingSetNode(), Key(K), Value(V) {}
45 ID.AddInteger(Value);
PointerIntPairTest.cpp 76 uintptr_t Value;
81 return reinterpret_cast<void *>(Num.Value << NumLowBitsAvailable);
84 // In real code this would assert that the value is in range.
91 EXPECT_EQ((uintptr_t)0, pair.getPointer().Value);
95 EXPECT_EQ((uintptr_t)0x7FFFFFFF, pair.getPointer().Value);
SparseMultiSetTest.cpp 209 unsigned Value;
210 explicit Alt(unsigned x) : Value(x) {}
211 unsigned getSparseSetIndex() const { return Value - 1000; }
222 EXPECT_EQ(1005u, I->Value);
228 EXPECT_EQ(1006u, I->Value);
SparseSetTest.cpp 162 unsigned Value;
163 explicit Alt(unsigned x) : Value(x) {}
164 unsigned getSparseSetIndex() const { return Value - 1000; }
175 EXPECT_EQ(1005u, I->Value);
181 EXPECT_EQ(1006u, I->Value);
  /external/perf_data_converter/src/quipper/
perf_option_parser.cc 16 Boolean, // has no value
17 Value, // Uses another argument.
22 {"-e", OptionType::Value},
23 {"--event", OptionType::Value},
24 {"--filter", OptionType::Value},
25 {"-p", OptionType::Value},
26 {"--pid", OptionType::Value},
27 {"-t", OptionType::Value},
28 {"--tid", OptionType::Value},
29 {"-r", OptionType::Value},
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
PointerIntPair.h 42 intptr_t Value;
59 PointerIntPair() : Value(0) {}
60 PointerIntPair(PointerTy Ptr, IntType Int) : Value(0) {
69 reinterpret_cast<void*>(Value & PointerBitMask));
73 return (IntType)((Value >> IntShift) & IntMask);
82 Value = PtrVal | (Value & ~PointerBitMask);
90 Value &= ~ShiftedIntMask; // Remove integer field.
91 Value |= IntVal << IntShift; // Set new integer.
95 assert(Value == reinterpret_cast<intptr_t>(getPointer()) &
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/MC/
SubtargetFeature.h 31 /// SubtargetFeatureKV - Used to provide key value pairs for feature and
37 uint64_t Value; // K-V integer value
48 /// SubtargetInfoKV - Used to provide key value pairs for CPU and arbitrary
53 void *Value; // K-V pointer value
68 /// value is "generic" then the CPU subtype should be generic for the target.
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
LiveRangeCalc.h 16 // live, but don't know which value it has as every point. LiveRangeCalc will
43 /// LiveOutPair - A value and the block that defined it. The domtree node is
47 /// LiveOutMap - Map basic blocks to the value leaving the block.
51 /// live-out value and its defining block.
58 /// The live-out value is defined in MBB.
60 /// The live-out value passses through MBB. All predecessors must carry
61 /// the same value.
70 /// to be live-in, but the value has not yet been determined.
77 // Cleared when the final value has been determined and LI has been updated.
81 // range passes through the block. When the final value has bee
    [all...]
  /external/swiftshader/third_party/LLVM/lib/MC/
MCSymbol.cpp 16 // Sentinel value for the absolute pseudo section.
45 const MCExpr *Value = S->getVariableValue();
46 if (Value->getKind() != MCExpr::SymbolRef)
48 const MCSymbolRefExpr *Ref = static_cast<const MCSymbolRefExpr*>(Value);
54 void MCSymbol::setVariableValue(const MCExpr *Value) {
56 assert(Value && "Invalid variable value!");
57 assert((isUndefined() || (isAbsolute() && isa<MCConstantExpr>(Value))) &&
59 this->Value = Value;
    [all...]
  /external/swiftshader/third_party/LLVM/lib/TableGen/
TGParser.h 36 Init *Value;
40 : Name(N), Bits(B), Value(V), Loc(L) {
50 /// current value.
  /external/tensorflow/tensorflow/contrib/tensorrt/segment/
union_find.h 24 // Each cluster has an associated value; when merging clusters we can control
25 // which value becomes the representative of the merged clusters. Values must be
36 // Merges this cluster with 'other'. This cluster's value becomes
37 // the value of the merged cluster; the value of 'other' is ignored.
40 // Each cluster has an associated value. Retrieves the value associated
44 // Get the original value of this node.
45 T& Value() { return value_; }
  /external/v8/tools/clang/blink_gc_plugin/
NeedsTracing.h 5 // NeedsTracing is a three-point value ordered by unneeded < unknown < needed.
26 enum Value { kUnneeded, kUnknown, kNeeded };
27 NeedsTracing(Value value) : value_(value) {}
28 Value value_;
  /external/webrtc/talk/app/webrtc/java/src/org/webrtc/
StatsReport.java 33 /** Java version of webrtc::StatsReport::Value. */
34 public static class Value {
36 public final String value; field in class:StatsReport.Value
38 public Value(String name, String value) {
40 this.value = value;
45 builder.append("[").append(name).append(": ").append(value).append("]");
54 public final Value[] values;
56 public StatsReport(String id, String type, double timestamp, Value[] values)
    [all...]
  /hardware/google/av/media/sfplugin/
ReflectedParamUpdater.h 41 * Item => Codec 2.0 value mappings:
57 struct Value : public AData<C2Value, int32_t, int64_t, AString, sp<ABuffer>>::Basic {
59 Value() = default;
60 explicit Value(C2Value i) { set(i); }
61 explicit Value(int32_t i) { set(i); }
62 explicit Value(int64_t i) { set(i); }
63 explicit Value(const AString &i) { set(i); }
64 explicit Value(const sp<ABuffer> &i) { set(i); }
67 struct Dict : public std::map<std::string, Value> {
88 * or may not be listed as a supported value by the component). If the parameter name i
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
Sequence.h 32 ValueT Value;
41 : Value(std::move(Arg.Value)) {}
44 value_sequence_iterator(U &&Value) : Value(std::forward<U>(Value)) {}
47 Value += N;
51 Value -= N;
56 return Value - RHS.Value;
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/DWARF/
DWARFAttribute.h 20 /// Encapsulates a DWARF attribute value and all of the data required to
21 /// describe the attribute value.
32 /// The form and value for this attribute.
33 DWARFFormValue Value;
36 dwarf::Form F = dwarf::Form(0)) : Attr(A), Value(F) {}
50 Value = DWARFFormValue();
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/MC/
ConstantPools.h 34 : Label(L), Value(Val), Size(Sz), Loc(Loc_) {}
37 const MCExpr *Value;
54 // \param Value is the new entry to put in the constant pool.
57 // \returns a MCExpr that references the newly inserted value
58 const MCExpr *addEntry(const MCExpr *Value, MCContext &Context,
71 // constant pool is a vector of (label, value) pairs. When the ldr
72 // pseudo is parsed we insert a new (label, value) pair into the constant pool
75 // output the (label, value) pairs in each constant pool at the end of the

Completed in 441 milliseconds

1 2 3 4 5 6 7 891011>>