Searched defs:Value (Results 101 - 125 of 799) sorted by relevance

1234567891011>>

/external/llvm/lib/MC/
H A DConstantPools.cpp31 Streamer.EmitValue(Entry.Value, Entry.Size, Entry.Loc);
37 const MCExpr *ConstantPool::addEntry(const MCExpr *Value, MCContext &Context, argument
41 Entries.push_back(ConstantPoolEntry(CPEntryLabel, Value, Size, Loc));
H A DMCInstPrinter.cpp69 static bool needsLeadingZero(uint64_t Value) argument
71 while(Value)
73 uint64_t digit = (Value >> 60) & 0xf;
76 Value <<= 4;
81 format_object<int64_t> MCInstPrinter::formatDec(int64_t Value) const {
82 return format("%" PRId64, Value);
85 format_object<int64_t> MCInstPrinter::formatHex(int64_t Value) const {
88 if (Value < 0)
89 return format("-0x%" PRIx64, -Value);
91 return format("0x%" PRIx64, Value);
[all...]
H A DMCSymbol.cpp43 void MCSymbol::setVariableValue(const MCExpr *Value) { argument
45 assert(Value && "Invalid variable value!");
49 this->Value = Value;
/external/llvm/lib/Target/BPF/MCTargetDesc/
H A DBPFAsmBackend.cpp35 uint64_t Value, bool IsPCRel) const override;
40 bool fixupNeedsRelaxation(const MCFixup &Fixup, uint64_t Value,
67 unsigned DataSize, uint64_t Value,
71 assert(Value == 0);
77 Data[Fixup.getOffset() + Idx] = uint8_t(Value >> (i * 8));
81 Value = (uint16_t)((Value - 8) / 8);
83 Data[Fixup.getOffset() + 2] = Value & 0xFF;
84 Data[Fixup.getOffset() + 3] = Value >> 8;
86 Data[Fixup.getOffset() + 2] = Value >>
66 applyFixup(const MCFixup &Fixup, char *Data, unsigned DataSize, uint64_t Value, bool IsPCRel) const argument
[all...]
/external/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCMCExpr.cpp57 MCValue Value; local
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
96 MCValue Value; local
[all...]
/external/llvm/lib/Target/Sparc/MCTargetDesc/
H A DSparcAsmBackend.cpp22 static unsigned adjustFixupValue(unsigned Kind, uint64_t Value) { argument
30 return Value;
34 return (Value >> 2) & 0x3fffffff;
37 return (Value >> 2) & 0x3fffff;
40 return (Value >> 2) & 0x7ffff;
43 return (Value >> 2) & 0xc000;
46 return (Value >> 2) & 0x3fff;
54 return (Value >> 10) & 0x3fffff;
62 return Value & 0x3ff;
66 return (~Value >> 1
[all...]
/external/llvm/lib/Target/WebAssembly/MCTargetDesc/
H A DWebAssemblyAsmBackend.cpp39 uint64_t Value, bool IsPCRel) const override;
44 bool fixupNeedsRelaxation(const MCFixup &Fixup, uint64_t Value,
74 unsigned DataSize, uint64_t Value,
80 if (Value == 0)
84 Value <<= Info.TargetOffset;
92 Data[Offset + i] |= uint8_t((Value >> (i * 8)) & 0xff);
73 applyFixup(const MCFixup &Fixup, char *Data, unsigned DataSize, uint64_t Value, bool IsPCRel) const argument
/external/llvm/tools/llvm-pdbdump/
H A DPdbYaml.cpp44 uint8_t Value = (llvm::hexDigitValue(*Iter) << 4); local
46 Value |= llvm::hexDigitValue(*Iter);
48 *OutBuffer++ = Value;
58 static void enumeration(IO &io, llvm::pdb::PDB_Machine &Value) { argument
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, "Eb
81 enumeration(IO &io, llvm::pdb::PdbRaw_DbiVer &Value) argument
91 enumeration(IO &io, llvm::pdb::PdbRaw_ImplVer &Value) argument
[all...]
/external/llvm/unittests/ADT/
H A DFoldingSet.cpp40 unsigned Value = 0; member in struct:__anon13693::TrivialPair
41 TrivialPair(unsigned K, unsigned V) : FoldingSetNode(), Key(K), Value(V) {}
45 ID.AddInteger(Value);
H A DPointerIntPairTest.cpp76 uintptr_t Value; member in struct:__anon13706::Fixnum31
81 return reinterpret_cast<void *>(Num.Value << NumLowBitsAvailable);
91 EXPECT_EQ((uintptr_t)0, pair.getPointer().Value);
95 EXPECT_EQ((uintptr_t)0x7FFFFFFF, pair.getPointer().Value);
/external/pdfium/xfa/fde/css/
H A Dcfde_cssnumbervalue.h31 FX_FLOAT Value() const { return value_; } function in class:CFDE_CSSNumberValue
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
H A DInMemoryStruct.h43 InMemoryStruct(reference Value) : Target(&Contents), Contents(Value) {} argument
44 InMemoryStruct(pointer Value) : Target(Value) {} argument
45 InMemoryStruct(const InMemoryStruct<T> &Value) { *this = Value; } argument
47 void operator=(const InMemoryStruct<T> &Value) { argument
48 if (Value.Target != &Value.Contents) {
49 Target = Value
[all...]
H A DPointerIntPair.h42 intptr_t Value; member in class:llvm::PointerIntPair
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
[all...]
H A DStringSwitch.h55 StringSwitch& Case(const char (&S)[N], const T& Value) { argument
58 Result = &Value;
65 StringSwitch& EndsWith(const char (&S)[N], const T &Value) { argument
68 Result = &Value;
75 StringSwitch& StartsWith(const char (&S)[N], const T &Value) { argument
78 Result = &Value;
86 const T& Value) {
87 return Case(S0, Value).Case(S1, Value);
92 const char (&S2)[N2], const T& Value) {
85 Cases(const char (&S0)[N0], const char (&S1)[N1], const T& Value) argument
91 Cases(const char (&S0)[N0], const char (&S1)[N1], const char (&S2)[N2], const T& Value) argument
97 Cases(const char (&S0)[N0], const char (&S1)[N1], const char (&S2)[N2], const char (&S3)[N3], const T& Value) argument
104 Cases(const char (&S0)[N0], const char (&S1)[N1], const char (&S2)[N2], const char (&S3)[N3], const char (&S4)[N4], const T& Value) argument
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/MC/
H A DMCTargetAsmParser.h49 void setAvailableFeatures(unsigned Value) { AvailableFeatures = Value; } argument
/external/swiftshader/third_party/LLVM/lib/MC/
H A DMCAsmInfo.cpp104 unsigned MCAsmInfo::getULEB128Size(unsigned Value) { argument
107 Value >>= 7;
109 } while (Value);
113 unsigned MCAsmInfo::getSLEB128Size(int Value) { argument
115 int Sign = Value >> (8 * sizeof(Value) - 1);
119 unsigned Byte = Value & 0x7f;
120 Value >>= 7;
121 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
/external/swiftshader/third_party/subzero/src/
H A DIceELFStreamer.h33 virtual void write8(uint8_t Value) = 0;
43 void writeLE16(uint16_t Value) { argument
44 write8(uint8_t(Value));
45 write8(uint8_t(Value >> 8));
48 void writeLE32(uint32_t Value) { argument
49 writeLE16(uint16_t(Value));
50 writeLE16(uint16_t(Value >> 16));
53 void writeLE64(uint64_t Value) { argument
54 writeLE32(uint32_t(Value));
55 writeLE32(uint32_t(Value >> 3
58 writeAddrOrOffset(T Value) argument
65 writeELFWord(T Value) argument
69 writeELFXword(T Value) argument
[all...]
/external/v8/tools/clang/blink_gc_plugin/
H A DNeedsTracing.h26 enum Value { kUnneeded, kUnknown, kNeeded }; enum in class:NeedsTracing
27 NeedsTracing(Value value) : value_(value) {}
28 Value value_;
/external/zlib/src/contrib/dotzlib/DotZLib/
H A DChecksumImpl.cs53 public uint Value { get { return _current; } } property in class:DotZLib.ChecksumGeneratorBase
/external/clang/include/clang/ASTMatchers/Dynamic/
H A DParser.h189 VariantValue *Value, Diagnostics *Error);
191 VariantValue *Value, Diagnostics *Error) {
192 return parseExpression(Code, S, nullptr, Value, Error);
194 static bool parseExpression(StringRef Code, VariantValue *Value, argument
196 return parseExpression(Code, nullptr, Value, Error);
231 bool parseExpressionImpl(VariantValue *Value);
233 VariantValue *Value);
234 bool parseIdentifierPrefixImpl(VariantValue *Value);
190 parseExpression(StringRef Code, Sema *S, VariantValue *Value, Diagnostics *Error) argument
/external/clang/include/clang/Frontend/
H A DLogDiagnosticPrinter.h69 void setDwarfDebugFlags(StringRef Value) { argument
70 DwarfDebugFlags = Value;
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DAPSIntType.h28 /* implicit */ APSIntType(const llvm::APSInt &Value) argument
29 : BitWidth(Value.getBitWidth()), IsUnsigned(Value.isUnsigned()) {}
38 void apply(llvm::APSInt &Value) const {
41 Value = Value.extOrTrunc(BitWidth);
42 Value.setIsUnsigned(IsUnsigned);
49 llvm::APSInt convert(const llvm::APSInt &Value) const LLVM_READONLY {
50 llvm::APSInt Result(Value, Value
[all...]
/external/clang/test/CodeGenCXX/
H A Dpragma-loop.cpp71 void for_define_test(int *List, int Length, int Value) { argument
76 List[i] = i * Value;
97 void for_template_test(A *List, int Length, A Value) { argument
101 List[i] = i * Value;
107 void for_template_define_test(A *List, int Length, A Value) { argument
115 List[i] = i * Value;
154 double Value = 10; local
156 for_template_test<double>(List, Length, Value);
157 for_template_define_test<double, int>(List, Length, Value);
/external/clang/test/SemaCXX/
H A Dvtable-instantiation.cpp27 virtual T Value() const function in class:PR9325::Target
/external/clang/test/SemaTemplate/
H A Dinstantiate-non-type-template-parameter.cpp9 void Case(const char (&S)[N], const int & Value) { argument

Completed in 762 milliseconds

1234567891011>>