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

<<21222324252627282930>>

  /external/skqp/modules/skottie/src/
SkottieJson.cpp 24 bool Parse<SkScalar>(const Value& v, SkScalar* s) {
41 bool Parse<bool>(const Value& v, bool* b) {
43 case Value::Type::kNumber:
46 case Value::Type::kBool:
57 bool ParseIntegral(const Value& v, T* result) {
68 bool Parse<int>(const Value& v, int* i) {
73 bool Parse<size_t>(const Value& v, size_t* sz) {
78 bool Parse<SkString>(const Value& v, SkString* s) {
88 bool Parse<SkPoint>(const Value& v, SkPoint* pt) {
98 bool Parse<std::vector<float>>(const Value& v, std::vector<float>* vec)
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
DataFlow.h 26 template <> struct GraphTraits<const Value*> {
27 typedef const Value NodeType;
28 typedef Value::const_use_iterator ChildIteratorType;
30 static NodeType *getEntryNode(const Value *G) {
43 template <> struct GraphTraits<Value*> {
44 typedef Value NodeType;
45 typedef Value::use_iterator ChildIteratorType;
47 static NodeType *getEntryNode(Value *G) {
61 typedef const Value NodeType;
82 typedef Value NodeType
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
ScalarEvolutionExpander.h 46 class SCEVExpander : public SCEVVisitor<SCEVExpander, Value*> {
54 DenseMap<std::pair<const SCEV *, Instruction *>, TrackingVH<Value>>
58 DenseSet<AssertingVH<Value>> InsertedValues;
59 DenseSet<AssertingVH<Value>> InsertedPostIncValues;
138 friend struct SCEVVisitor<SCEVExpander, Value*>;
204 Value *expandCodeFor(const SCEV *SH, Type *Ty, Instruction *I);
210 Value *expandCodeFor(const SCEV *SH, Type *Ty = nullptr);
215 /// and will have a value of 0 when the predicate is false and 1 otherwise.
216 Value *expandCodeForPredicate(const SCEVPredicate *Pred, Instruction *Loc);
220 Value *expandEqualPredicate(const SCEVEqualPredicate *Pred
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Transforms/Scalar/
NaryReassociate.h 101 class Value;
136 unsigned I, Value *LHS,
137 Value *RHS, Type *IndexedType);
144 Instruction *tryReassociateBinaryOp(Value *LHS, Value *RHS,
147 Instruction *tryReassociatedBinaryOp(const SCEV *LHS, Value *RHS,
151 bool matchTernaryOp(BinaryOperator *I, Value *V, Value *&Op1, Value *&Op2);
166 bool requiresSignExtension(Value *Index, GetElementPtrInst *GEP)
    [all...]
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
Statistic.h 44 std::atomic<unsigned> Value;
47 unsigned getValue() const { return Value.load(std::memory_order_relaxed); }
57 Value = 0;
61 // Allow use of this class as the value itself.
66 Value.store(Val, std::memory_order_relaxed);
71 Value.fetch_add(1, std::memory_order_relaxed);
77 return Value.fetch_add(1, std::memory_order_relaxed);
81 Value.fetch_sub(1, std::memory_order_relaxed);
87 return Value.fetch_sub(1, std::memory_order_relaxed);
93 Value.fetch_add(V, std::memory_order_relaxed)
    [all...]
PointerIntPair.h 47 intptr_t Value;
50 PointerIntPair() : Value(0) {}
56 PointerTy getPointer() const { return Info::getPointer(Value); }
59 return (IntType)Info::getInt(Value);
63 Value = Info::updatePointer(Value, PtrVal);
67 Value = Info::updateInt(Value, static_cast<intptr_t>(IntVal));
71 Value = Info::updatePointer(0, PtrVal);
75 Value = Info::updateInt(Info::updatePointer(0, PtrVal)
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/gpu/
hlo_to_ir_bindings.h 24 #include "llvm/IR/Value.h"
52 // Rebinds the given HLO to the LLVM IR value that represent its address.
53 void BindHloToIrValue(const HloInstruction& hlo, llvm::Value* ir_value,
63 // Returns whether `hlo` is bound to an LLVM IR value.
68 llvm::Value* GetTempBufferBase() const { return temp_buffer_base_; }
69 void SetTempBufferBase(llvm::Value* v) { temp_buffer_base_ = v; }
73 llvm::Value* GetBasePointer(const HloInstruction& hlo,
95 llvm::Value* EmitGetTupleElement(const HloInstruction* gte,
96 llvm::Value* base_ptr);
99 llvm::Value* GetTypedIrValue(const HloInstruction& hlo
    [all...]
  /external/protobuf/src/google/protobuf/
struct.pb.h 45 class Value;
52 LIBPROTOBUF_EXPORT bool NullValue_IsValid(int value);
58 inline const ::std::string& NullValue_Name(NullValue value) {
60 NullValue_descriptor(), value);
63 const ::std::string& name, NullValue* value) {
65 NullValue_descriptor(), name, value);
126 // map<string, .google.protobuf.Value> fields = 1;
130 const ::google::protobuf::Map< ::std::string, ::google::protobuf::Value >&
132 ::google::protobuf::Map< ::std::string, ::google::protobuf::Value >*
141 ::std::string, ::google::protobuf::Value,
520 kind_.string_value_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); local
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Mtftp4Dxe/
Mtftp4Option.c 155 addresses of each MTFTP option name/value pair.
180 UINT8 *Value;
187 // process option name and value pairs. The last byte is always zero
200 Value = ++Cur;
210 Options[Num - 1].ValueStr = Value;
305 @param Value The Mtftp multicast value string
308 @retval EFI_INVALID_PARAMETER The multicast value string is invalid.
309 @retval EFI_SUCCESS The multicast value is parsed into the Option
314 IN UINT8 *Value,
    [all...]
  /external/llvm/include/llvm/ADT/
PointerIntPair.h 47 intptr_t Value;
50 PointerIntPair() : Value(0) {}
56 PointerTy getPointer() const { return Info::getPointer(Value); }
59 return (IntType)Info::getInt(Value);
63 Value = Info::updatePointer(Value, PtrVal);
67 Value = Info::updateInt(Value, static_cast<intptr_t>(IntVal));
71 Value = Info::updatePointer(0, PtrVal);
75 Value = Info::updateInt(Info::updatePointer(0, PtrVal)
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
MemoryDependenceAnalysis.h 46 /// clobbers the desired value. The pointer member of the MemDepResult
62 /// load/store. The value loaded or stored is the produced value.
68 /// this case, the load is loading an undef value or a store is the
98 PairTy Value;
99 explicit MemDepResult(PairTy V) : Value(V) {}
101 MemDepResult() : Value(0, Invalid) {}
128 bool isClobber() const { return Value.getInt() == Clobber; }
132 bool isDef() const { return Value.getInt() == Def; }
138 return Value.getInt() == Othe
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AVR/MCTargetDesc/
AVRMCExpr.cpp 56 MCValue Value;
59 getSubExpr()->evaluateAsRelocatable(Value, nullptr, nullptr);
64 if (Value.isAbsolute()) {
65 Result = evaluateAsInt64(Value.getConstant());
75 MCValue Value;
76 bool isRelocatable = SubExpr->evaluateAsRelocatable(Value, Layout, Fixup);
81 if (Value.isAbsolute()) {
82 Result = MCValue::get(evaluateAsInt64(Value.getConstant()));
87 const MCSymbolRefExpr *Sym = Value.getSymA();
93 Result = MCValue::get(Sym, Value.getSymB(), Value.getConstant())
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/
IListTest.cpp 21 int Value;
24 Node(int Value) : Value(Value) {}
26 ~Node() { Value = -1; }
32 EXPECT_EQ(1, List.back().Value);
37 EXPECT_EQ(2, List.back().Value);
38 EXPECT_EQ(2, List.getNextNode(List.front())->Value);
39 EXPECT_EQ(1, List.getPrevNode(List.back())->Value);
42 EXPECT_EQ(2, ConstList.back().Value);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Mips/MCTargetDesc/
MipsAsmBackend.cpp 38 // Prepare value for the target space for it
39 static unsigned adjustFixupValue(const MCFixup &Fixup, uint64_t Value,
65 Value &= 0xffff;
79 // address range. Forcing a signed division because Value can be negative.
80 Value = (int64_t)Value / 4;
81 // We now check if Value can be encoded as a 16-bit signed immediate.
82 if (!isInt<16>(Value)) {
89 // Forcing a signed division because Value can be negative.
90 Value = (int64_t)Value / 4
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseIoLibIntrinsic/
IoLibIpf.c 57 Reads the 8-bit I/O port specified by Port. The 8-bit read value is returned.
65 @return The value read.
80 Reads the 16-bit I/O port specified by Port. The 16-bit read value is returned.
89 @return The value read.
104 Reads the 32-bit I/O port specified by Port. The 32-bit read value is returned.
113 @return The value read.
128 Reads the 64-bit I/O port specified by Port. The 64-bit read value is returned.
137 @return The value read.
153 Writes the 8-bit I/O port specified by Port with the value specified by Value
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseSynchronizationLib/
Synchronization.c 113 // Get the current timer value
233 Value and returns the incremented value. The increment operation must be
234 performed using MP safe mechanisms. The state of the return value is not
237 If Value is NULL, then ASSERT().
239 @param Value A pointer to the 32-bit value to increment.
241 @return The incremented value.
247 IN volatile UINT32 *Value
250 ASSERT (Value != NULL);
    [all...]
SynchronizationGcc.c 123 // Get the current timer value
249 Value and returns the incremented value. The increment operation must be
250 performed using MP safe mechanisms. The state of the return value is not
253 If Value is NULL, then ASSERT().
255 @param Value A pointer to the 32-bit value to increment.
257 @return The incremented value.
263 IN volatile UINT32 *Value
266 ASSERT (Value != NULL);
    [all...]
SynchronizationMsc.c 125 // Get the current timer value
251 Value and returns the incremented value. The increment operation must be
252 performed using MP safe mechanisms. The state of the return value is not
255 If Value is NULL, then ASSERT().
257 @param Value A pointer to the 32-bit value to increment.
259 @return The incremented value.
265 IN volatile UINT32 *Value
268 ASSERT (Value != NULL);
    [all...]
  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkSouthCluster/Usb/Ohci/Dxe/
OhciReg.c 21 Get OHCI operational reg value
26 @retval Value of the register
35 UINT32 Value;
37 PciIo->Mem.Read(PciIo, EfiPciIoWidthUint32, OHC_BAR_INDEX, Offset, 1, &Value);
39 return Value;
43 Set OHCI operational reg value
47 @param Value Value to set
49 @retval EFI_SUCCESS Value set to the reg
58 IN VOID *Value
    [all...]
  /external/libchrome/mojo/public/cpp/base/
values_mojom_traits.cc 14 bool StructTraits<mojo_base::mojom::DictionaryValueDataView, base::Value>::Read(
16 base::Value* value_out) {
19 std::vector<base::Value::DictStorage::value_type> dict_storage;
23 auto value = std::make_unique<base::Value>(); local
24 if (!view.keys().Read(i, &key) || !view.values().Read(i, value.get()))
26 dict_storage.emplace_back(key.as_string(), std::move(value));
28 *value_out = base::Value(base::Value::DictStorage(std::move(dict_storage),
33 bool StructTraits<mojo_base::mojom::ListValueDataView, base::Value>::Read
    [all...]
  /external/pdfium/fxjs/
cjs_document.h 27 CJS_Return set_ADBE(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp);
30 CJS_Return set_author(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp);
33 CJS_Return set_base_URL(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp);
36 CJS_Return set_bookmark_root(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp);
39 CJS_Return set_calculate(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp);
42 CJS_Return set_collab(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp);
45 CJS_Return set_creation_date(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp);
48 CJS_Return set_creator(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp);
51 CJS_Return set_delay(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp);
54 CJS_Return set_dirty(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp)
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/
ValueToString.c 18 Routines changing value to Hex or Dec string
31 IN UINT64 Value,
39 VSPrint worker function that prints a Value as a hex number in Buffer
43 Buffer - Location to place ascii hex string of Value.
45 Value - Hex value to convert to a string in Buffer.
49 Width - Width of hex value.
78 Index = ((UINTN)Value & 0xf);
80 Value = RShiftU64 (Value, 4);
    [all...]
  /external/google-fruit/include/fruit/impl/util/
hash_helpers.defn.h 49 template <typename Key, typename Value>
50 inline HashMap<Key, Value> createHashMap() {
51 return createHashMap<Key, Value>(10);
54 template <typename Key, typename Value>
55 inline HashMap<Key, Value> createHashMap(size_t capacity) {
56 return HashMap<Key, Value>(capacity, std::hash<Key>());
59 template <typename Key, typename Value>
60 inline HashMapWithArenaAllocator<Key, Value> createHashMapWithArenaAllocator(std::size_t capacity,
62 return createHashMapWithArenaAllocatorAndCustomFunctors<Key, Value>(capacity, memory_pool, std::hash<Key>(),
66 template <typename Key, typename Value, typename Hasher, typename EqualityComparator
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/
Metadata.h 19 #include "llvm/Value.h"
38 class MDString : public Value {
66 static bool classof(const Value *V) {
76 class MDNode : public Value, public FoldingSetNode {
111 void replaceOperand(MDNodeOperand *Op, Value *NewVal);
114 MDNode(LLVMContext &C, ArrayRef<Value*> Vals, bool isFunctionLocal);
116 static MDNode *getMDNode(LLVMContext &C, ArrayRef<Value*> Vals,
120 static MDNode *get(LLVMContext &Context, ArrayRef<Value*> Vals);
124 ArrayRef<Value*> Vals,
127 static MDNode *getIfExists(LLVMContext &Context, ArrayRef<Value*> Vals)
    [all...]
Use.h 11 // instruction or some other User instance which refers to a Value. The Use
12 // class keeps the "use list" of the referenced value up to date.
34 class Value;
55 /// Use is here to make keeping the "use" list of a Value up-to-date really
87 /// Normally Use will just implicitly convert to a Value* that it holds.
88 operator Value*() const { return Val; }
90 /// If implicit conversion to Value* doesn't work, the get() method returns
91 /// the Value*.
92 Value *get() const { return Val; }
98 inline void set(Value *Val)
    [all...]

Completed in 969 milliseconds

<<21222324252627282930>>