Searched defs:Value (Results 76 - 100 of 825) sorted by relevance

1234567891011>>

/external/llvm/lib/DebugInfo/PDB/Raw/
H A DHash.cpp27 for (auto Value : Longs)
28 Result ^= Value;
36 uint16_t Value = *reinterpret_cast<const ulittle16_t *>(Remainder); local
37 Result ^= static_cast<uint32_t>(Value);
/external/llvm/lib/Fuzzer/
H A DFuzzerFnAdapter.h44 size_t UnpackPrimitive(const uint8_t *Data, size_t Size, T *Value) { argument
47 *Value = *reinterpret_cast<const T *>(Data);
51 /// Unpacks into a given Value and returns the Size - num_consumed_bytes.
55 size_t UnpackSingle(const uint8_t *Data, size_t Size, T *Value);
59 size_t UnpackSingle<Type>(const uint8_t *Data, size_t Size, Type *Value) { \
60 return UnpackPrimitive(Data, Size, Value); \
87 std::vector<uint8_t> *Value) {
92 Value->swap(V);
98 std::string *Value) {
103 Value
86 UnpackSingle(const uint8_t *Data, size_t Size, std::vector<uint8_t> *Value) argument
97 UnpackSingle(const uint8_t *Data, size_t Size, std::string *Value) argument
[all...]
/external/llvm/lib/MC/
H A DMCAsmBackend.cpp47 const MCFixup &Fixup, bool Resolved, uint64_t Value,
51 return fixupNeedsRelaxation(Fixup, Value, DF, Layout);
46 fixupNeedsRelaxationAdvanced( const MCFixup &Fixup, bool Resolved, uint64_t Value, const MCRelaxableFragment *DF, const MCAsmLayout &Layout) const argument
/external/llvm/lib/MC/MCDisassembler/
H A DMCDisassembler.cpp19 bool MCDisassembler::tryAddingSymbolicOperand(MCInst &Inst, int64_t Value, argument
25 return Symbolizer->tryAddingSymbolicOperand(Inst, cStream, Value, Address,
30 void MCDisassembler::tryAddingPcLoadReferenceComment(int64_t Value, argument
34 Symbolizer->tryAddingPcLoadReferenceComment(cStream, Value, Address);
/external/llvm/lib/Support/
H A DScopedPrinter.cpp11 raw_ostream &operator<<(raw_ostream &OS, const HexNumber &Value) { argument
12 OS << "0x" << to_hexString(Value.Value);
16 const std::string to_hexString(uint64_t Value, bool UpperCase) { argument
19 stream << format_hex_no_prefix(Value, 1, UpperCase);
/external/llvm/lib/Transforms/ObjCARC/
H A DObjCARCExpand.cpp31 #include "llvm/IR/Value.h"
113 Value *Value = cast<CallInst>(Inst)->getArgOperand(0); local
115 " New = " << *Value << "\n"); local
116 Inst->replaceAllUsesWith(Value);
/external/llvm/tools/llvm-cov/
H A DRenderingSupport.h44 inline raw_ostream &operator<<(const ColoredRawOstream &OS, T &&Value) { argument
45 return OS.OS << std::forward<T>(Value);
/external/llvm/tools/llvm-readobj/
H A DARMWinEHPrinter.h30 uint8_t Value; member in struct:llvm::ARM::WinEH::Decoder::RingEntry
/external/llvm/unittests/ADT/
H A DSparseMultiSetTest.cpp209 unsigned Value; member in struct:__anon14948::Alt
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);
H A DSparseSetTest.cpp162 unsigned Value; member in struct:__anon14949::Alt
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/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
H A DValuePartial.cs35 public partial class Value class in namespace:Google.Protobuf.WellKnownTypes
38 /// Convenience method to create a Value message with a string value.
40 /// <param name="value">Value to set for the StringValue property.</param>
41 /// <returns>A newly-created Value message with the given value.</returns>
42 public static Value ForString(string value)
45 return new Value { StringValue = value };
49 /// Convenience method to create a Value message with a number value.
51 /// <param name="value">Value to set for the NumberValue property.</param>
52 /// <returns>A newly-created Value message with the given value.</returns>
53 public static Value ForNumbe
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/MC/
H A DMCInstPrinter.h56 void setAvailableFeatures(unsigned Value) { AvailableFeatures = Value; } argument
H A DSubtargetFeature.h37 uint64_t Value; // K-V integer value member in struct:llvm::SubtargetFeatureKV
53 void *Value; // K-V pointer value member in struct:llvm::SubtargetInfoKV
/external/swiftshader/third_party/LLVM/lib/MC/
H A DMCSymbol.cpp45 const MCExpr *Value = S->getVariableValue(); local
46 if (Value->getKind() != MCExpr::SymbolRef)
48 const MCSymbolRefExpr *Ref = static_cast<const MCSymbolRefExpr*>(Value);
54 void MCSymbol::setVariableValue(const MCExpr *Value) { argument
56 assert(Value && "Invalid variable value!");
57 assert((isUndefined() || (isAbsolute() && isa<MCConstantExpr>(Value))) &&
59 this->Value = Value;
62 const MCSection *Section = Value->FindAssociatedSection();
/external/swiftshader/third_party/LLVM/lib/Target/ARM/MCTargetDesc/
H A DARMMCExpr.cpp45 static void AddValueSymbols_(const MCExpr *Value, MCAssembler *Asm) { argument
46 switch (Value->getKind()) {
55 const MCBinaryExpr *BE = cast<MCBinaryExpr>(Value);
62 Asm->getOrCreateSymbolData(cast<MCSymbolRefExpr>(Value)->getSymbol());
66 AddValueSymbols_(cast<MCUnaryExpr>(Value)->getSubExpr(), Asm);
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DSwapByteOrder.h120 inline void swapByteOrder(T &Value) { argument
121 Value = getSwappedBytes(Value);
/external/swiftshader/third_party/subzero/runtime/
H A Dszrt.c23 uint64_t __Sz_fptoui_f32_i64(float Value) { return (uint64_t)Value; } argument
25 uint64_t __Sz_fptoui_f64_i64(double Value) { return (uint64_t)Value; } argument
27 int64_t __Sz_fptosi_f32_i64(float Value) { return (int64_t)Value; } argument
29 int64_t __Sz_fptosi_f64_i64(double Value) { return (int64_t)Value; } argument
31 float __Sz_uitofp_i32_f32(uint32_t Value) { return (float)Value; } argument
33 __Sz_uitofp_i64_f32(uint64_t Value) argument
35 __Sz_uitofp_i32_f64(uint32_t Value) argument
37 __Sz_uitofp_i64_f64(uint64_t Value) argument
39 __Sz_sitofp_i64_f32(int64_t Value) argument
41 __Sz_sitofp_i64_f64(int64_t Value) argument
[all...]
/external/tensorflow/tensorflow/core/lib/hash/
H A Dcrc32c.h31 inline uint32 Value(const char* data, size_t n) { return Extend(0, data, n); } function in namespace:tensorflow::crc32c
/external/v8/src/parsing/
H A Dtoken.h184 enum Value { enum in class:v8::internal::Token
192 static const char* Name(Value tok) {
198 static bool IsKeyword(Value tok) {
202 static bool IsIdentifier(Value tok, LanguageMode language_mode,
224 static bool IsAssignmentOp(Value tok) {
228 static bool IsBinaryOp(Value op) { return COMMA <= op && op <= EXP; }
230 static bool IsTruncatingBinaryOp(Value op) {
234 static bool IsCompareOp(Value op) {
238 static bool IsOrderedRelationalCompareOp(Value op) {
242 static bool IsEqualityOp(Value o
[all...]
/external/webrtc/talk/app/webrtc/java/src/org/webrtc/
H A DStatsReport.java33 /** Java version of webrtc::StatsReport::Value. */
34 public static class Value { class in class:StatsReport
38 public Value(String name, String value) { method in class:StatsReport.Value
54 public final Value[] values;
56 public StatsReport(String id, String type, double timestamp, Value[] values) {
/external/caliper/examples/src/main/java/examples/
H A DDoubleToStringBenchmark.java67 enum Value { enum in class:DoubleToStringBenchmark
75 Value(double value) { method in class:DoubleToStringBenchmark.Value
80 @Param Value value;
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.classref/
H A Dp1-cxx11.cpp5 struct Value { struct
10 Value v;
16 Value v;
23 Value v;
H A Dp1.cpp30 struct Value { struct
34 // expected-note@-2 {{lookup in the object type 'Value' refers here}}
38 Value v;
44 Value v;
49 // expected-warning@-2 {{lookup of 'set' in member access expression is ambiguous; using member of 'Value'}}
54 Value v;
/external/clang/test/SemaCXX/
H A Dcompound-literal.cpp86 template<unsigned> struct Value { }; struct
88 int &check_narrowed(Value<sizeof((T){1.1})>);
/external/llvm/include/llvm/ADT/
H A DSequence.h32 ValueT Value; member in class:llvm::detail::value_sequence_iterator
41 : Value(std::move(Arg.Value)) {}
44 value_sequence_iterator(U &&Value) : Value(std::forward<U>(Value)) {} argument
47 Value += N;
51 Value -= N;
56 return Value - RHS.Value;
[all...]

Completed in 812 milliseconds

1234567891011>>