Searched defs:Value (Results 201 - 225 of 825) sorted by relevance

1234567891011>>

/external/llvm/lib/Target/BPF/MCTargetDesc/
H A DBPFMCCodeEmitter.cpp116 uint64_t Value = getBinaryCodeForInstr(MI, Fixups, STI); local
117 LE.write<uint8_t>(Value >> 56);
119 LE.write<uint8_t>((Value >> 48) & 0xff);
121 LE.write<uint8_t>(SwapBits((Value >> 48) & 0xff));
124 LE.write<uint32_t>(Value & 0xffffFFFF);
126 BE.write<uint32_t>(Value & 0xffffFFFF);
139 uint64_t Value = getBinaryCodeForInstr(MI, Fixups, STI); local
140 LE.write<uint8_t>(Value >> 56);
142 LE.write<uint8_t>((Value >> 48) & 0xff);
143 LE.write<uint16_t>((Value >> 3
[all...]
/external/llvm/lib/Target/Lanai/MCTargetDesc/
H A DLanaiMCCodeEmitter.cpp86 unsigned adjustPqBitsRmAndRrm(const MCInst &Inst, unsigned Value,
89 unsigned adjustPqBitsSpls(const MCInst &Inst, unsigned Value,
138 unsigned adjustPqBits(const MCInst &Inst, unsigned Value, unsigned PBitShift, argument
146 Value &= ~(1 << PBitShift);
150 Value |= (1 << PBitShift);
155 Value &= ~(1 << QBitShift);
158 Value |= (1 << QBitShift);
160 return Value;
164 LanaiMCCodeEmitter::adjustPqBitsRmAndRrm(const MCInst &Inst, unsigned Value, argument
166 return adjustPqBits(Inst, Value, 1
170 adjustPqBitsSpls(const MCInst &Inst, unsigned Value, const MCSubtargetInfo &STI) const argument
179 unsigned Value = getBinaryCodeForInstr(Inst, Fixups, SubtargetInfo); local
[all...]
/external/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsABIFlagsSection.h68 uint32_t Value = 0; local
71 Value |= (uint32_t)Mips::AFL_FLAGS1_ODDSPREG;
73 return Value;
79 void setFpABI(FpABIKind Value, bool IsABI32Bit) { argument
80 FpABI = Value;
83 StringRef getFpABIString(FpABIKind Value);
H A DMipsAsmBackend.cpp36 static unsigned adjustFixupValue(const MCFixup &Fixup, uint64_t Value, argument
60 Value &= 0xffff;
68 // address range. Forcing a signed division because Value can be negative.
69 Value = (int64_t)Value / 4;
70 // We now check if Value can be encoded as a 16-bit signed immediate.
71 if (!isInt<16>(Value) && Ctx) {
78 // Forcing a signed division because Value can be negative.
79 Value = (int64_t)Value /
232 applyFixup(const MCFixup &Fixup, char *Data, unsigned DataSize, uint64_t Value, bool IsPCRel) const argument
466 processFixupValue(const MCAssembler &Asm, const MCAsmLayout &Layout, const MCFixup &Fixup, const MCFragment *DF, const MCValue &Target, uint64_t &Value, bool &IsResolved) argument
[all...]
/external/llvm/lib/Target/Mips/
H A DMipsTargetStreamer.h29 virtual void setPic(bool Value) {} argument
99 virtual void emitDirectiveSetFp(MipsABIFlagsSection::FpABIKind Value);
270 void emitDirectiveSetFp(MipsABIFlagsSection::FpABIKind Value) override;
286 void setPic(bool Value) override { Pic = Value; }
289 void emitAssignment(MCSymbol *Symbol, const MCExpr *Value) override;
/external/llvm/lib/Target/SystemZ/InstPrinter/
H A DSystemZInstPrinter.cpp65 int64_t Value = MI->getOperand(OpNum).getImm(); local
66 assert(isUInt<N>(Value) && "Invalid uimm argument");
67 O << Value; local
72 int64_t Value = MI->getOperand(OpNum).getImm(); local
73 assert(isInt<N>(Value) && "Invalid simm argument");
74 O << Value; local
139 uint64_t Value = MI->getOperand(OpNum).getImm(); local
140 assert(Value < 16 && "Invalid access register number");
141 O << "%a" << (unsigned int)Value;
/external/llvm/lib/Target/
H A DTargetRecip.cpp49 uint8_t &Value) {
61 Value = RefStepChar - '0';
48 parseRefinementStep(StringRef In, size_t &Position, uint8_t &Value) argument
/external/llvm/tools/llvm-cov/
H A DCoverageReport.cpp35 Column &set(TrimKind Value) { argument
36 Trim = Value;
40 Column &set(AlignmentKind Value) { argument
41 Alignment = Value;
48 raw_ostream &operator<<(raw_ostream &OS, const Column &Value) { argument
49 Value.render(OS);
87 static Column column(StringRef Str, unsigned Width, const T &Value) { argument
88 return Column(Str, Width).set(Value);
/external/llvm/unittests/Support/
H A DYAMLParserTest.cpp164 StringRef Value = local
167 EXPECT_EQ(Value, "Hello\nWorld\n");
168 EXPECT_EQ(Value.data()[Value.size()], '\0');
/external/llvm/utils/TableGen/
H A DCodeEmitterGen.cpp165 Case += " Value |= (op & UINT64_C(" + utostr(opMask) + ")) << " +
168 Case += " Value |= (op & UINT64_C(" + utostr(opMask) + ")) >> " +
171 Case += " Value |= op & UINT64_C(" + utostr(opMask) + ");\n";
214 Case += " Value = " + PostEmitter + "(MI, Value";
252 uint64_t Value = 0; local
255 Value |= (uint64_t)B->getValue() << (e-i-1);
257 o << " UINT64_C(" << Value << ")," << '\t' << "// " << R->getName() << "\n";
280 << " uint64_t Value = InstBits[opcode];\n"
308 << " return Value;\
[all...]
/external/lzma/CPP/7zip/Common/
H A DMethodProps.h23 NWindows::NCOM::CPropVariant Value; member in struct:CProp
48 prop.Value = s;
63 if (Props[i].Value.vt == VT_UI4)
64 return (int)Props[i].Value.ulVal;
73 if (Props[i].Value.vt == VT_UI4)
75 res = Props[i].Value.ulVal;
87 if (Props[i].Value.vt == VT_UI4)
88 return Props[i].Value.ulVal;
96 if (Props[i].Value.vt == VT_UI4)
97 return Props[i].Value
[all...]
/external/lzma/CPP/7zip/UI/Common/
H A DUpdateCallback.h47 unsigned Value; member in struct:CKeyKeyValPair
/external/mesa3d/src/egl/main/
H A Deglimage.h45 EGLint Value; member in struct:_egl_image_attrib_int
/external/mesa3d/src/gallium/state_trackers/nine/
H A Dnine_limits.h183 DWORD Value)
191 if (Value < behaviour.u.clamp.min)
192 Value = behaviour.u.clamp.min;
193 else if (Value > behaviour.u.clamp.max)
194 Value = behaviour.u.clamp.max;
197 Value = Value ? 1 : 0;
200 Value = Value & behaviour.u.mask;
203 if (Value < behaviou
182 nine_fix_render_state_value(D3DRENDERSTATETYPE State, DWORD Value) argument
238 nine_check_sampler_state_value(D3DSAMPLERSTATETYPE State, DWORD Value) argument
[all...]
/external/mesa3d/src/intel/genxml/
H A Dgen_pack_header.py479 class Value(object): class in inherits:object
545 self.values.append(Value(attrs))
/external/perf_data_converter/src/
H A Dintervalmap.h52 struct Value { struct in class:perftools::IntervalMap
57 using MapIter = typename std::map<uint64, Value>::iterator;
58 using ConstMapIter = typename std::map<uint64, Value>::const_iterator;
107 std::map<uint64, Value> interval_start_;
207 interval_start_.emplace(std::pair<uint64, Value>{start, {limit, value}});
/external/proguard/src/proguard/evaluation/value/
H A DValue.java28 public abstract class Value class
44 * Returns this Value as a Category1Value.
48 throw new IllegalArgumentException("Value \"" + this.toString() + "\" is not a Category 1 value [" + this.getClass().getName() + "]");
52 * Returns this Value as a Category2Value.
56 throw new IllegalArgumentException("Value \"" + this.toString() + "\" is not a Category 2 value [" + this.getClass().getName() + "]");
61 * Returns this Value as an IntegerValue.
65 throw new IllegalArgumentException("Value \"" + this.toString() + "\" is not an integer value [" + this.getClass().getName() + "]");
69 * Returns this Value as a LongValue.
73 throw new IllegalArgumentException("Value \"" + this.toString() + "\" is not a long value [" + this.getClass().getName() + "]");
77 * Returns this Value a
[all...]
/external/protobuf/csharp/src/Google.Protobuf/
H A DJsonToken.cs63 internal static JsonToken Value(string value) method in class:Google.Protobuf.JsonToken
68 internal static JsonToken Value(double value) method in class:Google.Protobuf.JsonToken
/external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
H A DWrappers.cs39 new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.WellKnownTypes.DoubleValue), global::Google.Protobuf.WellKnownTypes.DoubleValue.Parser, new[]{ "Value" }, null, null, null),
40 new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.WellKnownTypes.FloatValue), global::Google.Protobuf.WellKnownTypes.FloatValue.Parser, new[]{ "Value" }, null, null, null),
41 new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.WellKnownTypes.Int64Value), global::Google.Protobuf.WellKnownTypes.Int64Value.Parser, new[]{ "Value" }, null, null, null),
42 new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.WellKnownTypes.UInt64Value), global::Google.Protobuf.WellKnownTypes.UInt64Value.Parser, new[]{ "Value" }, null, null, null),
43 new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.WellKnownTypes.Int32Value), global::Google.Protobuf.WellKnownTypes.Int32Value.Parser, new[]{ "Value" }, null, null, null),
44 new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.WellKnownTypes.UInt32Value), global::Google.Protobuf.WellKnownTypes.UInt32Value.Parser, new[]{ "Value" }, null, null, null),
45 new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.WellKnownTypes.BoolValue), global::Google.Protobuf.WellKnownTypes.BoolValue.Parser, new[]{ "Value" }, null, null, null),
46 new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.WellKnownTypes.StringValue), global::Google.Protobuf.WellKnownTypes.StringValue.Parser, new[]{ "Value" }, null, null, null),
47 new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.WellKnownTypes.BytesValue), global::Google.Protobuf.WellKnownTypes.BytesValue.Parser, new[]{ "Value" }, null, null, null)
92 public double Value { property in class:Google.Protobuf.WellKnownTypes.DoubleValue
203 public float Value { property in class:Google.Protobuf.WellKnownTypes.FloatValue
314 public long Value { property in class:Google.Protobuf.WellKnownTypes.Int64Value
425 public ulong Value { property in class:Google.Protobuf.WellKnownTypes.UInt64Value
536 public int Value { property in class:Google.Protobuf.WellKnownTypes.Int32Value
647 public uint Value { property in class:Google.Protobuf.WellKnownTypes.UInt32Value
758 public bool Value { property in class:Google.Protobuf.WellKnownTypes.BoolValue
869 public string Value { property in class:Google.Protobuf.WellKnownTypes.StringValue
980 public pb::ByteString Value { property in class:Google.Protobuf.WellKnownTypes.BytesValue
[all...]
/external/python/cpython2/Lib/multiprocessing/
H A D__init__.py51 'Event', 'Queue', 'JoinableQueue', 'Pool', 'Value', 'Array',
248 def Value(typecode_or_type, *args, **kwds): function
252 from multiprocessing.sharedctypes import Value namespace
253 return Value(typecode_or_type, *args, **kwds)
H A Dsharedctypes.py42 __all__ = ['RawValue', 'RawArray', 'Value', 'Array', 'copy', 'synchronized']
97 def Value(typecode_or_type, *args, **kwds): function
99 Return a synchronization wrapper for a Value
/external/python/cpython2/Lib/multiprocessing/dummy/
H A D__init__.py131 class Value(object): class in inherits:object
/external/python/cpython3/Lib/multiprocessing/dummy/
H A D__init__.py97 class Value(object): class in inherits:object
/external/python/cpython3/Lib/multiprocessing/
H A Dsharedctypes.py19 __all__ = ['RawValue', 'RawArray', 'Value', 'Array', 'copy', 'synchronized']
69 def Value(typecode_or_type, *args, lock=True, ctx=None): function
71 Return a synchronization wrapper for a Value
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/tokens/
H A DToken.java23 Alias, Anchor, BlockEnd, BlockEntry, BlockMappingStart, BlockSequenceStart, Directive, DocumentEnd, DocumentStart, FlowEntry, FlowMappingEnd, FlowMappingStart, FlowSequenceEnd, FlowSequenceStart, Key, Scalar, StreamEnd, StreamStart, Tag, Value, Whitespace, Comment, Error enum constant in enum:Token.ID

Completed in 3809 milliseconds

1234567891011>>