HomeSort by relevance Sort by last modified time
    Searched refs:Value (Results 651 - 675 of 6124) sorted by null

<<21222324252627282930>>

  /external/pdfium/core/fxcrt/css/
cfx_cssenumvalue.h 14 explicit CFX_CSSEnumValue(CFX_CSSPropertyValue value);
17 CFX_CSSPropertyValue Value() const { return value_; }
cfx_cssstringvalue.h 14 explicit CFX_CSSStringValue(const WideString& value);
17 const WideString Value() const { return value_; }
  /external/pdfium/fxjs/
CJX_Define.h 17 const std::vector<v8::Local<v8::Value>>& params)>
20 const std::vector<v8::Local<v8::Value>>& params) {
27 const std::vector<v8::Local<v8::Value>>& params) { \
32 const std::vector<v8::Local<v8::Value>>& params)
  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
LazyValueInfo.h 1 //===- LazyValueInfo.h - Value constraint analysis --------------*- C++ -*-===//
10 // This file defines the interface for lazy computation of value constraint
23 class Value;
25 /// LazyValueInfo - This pass computes, caches, and vends lazy value constraint
47 /// getPredicateOnEdge - Determine whether the specified value comparison
50 Tristate getPredicateOnEdge(unsigned Pred, Value *V, Constant *C,
54 /// getConstant - Determine whether the specified value is known to be a
56 Constant *getConstant(Value *V, BasicBlock *BB);
58 /// getConstantOnEdge - Determine whether the specified value is known to be a
60 Constant *getConstantOnEdge(Value *V, BasicBlock *FromBB, BasicBlock *ToBB)
    [all...]
  /external/swiftshader/third_party/LLVM/tools/llvm-diff/
DiffLog.h 22 class Value;
38 SmallVector<Value*, 4> Arguments;
44 LogBuilder &operator<<(Value *V) {
53 Value *getArgument(unsigned I) const;
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
LoopUnrollAnalyzer.h 44 Value *Base = nullptr;
50 DenseMap<Value *, Constant *> &SimplifiedValues,
66 DenseMap<Value *, SimplifiedAddress> SimplifiedAddresses;
72 /// A Value->Constant map for keeping values that we managed to
80 DenseMap<Value *, Constant *> &SimplifiedValues;
AssumptionCache.h 33 class Value;
48 /// Vector of weak value handles to calls of the \@llvm.assume
56 void allUsesReplacedWith(Value *) override;
59 using DMI = DenseMapInfo<Value *>;
61 AffectedValueCallbackVH(Value *V, AssumptionCache *AC = nullptr)
74 /// Get the vector of assumptions which affect a value from the cache.
75 SmallVector<WeakTrackingVH, 1> &getOrInsertAffectedValues(Value *V);
78 void copyAffectedValuesInCache(Value *OV, Value *NV);
134 /// Access the list of assumptions which affect this value
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/MCParser/
MCAsmParserUtils.h 22 /// Parse a value expression and return whether it can be assigned to a symbol
25 /// On success, returns false and sets the Symbol and Value output parameters.
28 const MCExpr *&Value);
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Transforms/Utils/
SSAUpdaterBulk.h 29 class Value;
36 /// wants to rewrite a set of uses of one value with uses of a set of values.
43 DenseMap<BasicBlock *, Value *> Defines;
54 Value *computeValueAt(BasicBlock *BB, RewriteInfo &R, DominatorTree *DT);
63 /// AddAvailableValue or AddUse calls. The return value is the variable ID,
67 /// Indicate that a rewritten value is available in the specified block with
68 /// the specified value.
69 void AddAvailableValue(unsigned Var, BasicBlock *BB, Value *V);
71 /// Record a use of the symbolic value. This use will be updated with a
72 /// rewritten value when RewriteAllUses is called
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/MCDisassembler/
MCDisassembler.cpp 18 bool MCDisassembler::tryAddingSymbolicOperand(MCInst &Inst, int64_t Value,
24 return Symbolizer->tryAddingSymbolicOperand(Inst, cStream, Value, Address,
29 void MCDisassembler::tryAddingPcLoadReferenceComment(int64_t Value,
33 Symbolizer->tryAddingPcLoadReferenceComment(cStream, Value, Address);
  /external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
User.h 10 // This class defines the interface that one who uses a Value must implement.
11 // Each instance of the Value class keeps track of what User's have handles
25 #include "llvm/IR/Value.h"
45 class User : public Value {
77 : Value(ty, vty) {
145 Value *getOperand(unsigned i) const {
150 void setOperand(unsigned i, Value *Val) {
152 assert((!isa<Constant>((const Value*)this) ||
153 isa<GlobalValue>((const Value*)this)) &&
223 std::random_access_iterator_tag, Value *,
    [all...]
  /device/linaro/bootloader/edk2/ArmPkg/Library/BdsLib/
BdsHelper.c 124 OUT VOID** Value
128 DefaultValue, Size, Value);
137 OUT VOID** Value
144 *Value = NULL;
146 Status = gRT->GetVariable ((CHAR16 *) VariableName, VendorGuid, NULL, &VariableSize, *Value);
149 // If the environment variable does not exist yet then set it with the default value
157 *Value = AllocateCopyPool (*Size, DefaultValue);
162 // Get the environment variable value
163 *Value = AllocatePool (VariableSize);
164 if (*Value == NULL) {
    [all...]
  /external/llvm/lib/DebugInfo/DWARF/
DWARFFormValue.cpp 138 Value.data = nullptr;
139 // Read the value for the form into value and follow and DW_FORM_indirect
155 Value.uval = data.getUnsigned(offset_ptr, AddrSize) + R.second;
157 Value.uval = data.getUnsigned(offset_ptr, AddrSize);
162 Value.uval = data.getULEB128(offset_ptr);
166 Value.uval = data.getU8(offset_ptr);
170 Value.uval = data.getU16(offset_ptr);
174 Value.uval = data.getU32(offset_ptr);
180 Value.uval = data.getU8(offset_ptr)
    [all...]
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64AsmBackend.cpp 75 uint64_t Value, bool IsPCRel) const override;
78 bool fixupNeedsRelaxation(const MCFixup &Fixup, uint64_t Value,
133 static unsigned AdrImmBits(unsigned Value) {
134 unsigned lo2 = Value & 0x3;
135 unsigned hi19 = (Value & 0x1ffffc) >> 2;
139 static uint64_t adjustFixupValue(const MCFixup &Fixup, uint64_t Value,
142 int64_t SignedValue = static_cast<int64_t>(Value);
148 Ctx->reportError(Fixup.getLoc(), "fixup value out of range");
149 return AdrImmBits(Value & 0x1fffffULL);
151 return AdrImmBits((Value & 0x1fffff000ULL) >> 12)
    [all...]
  /external/llvm/lib/Target/BPF/MCTargetDesc/
BPFAsmBackend.cpp 35 uint64_t Value, bool IsPCRel) const override;
40 bool fixupNeedsRelaxation(const MCFixup &Fixup, uint64_t Value,
67 unsigned DataSize, uint64_t Value,
71 assert(Value == 0);
77 Data[Fixup.getOffset() + Idx] = uint8_t(Value >> (i * 8));
81 Value = (uint16_t)((Value - 8) / 8);
83 Data[Fixup.getOffset() + 2] = Value & 0xFF;
84 Data[Fixup.getOffset() + 3] = Value >> 8;
86 Data[Fixup.getOffset() + 2] = Value >> 8
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/
User.h 10 // This class defines the interface that one who 'use's a Value must implement.
11 // Each instance of the Value class keeps track of what User's have handles
22 #include "llvm/Value.h"
32 class User : public Value {
51 : Value(ty, vty), OperandList(OpList), NumOperands(NumOps) {}
86 Value *getOperand(unsigned i) const {
90 void setOperand(unsigned i, Value *Val) {
92 assert((!isa<Constant>((const Value*)this) ||
93 isa<GlobalValue>((const Value*)this)) &&
135 void replaceUsesOfWith(Value *From, Value *To)
    [all...]
  /external/swiftshader/third_party/subzero/unittest/AssemblerX8664/
DataMov.cpp 24 static constexpr uint32_t Value = (0xABCD7645) & Mask##Size; \
27 __ mov(IceType_i##Size, Encoded_GPR_##Reg##Suffix(), Immediate(Value)); \
32 ASSERT_EQ(Value, test.Reg##Suffix()) << TestString; \
33 ASSERT_EQ((Marker & ~Mask##Size) | Value, test.Reg##d()) << TestString; \
102 static constexpr uint32_t Value = 0x1a4d567e & Mask##Size; \
106 __ mov(IceType_i32, Encoded_GPR_##Src(), Immediate(Value)); \
113 ASSERT_EQ((Marker & ~Mask##Size) | Value, test.contentsOfQword(T0)) \
161 static constexpr uint64_t Value = 0xA4DD30Af86CCE321ull & Mask##Size; \
170 test.setQwordTo(T0, Value); \
174 ASSERT_EQ((Marker & ~MaskResult##Size) | Value, test.Dst()) << TestString;
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Framework/Guid/DataHubRecords/
DataHubSubClass.h 47 INT16 Value;
52 UINT16 Value;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/Ia32/
InterlockedCompareExchange64.c 20 IN volatile UINT64 *Value,
26 mov esi, Value
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseMemoryLib/
BaseMemoryLibInternal.h 45 Set Buffer to Value for Size bytes.
49 @param Value Value of the set operation.
59 IN UINT8 Value
63 Fills a target buffer with a 16-bit value, and returns the target buffer.
67 @param Value Value with which to fill Length bytes of Buffer.
77 IN UINT16 Value
81 Fills a target buffer with a 32-bit value, and returns the target buffer.
85 @param Value Value with which to fill Length bytes of Buffer.
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/VcCheck/
VcCheck.c 36 int Value
47 Value - Test case
54 switch (Value) {
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLib/
MemLibInternals.h 50 Set Buffer to Value for Size bytes.
54 @param Value The value of the set operation.
64 IN UINT8 Value
68 Fills a target buffer with a 16-bit value, and returns the target buffer.
71 @param Length The count of 16-bit value to fill.
72 @param Value The value with which to fill Length bytes of Buffer.
82 IN UINT16 Value
86 Fills a target buffer with a 32-bit value, and returns the target buffer.
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibMmx/
MemLibInternals.h 50 Set Buffer to Value for Size bytes.
54 @param Value The value of the set operation.
64 IN UINT8 Value
68 Fills a target buffer with a 16-bit value, and returns the target buffer.
71 @param Length The count of 16-bit value to fill.
72 @param Value The value with which to fill Length bytes of Buffer.
82 IN UINT16 Value
86 Fills a target buffer with a 32-bit value, and returns the target buffer.
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibOptDxe/
MemLibInternals.h 50 Set Buffer to Value for Size bytes.
54 @param Value The value of the set operation.
64 IN UINT8 Value
68 Fills a target buffer with a 16-bit value, and returns the target buffer.
71 @param Length The count of 16-bit value to fill.
72 @param Value The value with which to fill Length bytes of Buffer.
82 IN UINT16 Value
86 Fills a target buffer with a 32-bit value, and returns the target buffer.
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibOptPei/
MemLibInternals.h 50 Set Buffer to Value for Size bytes.
54 @param Value The value of the set operation.
64 IN UINT8 Value
68 Fills a target buffer with a 16-bit value, and returns the target buffer.
71 @param Length The count of 16-bit value to fill.
72 @param Value The value with which to fill Length bytes of Buffer.
82 IN UINT16 Value
86 Fills a target buffer with a 32-bit value, and returns the target buffer.
    [all...]

Completed in 619 milliseconds

<<21222324252627282930>>