Searched defs:Value (Results 151 - 175 of 825) sorted by relevance

1234567891011>>

/external/llvm/lib/Target/SystemZ/MCTargetDesc/
H A DSystemZMCAsmBackend.cpp20 // Value is a fully-resolved relocation value: Symbol + Addend [- Pivot].
23 static uint64_t extractBitsForFixup(MCFixupKind Kind, uint64_t Value) { argument
25 return Value;
30 return (int64_t)Value / 2;
52 uint64_t Value, bool IsPCRel) const override;
56 bool fixupNeedsRelaxation(const MCFixup &Fixup, uint64_t Value,
89 unsigned DataSize, uint64_t Value,
98 Value = extractBitsForFixup(Kind, Value);
101 Data[Offset + I] |= uint8_t(Value >> ShiftValu
88 applyFixup(const MCFixup &Fixup, char *Data, unsigned DataSize, uint64_t Value, bool IsPCRel) const argument
[all...]
/external/llvm/tools/llvm-mc/
H A DDisassembler.cpp111 StringRef Value = Str.substr(0, Next); local
115 if (Value.getAsInteger(0, ByteVal) || ByteVal > 255) {
117 SM.PrintMessage(SMLoc::getFromPointer(Value.data()), SourceMgr::DK_Error,
126 ByteArray.second.push_back(Value.data());
/external/llvm/unittests/Analysis/
H A DMixedTBAATest.cpp43 auto *Value = ConstantInt::get(IntType, 42); local
46 auto *Store1 = new StoreInst(Value, Addr, BB);
47 auto *Store2 = new StoreInst(Value, Addr, BB);
/external/llvm/unittests/DebugInfo/DWARF/
H A DDWARFFormValueTest.cpp55 DWARFFormValue createDataXFormValue(uint16_t Form, RawTypeT Value) { argument
57 memcpy(Raw, &Value, sizeof(RawTypeT));
66 DWARFFormValue createULEBFormValue(uint64_t Value) { argument
69 encodeULEB128(Value, OS);
77 DWARFFormValue createSLEBFormValue(int64_t Value) { argument
80 encodeSLEB128(Value, OS);
/external/llvm/utils/TableGen/
H A DDAGISelMatcher.cpp194 OS.indent(indent) << "CheckInteger " << Value << '\n';
199 OS.indent(indent) << "CheckChildInteger " << ChildNo << " " << Value << '\n'; local
215 OS.indent(indent) << "CheckAndImm " << Value << '\n';
219 OS.indent(indent) << "CheckOrImm " << Value << '\n';
/external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
H A DAny.cs34 new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.WellKnownTypes.Any), global::Google.Protobuf.WellKnownTypes.Any.Parser, new[]{ "TypeUrl", "Value" }, null, null, null)
168 public pb::ByteString Value { property in class:Google.Protobuf.WellKnownTypes.Any
187 if (Value != other.Value) return false;
194 if (Value.Length != 0) hash ^= Value.GetHashCode();
207 if (Value.Length != 0) {
209 output.WriteBytes(Value);
218 if (Value.Length != 0) {
219 size += 1 + pb::CodedOutputStream.ComputeBytesSize(Value);
[all...]
/external/skia/src/core/
H A DSkImageFilterCache.cpp32 SkTDynamicHash<Value, Key>::Iter iter(&fLookup);
35 Value* v = &*iter;
40 struct Value { struct in class:__anon20673::CacheImpl
41 Value(const Key& key, SkSpecialImage* image, const SkIPoint& offset, const SkImageFilter* filter) function in struct:__anon20673::CacheImpl::Value
48 static const Key& GetKey(const Value& v) {
54 SK_DECLARE_INTERNAL_LLIST_INTERFACE(Value);
59 if (Value* v = fLookup.find(key)) {
72 if (Value* v = fLookup.find(key)) {
75 Value* v = new Value(ke
[all...]
/external/skqp/src/core/
H A DSkImageFilterCache.cpp32 SkTDynamicHash<Value, Key>::Iter iter(&fLookup);
35 Value* v = &*iter;
40 struct Value { struct in class:__anon21341::CacheImpl
41 Value(const Key& key, SkSpecialImage* image, const SkIPoint& offset, const SkImageFilter* filter) function in struct:__anon21341::CacheImpl::Value
48 static const Key& GetKey(const Value& v) {
54 SK_DECLARE_INTERNAL_LLIST_INTERFACE(Value);
59 if (Value* v = fLookup.find(key)) {
72 if (Value* v = fLookup.find(key)) {
75 Value* v = new Value(ke
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/MC/
H A DMCFixup.h55 const MCExpr *Value; member in class:llvm::MCFixup
65 static MCFixup Create(uint32_t Offset, const MCExpr *Value, argument
69 FI.Value = Value;
78 void setOffset(uint32_t Value) { Offset = Value; } argument
80 const MCExpr *getValue() const { return Value; }
H A DMCObjectWriter.h114 void Write8(uint8_t Value) { argument
115 OS << char(Value);
118 void WriteLE16(uint16_t Value) { argument
119 Write8(uint8_t(Value >> 0));
120 Write8(uint8_t(Value >> 8));
123 void WriteLE32(uint32_t Value) { argument
124 WriteLE16(uint16_t(Value >> 0));
125 WriteLE16(uint16_t(Value >> 16));
128 void WriteLE64(uint64_t Value) { argument
129 WriteLE32(uint32_t(Value >>
133 WriteBE16(uint16_t Value) argument
138 WriteBE32(uint32_t Value) argument
143 WriteBE64(uint64_t Value) argument
148 Write16(uint16_t Value) argument
155 Write32(uint32_t Value) argument
162 Write64(uint64_t Value) argument
[all...]
H A DMCSymbol.h47 /// Value - If non-null, the value for a variable symbol.
48 const MCExpr *Value; member in class:llvm::MCSymbol
62 : Name(name), Section(0), Value(0),
79 void setUsed(bool Value) const { IsUsed = Value; }
132 return Value != 0;
139 return Value;
147 void setVariableValue(const MCExpr *Value);
/external/swiftshader/third_party/LLVM/include/llvm-c/
H A DDisassembler.h57 * including any PC adjustment, is passed in to the call back in the Value
60 * returned in the Value field. It is possible that some symbols in the
70 uint64_t Value; /* symbol value if name is NULL */ member in struct:LLVMOpInfoSymbol1
76 uint64_t Value; member in struct:LLVMOpInfo1
/external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
H A DAsmPrinterDwarf.cpp35 void AsmPrinter::EmitSLEB128(int Value, const char *Desc) const { argument
40 OutStreamer.EmitSLEB128IntValue(Value);
45 int Sign = Value >> (8 * sizeof(Value) - 1);
49 unsigned char Byte = static_cast<unsigned char>(Value & 0x7f);
50 Value >>= 7;
51 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
58 void AsmPrinter::EmitULEB128(unsigned Value, const char *Desc, argument
65 OutStreamer.EmitULEB128IntValue(Value);
71 unsigned char Byte = static_cast<unsigned char>(Value
[all...]
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DLiveRangeCalc.h86 VNInfo *Value; member in struct:llvm::LiveRangeCalc::LiveInBlock
89 : LI(li), DomNode(node), Kill(kill), Value(0) {}
/external/swiftshader/third_party/LLVM/lib/DebugInfo/
H A DDWARFFormValue.h45 ValueType Value; // Contains all data for the form. member in class:llvm::DWARFFormValue
50 const ValueType& value() const { return Value; }
55 return Value.data != NULL && Value.data == (uint8_t*)Value.cstr;
64 uint64_t getUnsigned() const { return Value.uval; }
65 int64_t getSigned() const { return Value.sval; }
/external/swiftshader/third_party/LLVM/lib/MC/
H A DMCObjectWriter.cpp21 void MCObjectWriter::EncodeSLEB128(int64_t Value, raw_ostream &OS) { argument
24 uint8_t Byte = Value & 0x7f;
26 Value >>= 7;
27 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) ||
28 ((Value == -1) && ((Byte & 0x40) != 0))));
36 void MCObjectWriter::EncodeULEB128(uint64_t Value, raw_ostream &OS) { argument
38 uint8_t Byte = Value & 0x7f;
39 Value >>= 7;
40 if (Value != 0)
43 } while (Value !
[all...]
/external/swiftshader/third_party/LLVM/lib/TableGen/
H A DTGParser.h36 Init *Value; member in struct:llvm::LetRecord
40 : Name(N), Bits(B), Value(V), Loc(L) {
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H A DPointerIntPair.h47 intptr_t Value; member in class:llvm::PointerIntPair
50 PointerIntPair() : Value(0) {}
56 PointerTy getPointer() const { return Info::getPointer(Value); }
59 return (IntType)Info::getInt(Value);
63 Value = Info::updatePointer(Value, PtrVal);
67 Value = Info::updateInt(Value, static_cast<intptr_t>(IntVal));
71 Value = Info::updatePointer(0, PtrVal);
75 Value
[all...]
/external/swiftshader/third_party/subzero/crosstest/
H A Dtest_bitmanip_main.cpp67 Type Value = static_cast<Type>(Values[i]); local
69 Type ResultSz = Funcs[f].FuncSz(Value);
70 Type ResultLlc = Funcs[f].FuncLlc(Value);
76 << "(" << static_cast<uint64>(Value)
97 Type Value = static_cast<Type>(Values[i]); local
99 Type ResultSz = Funcs[f].FuncSz(Value);
100 Type ResultLlc = Funcs[f].FuncLlc(Value);
106 << "(" << static_cast<uint64>(Value)
/external/swiftshader/third_party/subzero/src/
H A DIceAssemblerMIPS32.h388 void emitInst(IValueT Value) { argument
390 Buffer.emit<IValueT>(Value);
H A DIceClFlags.cpp142 Ty flagInitOrStorageTypeDefault(cl::initializer<T> &&Value, A &&...) { argument
143 return Value.Init;
/external/v8/src/ast/
H A Dcontext-slot-cache.h59 struct Value { struct in class:v8::internal::ContextSlotCache
60 Value(VariableMode mode, InitializationFlag init_flag, function in struct:v8::internal::ContextSlotCache::Value
75 explicit inline Value(uint32_t value) : value_(value) {} function in struct:v8::internal::ContextSlotCache::Value
/external/v8/src/heap/
H A Darray-buffer-tracker.h63 typedef size_t Value; typedef in class:v8::internal::LocalArrayBufferTracker
71 inline void Add(Key key, const Value& value);
72 inline Value Remove(Key key);
93 typedef std::unordered_map<Key, Value> TrackingData;
/external/libbrillo/brillo/glib/
H A Dobject.h104 class Value;
106 inline ::GType type_to_gtypeid<const Value*>() {
128 // \brief Value (and Retrieve) support using std::string as well as const char*
209 // \brief Value is a data type for managing GValues.
211 // A Value is a polymorphic container holding at most a single value.
213 // The Value wrapper ensures proper initialization, copies, and assignment of
220 class Value : public ::GValue { class in namespace:brillo::glib
222 Value() function in class:brillo::glib::Value
225 explicit Value(const ::GValue& x) function in class:brillo::glib::Value
227 *this = *static_cast<const Value*>(
230 explicit Value(T x) function in class:brillo::glib::Value
236 Value(const Value& x) function in class:brillo::glib::Value
[all...]
/external/libchrome/base/
H A Dvalues.cc27 static_cast<size_t>(Value::Type::LIST) + 1,
30 std::unique_ptr<Value> CopyWithoutEmptyChildren(const Value& node);
38 std::unique_ptr<Value> child_copy = CopyWithoutEmptyChildren(*entry);
52 std::unique_ptr<Value> child_copy = CopyWithoutEmptyChildren(it.value());
62 std::unique_ptr<Value> CopyWithoutEmptyChildren(const Value& node) {
64 case Value::Type::LIST:
67 case Value::Type::DICTIONARY:
72 return MakeUnique<Value>(nod
90 Value::Value(const Value& that) { function in class:base::Value
100 Value::Value(Type type) : type_(type) { function in class:base::Value
130 Value::Value(bool in_bool) : type_(Type::BOOLEAN), bool_value_(in_bool) {} function in class:base::Value
132 Value::Value(int in_int) : type_(Type::INTEGER), int_value_(in_int) {} function in class:base::Value
134 Value::Value(double in_double) : type_(Type::DOUBLE), double_value_(in_double) { function in class:base::Value
142 Value::Value(const char* in_string) : type_(Type::STRING) { function in class:base::Value
147 Value::Value(const std::string& in_string) : type_(Type::STRING) { function in class:base::Value
157 Value::Value(const char16* in_string) : type_(Type::STRING) { function in class:base::Value
161 Value::Value(const string16& in_string) : type_(Type::STRING) { function in class:base::Value
165 Value::Value(StringPiece in_string) : Value(in_string.as_string()) {} function in class:base::Value
167 Value::Value(const std::vector<char>& in_blob) : type_(Type::BINARY) { function in class:base::Value
[all...]

Completed in 561 milliseconds

1234567891011>>