Searched defs:Value (Results 276 - 300 of 527) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/webrtc/video_engine/
H A Doveruse_frame_detector.cc130 int Value() const { function in class:webrtc::OveruseFrameDetector::EncodeTimeAvg
180 int Value() const { function in class:webrtc::OveruseFrameDetector::EncodeUsage
296 int Value() const { function in class:webrtc::OveruseFrameDetector::EncodeTimeRsd
363 int Value() const { function in class:webrtc::OveruseFrameDetector::CaptureQueueDelay
425 metrics->avg_encode_time_ms = encode_time_->Value();
426 metrics->encode_rsd = encode_rsd_->Value();
427 metrics->encode_usage_percent = encode_usage_->Value();
428 metrics->capture_queue_delay_ms_per_s = capture_queue_delay_->Value();
551 << " encode usage " << encode_usage_->Value()
552 << " encode rsd " << encode_rsd_->Value()
[all...]
/external/chromium_org/v8/include/
H A Dv8-util.h48 static PersistentContainerValue Value(Iterator it) { return it->second; } function in class:v8::StdMapTraits
156 ReturnValue<Value> returnValue) {
206 Traits::Dispose(isolate_, Release(Traits::Value(i)).Pass(),
312 ReturnValue<Value>* returnValue, PersistentContainerValue value) {
/external/chromium_org/v8/src/
H A Dlithium-allocator.h47 int Value() const { function in class:v8::internal::LifetimePosition
75 return LifetimePosition(InstructionStart().Value() + kStep/2);
81 return LifetimePosition(InstructionStart().Value() + kStep);
89 return LifetimePosition(InstructionStart().Value() - kStep);
125 DCHECK(start.Value() < end.Value());
139 if (other->start().Value() < start_.Value()) return other->Intersect(this);
140 if (other->start().Value() < end_.Value()) retur
[all...]
/external/clang/include/clang/AST/
H A DAPValue.h101 APValue *Value; member in struct:clang::APValue::UnionData
328 return *((UnionData*)(char*)Data.buffer)->Value;
381 void setUnion(const FieldDecl *Field, const APValue &Value) {
384 *((UnionData*)(char*)Data.buffer)->Value = Value;
H A DExternalASTSource.h380 LazyData(ExternalASTSource *Source, T Value) argument
381 : ExternalSource(Source), LastGeneration(0), LastValue(Value) {}
389 ValueType Value; member in struct:clang::LazyGenerationalUpdatePtr
391 LazyGenerationalUpdatePtr(ValueType V) : Value(V) {}
394 static ValueType makeValue(const ASTContext &Ctx, T Value);
397 explicit LazyGenerationalUpdatePtr(const ASTContext &Ctx, T Value = T())
398 : Value(makeValue(Ctx, Value)) {}
403 LazyGenerationalUpdatePtr(NotUpdatedTag, T Value = T())
404 : Value(Valu
[all...]
/external/clang/include/clang/Lex/
H A DPPCallbacks.h173 const std::string &Value) {
391 const std::string &Value) override {
392 First->PragmaDetectMismatch(Loc, Name, Value);
393 Second->PragmaDetectMismatch(Loc, Name, Value);
171 PragmaDetectMismatch(SourceLocation Loc, const std::string &Name, const std::string &Value) argument
/external/clang/lib/ASTMatchers/Dynamic/
H A DMarshallers.h84 static bool is(const VariantValue &Value) { return Value.isString(); } argument
85 static const std::string &get(const VariantValue &Value) { argument
86 return Value.getString();
98 static bool is(const VariantValue &Value) { argument
99 return Value.isMatcher() && Value.getMatcher().hasTypedMatcher<T>();
101 static ast_matchers::internal::Matcher<T> get(const VariantValue &Value) { argument
102 return Value.getMatcher().getTypedMatcher<T>();
110 static bool is(const VariantValue &Value) { retur argument
111 get(const VariantValue &Value) argument
313 const VariantValue &Value = Arg.Value; local
604 const VariantValue &Value = Arg.Value; local
[all...]
H A DParser.cpp46 TokenInfo() : Text(), Kind(TK_Eof), Range(), Value() {}
51 VariantValue Value; member in struct:clang::ast_matchers::dynamic::Parser::TokenInfo
186 unsigned Value; local
187 if (!Result->Text.getAsInteger(0, Value)) {
189 Result->Value = Value;
218 Result->Value = Code.substr(1, Length - 1).str();
286 bool Parser::parseIdentifierPrefixImpl(VariantValue *Value) { argument
292 *Value = NamedValue;
309 return parseMatcherExpressionImpl(NameToken, Value);
316 parseMatcherExpressionImpl(const TokenInfo &NameToken, VariantValue *Value) argument
462 parseExpressionImpl(VariantValue *Value) argument
519 parseExpression(StringRef Code, VariantValue *Value, Diagnostics *Error) argument
525 parseExpression(StringRef Code, Sema *S, VariantValue *Value, Diagnostics *Error) argument
558 VariantValue Value; local
[all...]
/external/clang/lib/Lex/
H A DLiteralSupport.cpp245 unsigned Value = llvm::hexDigitValue(*I); local
246 assert(Value != -1U);
249 CodePoint += Value;
1057 // FIXME: The "Value" is an uint64_t so we can handle char literals of
1192 Value = LitVal.getZExtValue();
1198 if (isAscii() && NumCharsSoFar == 1 && (Value & 128) &&
1200 Value = (signed char)Value;
H A DPreprocessor.cpp776 bool Preprocessor::parseSimpleIntegerLiteral(Token &Tok, uint64_t &Value) { argument
790 Value = APVal.getLimitedValue();
/external/clang/lib/Parse/
H A DRAIIObjectsForParser.h268 ColonProtectionRAIIObject(Parser &p, bool Value = true)
270 P.ColonIsSacred = Value;
305 InMessageExpressionRAIIObject(Parser &P, bool Value) argument
308 InMessageExpression = Value;
/external/clang/lib/Sema/
H A DSemaAttr.cpp291 void Sema::ActOnPragmaDetectMismatch(StringRef Name, StringRef Value) { argument
293 Consumer.HandleDetectMismatch(Name, Value);
332 ValueType Value) {
346 CurrentValue = I->Value;
352 CurrentValue = Stack.back().Value;
358 CurrentValue = Value;
329 Act(SourceLocation PragmaLocation, PragmaMsStackAction Action, llvm::StringRef StackSlotLabel, ValueType Value) argument
/external/clang/lib/StaticAnalyzer/Core/
H A DExprEngineC.cpp54 // to the L-Value represented by the LHS.
745 APSInt Value = Ex->EvaluateKnownConstInt(getContext()); local
746 CharUnits amt = CharUnits::fromQuantity(Value.getZExtValue());
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/
H A Dp7-0x.cpp213 template<unsigned> struct Value { }; struct
216 int &check_narrowed(Value<sizeof((T){1.1})>);
221 void test_narrowed(Value<sizeof(int)> vi, Value<sizeof(double)> vd) {
H A Dp7-cxx11-nowarn.cpp200 template<unsigned> struct Value { }; struct
203 int &check_narrowed(Value<sizeof((T){1.1})>);
208 void test_narrowed(Value<sizeof(int)> vi, Value<sizeof(double)> vd) {
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
H A Dp5-0x.cpp184 class Value { class in namespace:PR11003
187 operator Value &() const ;
191 Value x = Move(0);
192 Value y(Move(0));
/external/deqp/framework/common/
H A DtcuTestLog.hpp204 SampleBuilder& operator<< (int v) { m_values.push_back(Value((deInt64)v)); return *this; }
205 SampleBuilder& operator<< (deInt64 v) { m_values.push_back(Value(v)); return *this; }
206 SampleBuilder& operator<< (float v) { m_values.push_back(Value((double)v)); return *this; }
207 SampleBuilder& operator<< (double v) { m_values.push_back(Value(v)); return *this; }
212 struct Value struct in class:tcu::SampleBuilder
223 Value (void) : type(TYPE_LAST) { value.int64 = 0; } function in struct:tcu::SampleBuilder::Value
224 Value (double v) : type(TYPE_FLOAT64) { value.float64 = v; } function in struct:tcu::SampleBuilder::Value
225 Value (deInt64 v) : type(TYPE_INT64) { value.int64 = v; } function in struct:tcu::SampleBuilder::Value
229 std::vector<Value> m_values;
/external/llvm/include/llvm/ExecutionEngine/
H A DExecutionEngine.h693 EngineBuilder &setUseMCJIT(bool Value) { argument
694 UseMCJIT = Value;
/external/llvm/include/llvm/IR/
H A DFunction.h90 // HasLazyArguments is stored in Value::SubclassData.
93 // The Calling Convention is stored in Value::SubclassData.
193 void addFnAttr(StringRef Kind, StringRef Value) { argument
196 AttributeSet::FunctionIndex, Kind, Value));
464 static inline bool classof(const Value *V) {
465 return V->getValueID() == Value::FunctionVal;
499 // Shadow Value::setValueSubclassData with a private forwarding method so that
502 Value::setValueSubclassData(D);
H A DPassManager.h29 /// polymorphism as outlined in the "Value Semantics and Concept-based
196 enum { Value = sizeof(f<PassT>(nullptr)) == sizeof(SmallType) }; enumerator in enum:llvm::detail::PassRunAcceptsAnalysisManager::__anon25524
206 IRUnitT, AnalysisManagerT, PassT, PreservedAnalyses>::Value>
296 enum { Value = sizeof(f<ResultT>(nullptr)) == sizeof(SmallType) }; enumerator in enum:llvm::detail::ResultHasInvalidateMethod::__anon25525
307 ResultHasInvalidateMethod<IRUnitT, ResultT>::Value>
392 IRUnitT, AnalysisManagerT, PassT, typename PassT::Result>::Value>
/external/llvm/include/llvm/Support/
H A DMathExtras.h255 inline uint32_t Hi_32(uint64_t Value) { argument
256 return static_cast<uint32_t>(Value >> 32);
260 inline uint32_t Lo_32(uint64_t Value) { argument
261 return static_cast<uint32_t>(Value);
337 inline bool isMask_32(uint32_t Value) { argument
338 return Value && ((Value + 1) & Value) == 0;
344 inline bool isMask_64(uint64_t Value) { argument
345 return Value
351 isShiftedMask_32(uint32_t Value) argument
357 isShiftedMask_64(uint64_t Value) argument
363 isPowerOf2_32(uint32_t Value) argument
369 isPowerOf2_64(uint64_t Value) argument
375 ByteSwap_16(uint16_t Value) argument
381 ByteSwap_32(uint32_t Value) argument
387 ByteSwap_64(uint64_t Value) argument
395 CountLeadingOnes_32(uint32_t Value) argument
403 CountLeadingOnes_64(uint64_t Value) argument
411 CountTrailingOnes_32(uint32_t Value) argument
419 CountTrailingOnes_64(uint64_t Value) argument
426 CountPopulation_32(uint32_t Value) argument
438 CountPopulation_64(uint64_t Value) argument
452 Log2_32(uint32_t Value) argument
458 Log2_64(uint64_t Value) argument
465 Log2_32_Ceil(uint32_t Value) argument
471 Log2_64_Ceil(uint64_t Value) argument
593 RoundUpToAlignment(uint64_t Value, uint64_t Align) argument
600 OffsetToAlignment(uint64_t Value, uint64_t Align) argument
[all...]
H A DYAMLParser.h197 : Node(NK_Scalar, D, Anchor, Tag), Value(Val) {
203 // Return Value without any escaping or folding or other fun YAML stuff. This
206 StringRef getRawValue() const { return Value; }
220 StringRef Value; member in class:llvm::yaml::ScalarNode
240 Value(nullptr) {}
267 Node *Value; member in class:llvm::yaml::KeyValueNode
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDIE.h174 void addValue(dwarf::Attribute Attribute, dwarf::Form Form, DIEValue *Value) { argument
176 Values.push_back(Value);
H A DDwarfUnit.cpp81 DIEEntry *Value = new (DIEValueAllocator) DIEEntry(Entry); local
82 return Value;
178 DIEValue *Value = Integer == 1 ? DIEIntegerOne : new (DIEValueAllocator) local
180 Die.addValue(Attribute, *Form, Value);
193 DIEValue *Value = new (DIEValueAllocator) DIEInteger(Integer); local
194 Die.addValue(Attribute, *Form, Value);
214 DIEValue *Value = new (DIEValueAllocator) DIEInteger(idx); local
215 DIEValue *Str = new (DIEValueAllocator) DIEString(Value, String);
224 DIEValue *Value; local
226 Value
238 DIEValue *Value = new (DIEValueAllocator) DIEExpr(Expr); local
246 DIEValue *Value = new (DIEValueAllocator) DIELocList(Index); local
256 DIEValue *Value = new (DIEValueAllocator) DIELabel(Label); local
297 DIEValue *Value = new (DIEValueAllocator) DIEInteger(idx); local
346 DIEValue *Value = new (DIEValueAllocator) DIEDelta(Hi, Lo); local
354 DIEValue *Value = new (DIEValueAllocator) DIEDelta(Hi, Lo); local
[all...]
/external/llvm/lib/CodeGen/
H A DExecutionDepsFix.cpp113 /// Value currently in this register, or NULL when no value is being tracked.
115 DomainValue *Value; member in struct:__anon25743::LiveReg
264 if (LiveRegs[rx].Value == dv)
266 if (LiveRegs[rx].Value)
267 release(LiveRegs[rx].Value);
268 LiveRegs[rx].Value = retain(dv);
275 if (!LiveRegs[rx].Value)
278 release(LiveRegs[rx].Value);
279 LiveRegs[rx].Value = nullptr;
286 if (DomainValue *dv = LiveRegs[rx].Value) {
[all...]

Completed in 2118 milliseconds

<<11121314151617181920>>