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

1234567891011>>

/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/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/skia/src/sksl/ir/
H A DSkSLProgram.h33 struct Value { struct in struct:SkSL::Program::Settings
34 Value(bool b) function in struct:SkSL::Program::Settings::Value
38 Value(int i) function in struct:SkSL::Program::Settings::Value
44 case Program::Settings::Value::kBool_Kind:
48 case Program::Settings::Value::kInt_Kind:
77 std::unordered_map<String, Value> fArgs;
/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
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
H A DStatistic.h38 volatile llvm::sys::cas_flag Value; member in class:llvm::Statistic
41 llvm::sys::cas_flag getValue() const { return Value; }
48 Value = 0; Initialized = 0;
52 operator unsigned() const { return Value; }
54 Value = Val;
63 sys::AtomicIncrement(&Value);
69 unsigned OldValue = Value;
70 sys::AtomicIncrement(&Value);
75 sys::AtomicDecrement(&Value);
81 unsigned OldValue = Value;
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
H A DJITCodeEmitter.h34 class Value;
175 void emitULEB128Bytes(uint64_t Value, unsigned PadTo = 0) { argument
177 uint8_t Byte = Value & 0x7f;
178 Value >>= 7;
179 if (Value || PadTo != 0) Byte |= 0x80;
181 } while (Value);
193 void emitSLEB128Bytes(int64_t Value) { argument
194 int32_t Sign = Value >> (8 * sizeof(Value) - 1);
198 uint8_t Byte = Value
218 emitInt32(uint32_t Value) argument
228 emitInt64(uint64_t Value) argument
238 emitInt32At(uintptr_t *Addr, uintptr_t Value) argument
244 emitInt64At(uintptr_t *Addr, uintptr_t Value) argument
[all...]
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DLiveRangeCalc.cpp37 VNInfo *VNI = OverrideVNI ? OverrideVNI : I->Value;
116 assert(!MBB->pred_empty() && "Value live-in to entry block?");
210 LiveOutPair &Value = LiveOut[*PI]; local
211 if (!Value.first || Value.first == IDomValue.first)
215 if (!Value.second)
216 Value.second =
217 DomTree->getNode(Indexes->getMBBFromIndex(Value.first->def));
222 if (DomTree->dominates(IDom, Value.second)) {
242 I->Value
[all...]
H A DObjectCodeEmitter.cpp66 void ObjectCodeEmitter::emitULEB128Bytes(uint64_t Value) { argument
67 BO->emitULEB128Bytes(Value);
72 void ObjectCodeEmitter::emitSLEB128Bytes(uint64_t Value) { argument
73 BO->emitSLEB128Bytes(Value);
/external/swiftshader/third_party/LLVM/lib/MC/
H A DMCELFStreamer.h48 virtual void EmitAssignment(MCSymbol *Symbol, const MCExpr *Value);
72 virtual void EmitELFSize(MCSymbol *Symbol, const MCExpr *Value) { argument
74 SD.setSize(Value);
89 virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value = 0,
/external/swiftshader/third_party/LLVM/lib/MC/MCParser/
H A DAsmLexer.cpp186 long long Value; local
187 if (Result.getAsInteger(10, Value)) {
193 Value = (long long)UValue;
200 return AsmToken(AsmToken::Integer, Result, Value);
221 long long Value; local
222 if (Result.substr(2).getAsInteger(2, Value))
229 return AsmToken(AsmToken::Integer, Result, Value);
259 long long Value; local
260 if (Result.getAsInteger(8, Value))
267 return AsmToken(AsmToken::Integer, Result, Value);
288 long long Value; local
[all...]
/external/swiftshader/third_party/LLVM/lib/Target/ARM/MCTargetDesc/
H A DARMMachObjectWriter.cpp141 uint32_t Value = Writer->getSymbolAddress(A_SD, Layout); local
215 MRE.Word1 = Value;
239 uint32_t Value = Writer->getSymbolAddress(A_SD, Layout); local
276 MRE.Word1 = Value;
/external/swiftshader/third_party/LLVM/lib/Target/MBlaze/MCTargetDesc/
H A DMBlazeMCCodeEmitter.cpp213 unsigned Value = getBinaryCodeForInstr(MI); local
214 EmitConstant(Value, 4, CurByte, OS);
/external/swiftshader/third_party/LLVM/lib/Target/PowerPC/InstPrinter/
H A DPPCInstPrinter.cpp119 char Value = MI->getOperand(OpNo).getImm(); local
120 Value = (Value << (32-5)) >> (32-5);
121 O << (int)Value;
126 unsigned char Value = MI->getOperand(OpNo).getImm(); local
127 assert(Value <= 31 && "Invalid u5imm argument!");
128 O << (unsigned int)Value;
133 unsigned char Value = MI->getOperand(OpNo).getImm(); local
134 assert(Value <= 63 && "Invalid u6imm argument!");
135 O << (unsigned int)Value;
[all...]
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
H A DPassManagerBuilder.cpp293 LLVMBool Value) {
295 Builder->DisableUnitAtATime = Value;
300 LLVMBool Value) {
302 Builder->DisableUnrollLoops = Value;
307 LLVMBool Value) {
309 Builder->DisableSimplifyLibCalls = Value;
292 LLVMPassManagerBuilderSetDisableUnitAtATime(LLVMPassManagerBuilderRef PMB, LLVMBool Value) argument
299 LLVMPassManagerBuilderSetDisableUnrollLoops(LLVMPassManagerBuilderRef PMB, LLVMBool Value) argument
306 LLVMPassManagerBuilderSetDisableSimplifyLibCalls(LLVMPassManagerBuilderRef PMB, LLVMBool Value) argument
/external/swiftshader/third_party/LLVM/utils/TableGen/
H A DCodeEmitterGen.cpp172 Case += " Value |= (op & " + utostr(opMask) + "U) << " +
175 Case += " Value |= (op & " + utostr(opMask) + "U) >> " +
178 Case += " Value |= op & " + utostr(opMask) + "U;\n";
205 Case += " Value = " + PostEmitter + "(MI, Value);\n";
248 unsigned Value = 0; local
251 Value |= B->getValue() << (e-i-1);
253 o << " " << Value << "U," << '\t' << "// " << R->getName() << "\n";
276 << " unsigned Value = InstBits[opcode];\n"
304 << " return Value;\
[all...]
H A DInstrInfoEmitter.cpp302 uint64_t Value = 0; local
305 Value |= uint64_t(Bit->getValue()) << i;
310 OS.write_hex(Value);

Completed in 772 milliseconds

1234567891011>>