HomeSort by relevance Sort by last modified time
    Searched refs:Value (Results 951 - 975 of 2613) sorted by null

<<31323334353637383940>>

  /external/caliper/caliper/src/main/java/com/google/caliper/worker/
ArbitraryMeasurementWorker.java 21 import com.google.caliper.model.Value;
60 .value(Value.create(measured, unit))
  /external/clang/include/clang/Basic/
DiagnosticOptions.h 104 void set##Name(Type Value) { Name = static_cast<unsigned>(Value); }
LangOptions.h 118 void set##Name(Type Value) { Name = static_cast<unsigned>(Value); }
  /external/compiler-rt/lib/ubsan/
ubsan_value.h 84 /// A value from the \c Kind enumeration, specifying what flavor of type we
88 /// A \c Type-specific value providing information which allows us to
98 /// An integer type. Lowest bit is 1 for a signed value, 0 for an unsigned
99 /// value. Remaining bits are log_2(bit width). The value representation is
103 /// A floating-point type. Low 16 bits are bit width. The value
104 /// representation is that of bitcasting the floating-point value to an
107 /// Any other type. The value representation is unspecified.
136 /// \brief An opaque handle to a value.
140 /// \brief Representation of an operand value provided by the instrumented code
    [all...]
  /external/elfutils/tests/
run-readelf-d.sh 39 Type Value
  /external/libxml2/python/
drv_libxml2.py 197 value = _d(reader.Value())
205 newPrefix,value)
211 attrs[attName] = value
226 attrs[attName] = _d(reader.Value())
244 self._cont_handler.characters(_d(reader.Value()))
247 self._cont_handler.ignorableWhitespace(_d(reader.Value()))
250 self._cont_handler.characters(_d(reader.Value()))
255 self._cont_handler.characters(_d(reader.Value()))
270 _d(reader.Name()),_d(reader.Value()))
    [all...]
  /external/llvm/include/llvm/Analysis/
AssumptionCache.h 49 /// \brief Vector of weak value handles to calls of the @llvm.assume
141 /// A callback value handle applied to function objects, which we use to
148 typedef DenseMapInfo<Value *> DMI;
150 FunctionCallbackVH(Value *V, AssumptionCacheTracker *ACT = nullptr)
LoopPass.h 82 /// deleteAnalysisValue - Delete analysis info associated with value V.
83 virtual void deleteAnalysisValue(Value *V, Loop *L) {}
147 void deleteSimpleAnalysisValue(Value *V, Loop *L);
  /external/llvm/include/llvm/IR/
GlobalAlias.h 110 static inline bool classof(const Value *V) {
111 return V->getValueID() == Value::GlobalAliasVal;
  /external/llvm/include/llvm/Transforms/Utils/
SymbolRewriter.h 101 yaml::MappingNode *Value,
105 yaml::MappingNode *Value,
  /external/llvm/lib/CodeGen/
LiveRangeCalc.h 16 // live, but don't know which value it has as every point. LiveRangeCalc will
43 /// LiveOutPair - A value and the block that defined it. The domtree node is
47 /// LiveOutMap - Map basic blocks to the value leaving the block.
56 /// Map each basic block where a live range is live out to the live-out value
64 /// The live-out value is defined in MBB.
66 /// The live-out value passses through MBB. All predecessors must carry
67 /// the same value.
76 /// to be live-in, but the value has not yet been determined.
83 // Cleared when the final value has been determined and LI has been updated.
87 // range passes through the block. When the final value has bee
    [all...]
SpillPlacement.cpp 68 /// The node Value is positive when the variable should be in a register. The
69 /// value can change when linked nodes change, but convergence is very fast
78 /// Value - Output value of this node computed from the Bias and links.
81 int Value;
94 // Undecided nodes (Value==0) go on the stack.
95 return Value > 0;
109 BiasN = BiasP = Value = 0;
146 /// update - Recompute Value from Bias and Links. Return true when node
153 if (nodes[I->second].Value == -1
    [all...]
  /external/llvm/lib/Object/
RecordStreamer.cpp 80 void RecordStreamer::EmitAssignment(MCSymbol *Symbol, const MCExpr *Value) {
82 MCStreamer::EmitAssignment(Symbol, Value);
  /external/llvm/lib/Target/AMDGPU/
SIRegisterInfo.h 100 /// \p Channel This is the register channel (e.g. a value from 0-16), not the
111 /// an inline constant. i.e. An integer value in the range (-16, 64) or
133 /// \brief Returns the physical register that \p Value is stored in.
135 enum PreloadedValue Value) const;
151 unsigned LoadStoreOp, unsigned Value,
  /external/llvm/lib/Transforms/Utils/
FlattenCFG.cpp 165 Value *PC = PBI->getCondition();
272 Value *PC = PBI->getCondition();
281 Value *CC = PBI->getCondition();
284 Value *NC;
390 Value *IfCond2 = GetIfCondition(BB, IfTrue2, IfFalse2);
400 Value *IfCond1 = GetIfCondition(SecondEntryBlock, IfTrue1, IfFalse1);
438 Value *CC = PBI->getCondition();
442 Value *NC = Builder.CreateOr(CInst1, CC);
  /external/llvm/test/CodeGen/PowerPC/
hello-reloc.s 77 ; DARWIN-G4-DUMP: Value: 0x74
84 ; DARWIN-G4-DUMP: Value: 0x14
91 ; DARWIN-G4-DUMP: Value: 0x74
98 ; DARWIN-G4-DUMP: Value: 0x14
107 ; DARWIN-G4-DUMP: Value: 0x70
114 ; DARWIN-G4-DUMP: Value: 0x58
121 ; DARWIN-G4-DUMP: Value: 0x70
128 ; DARWIN-G4-DUMP: Value: 0x58
  /external/lzma/Java/SevenZip/
LzmaBench.java 29 int Value;
33 Value = 0;
41 result = Value & ((1 << numBits) - 1);
42 Value >>>= numBits;
47 result = (Value << numBits);
48 Value = RG.GetRnd();
49 result |= Value & (((int)1 << numBits) - 1);
50 Value >>>= numBits;
222 static long MyMultDiv64(long value, long elapsedTime)
233 return value * freq / elTime;
    [all...]
  /external/proguard/src/proguard/evaluation/
ConstantValueFactory.java 27 import proguard.evaluation.value.*;
30 * This class creates Value instance that correspond to specified constant pool
42 protected Value value; field in class:ConstantValueFactory
52 * Returns the Value of the constant pool element at the given index.
54 public Value constantValue(Clazz clazz,
57 // Visit the constant pool entry to get its return value.
60 return value;
68 value = valueFactory.createIntegerValue(integerConstant.getValue());
73 value = valueFactory.createLongValue(longConstant.getValue())
    [all...]
  /external/v8/test/cctest/
test-platform.cc 14 void GetStackPointer(const v8::FunctionCallbackInfo<v8::Value>& args) {
59 v8::Local<v8::Value> result =
test-receiver-check-hidden-prototype.cc 14 static void SlowCallback(const v8::FunctionCallbackInfo<v8::Value>& info) {
42 isolate, SlowCallback, fast_accessor_builder, v8::Local<v8::Value>(),
  /frameworks/base/tools/aapt2/unflatten/
BinaryResourceParser.h 64 const android::Res_value* value, uint16_t flags);
66 std::unique_ptr<Value> parseMapEntry(const ResourceNameRef& name,
86 * read and added to the Value.
89 bool collectMetaData(const android::ResTable_map& mapEntry, Value* value);
99 // The standard value string pool for resource values.
  /system/weaved/common/
binder_utils.cc 40 android::String16 ToString16(const base::Value& value) {
42 base::JSONWriter::Write(value, &json);
51 std::unique_ptr<base::Value> value{
56 if (!value || !value->GetAsDictionary(&dict_value)) {
61 value.release(); // |dict| now owns the object.
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/ia64/
alias.d 29 +Num: +Value +Size +Type +Bind +Vis +Ndx +Name
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
elf-rel10.d 6 *Offset * Info * Type * Sym\.Value * Sym\. Name \+ Addend
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-aarch64/
relasz.d 9 Tag Type Name/Value

Completed in 665 milliseconds

<<31323334353637383940>>