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

<<21222324252627282930>>

  /external/skia/tests/
LRUCacheTest.cpp 11 struct Value {
12 Value(int value, int* counter)
13 : fValue(value)
18 ~Value() {
30 SkLRUCache<int, std::unique_ptr<Value>> test(kSize);
33 test.insert(i, std::unique_ptr<Value>(new Value(i * i, &instances)));
54 SkLRUCache<int, std::unique_ptr<Value>> test(kSize);
58 test.insert(k, std::unique_ptr<Value>(new Value(k, &instances)))
    [all...]
  /external/skqp/tests/
LRUCacheTest.cpp 11 struct Value {
12 Value(int value, int* counter)
13 : fValue(value)
18 ~Value() {
30 SkLRUCache<int, std::unique_ptr<Value>> test(kSize);
33 test.insert(i, std::unique_ptr<Value>(new Value(i * i, &instances)));
54 SkLRUCache<int, std::unique_ptr<Value>> test(kSize);
58 test.insert(k, std::unique_ptr<Value>(new Value(k, &instances)))
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Transforms/Utils/
AddrModeMatcher.h 13 // returns the addressing mode that is actually matched by value, but also
29 class Value;
35 /// which holds actual Value*'s for register values.
37 Value *BaseReg;
38 Value *ScaledReg;
65 /// part of the return value of this addressing mode matching stuff.
84 static ExtAddrMode Match(Value *V, Type *AccessTy,
97 bool MatchScaledValue(Value *ScaleReg, int64_t Scale, unsigned Depth);
98 bool MatchAddr(Value *V, unsigned Depth);
103 bool ValueAlreadyLiveAtInst(Value *Val, Value *KnownLive1, Value *KnownLive2)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Nios2/MCTargetDesc/
Nios2AsmBackend.cpp 26 // Prepare value for the target space for it
27 static unsigned adjustFixupValue(const MCFixup &Fixup, uint64_t Value) {
39 Value = ((Value + 0x8000) >> 16) & 0xffff;
43 return Value;
53 /// ApplyFixup - Apply the \p Value for given \p Fixup into the provided
58 MutableArrayRef<char> Data, uint64_t Value,
61 Value = adjustFixupValue(Fixup, Value);
63 if (!Value)
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Library/
PcdLib.h 50 Returns the Boolean value for the PCD feature flag specified by TokenName.
54 @param TokenName The name of the PCD token to retrieve a current value for.
56 @return Boolean value for the PCD feature flag.
63 Retrieves an 8-bit fixed PCD token value based on a token name.
65 Returns the 8-bit value for the token specified by TokenName.
69 @param TokenName The name of the PCD token to retrieve a current value for.
71 @return 8-bit value for the token specified by TokenName.
78 Retrieves a 16-bit fixed PCD token value based on a token name.
80 Returns the 16-bit value for the token specified by TokenName.
84 @param TokenName The name of the PCD token to retrieve a current value for.
    [all...]
  /external/pdfium/fxjs/
cfxjse_value.cpp 63 v8::Local<v8::Value> hError = v8::Exception::Error(hMessage);
75 v8::Local<v8::Value> pValue = v8::Local<v8::Value>::New(m_pIsolate, m_hValue);
100 hArrayObject->Set(count++, v8::Local<v8::Value>::New(
108 v8::Local<v8::Value> hDate = v8::Date::New(m_pIsolate, dDouble);
114 v8::Local<v8::Value> pValue = v8::Number::New(m_pIsolate, ftod(fFloat));
122 v8::Local<v8::Value> hObject =
123 v8::Local<v8::Value>::New(m_pIsolate, m_hValue);
127 v8::Local<v8::Value> hPropValue =
128 v8::Local<v8::Value>::New(m_pIsolate, lpPropValue->DirectGetValue())
    [all...]
  /device/linaro/bootloader/edk2/ArmPkg/Include/Library/
ArmGenericTimerCounterLib.h 46 IN UINTN Value
70 UINTN Value
82 IN UINT64 Value
  /device/linaro/bootloader/edk2/ArmPlatformPkg/Include/Library/
ArmPlatformSysConfigLib.h 40 OUT UINT32* Value
53 IN UINT32 Value
60 IN UINT32 Value
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Bus/Pci/IdeBusDxe/
DriverConfiguration.c 127 UINT8 Value;
138 DataSize = sizeof (Value);
144 &Value
164 if (EFI_ERROR (Status) || (NewValue != Value)) {
213 UINT8 Value;
220 DataSize = sizeof (Value);
226 &Value
228 if (EFI_ERROR (Status) || Value > 0x0f) {
276 UINT8 Value;
282 Value = 0x0f;
    [all...]
  /external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/
ValueImpl.java 30 abstract class ValueImpl extends MirrorImpl implements Value {
36 static ValueImpl prepareForAssignment(Value value,
39 if (value == null) {
48 return ((ValueImpl)value).prepareForAssignmentTo(destination);
52 static byte typeValueKey(Value val) {
  /external/perfetto/src/trace_processor/
json_trace_parser.h 31 class Value;
39 base::Optional<int64_t> CoerceToInt64(const Json::Value& value);
40 base::Optional<uint32_t> CoerceToUint32(const Json::Value& value);
  /external/proguard/src/proguard/optimize/evaluation/
TracedBranchUnit.java 26 import proguard.evaluation.value.Value;
44 if (conditional == Value.ALWAYS)
49 else if (conditional != Value.NEVER)
  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
CodeMetrics.h 81 /// many instructions will be constant folded if the specified value is
83 unsigned CountCodeReductionForConstant(Value *V);
86 /// per-call performance boost we can expect if the specified value is
88 unsigned CountBonusForConstant(Value *V);
94 unsigned CountCodeReductionForAlloca(Value *V);
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/DWARF/
DWARFAttribute.h 20 /// Encapsulates a DWARF attribute value and all of the data required to
21 /// describe the attribute value.
32 /// The form and value for this attribute.
33 DWARFFormValue Value;
36 dwarf::Form F = dwarf::Form(0)) : Attr(A), Value(F) {}
50 Value = DWARFFormValue();
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/
BypassSlowDivision.cpp 13 // runtime it is profitable to check the value of the operands, and if they are
35 #include "llvm/IR/Value.h"
48 Value *Quotient;
49 Value *Remainder;
51 QuotRemPair(Value *InQuotient, Value *InRemainder)
60 Value *Quotient = nullptr;
61 Value *Remainder = nullptr;
71 /// A runtime check is required, as value range is unknown.
84 bool isHashLikeValue(Value *V, VisitedSetTy &Visited)
    [all...]
  /external/tensorflow/tensorflow/core/lib/hash/
crc32c_test.cc 29 ASSERT_EQ(0x8a9136aa, Value(buf, sizeof(buf)));
32 ASSERT_EQ(0x62a8ab43, Value(buf, sizeof(buf)));
37 ASSERT_EQ(0x46dd794e, Value(buf, sizeof(buf)));
42 ASSERT_EQ(0x113fdb5c, Value(buf, sizeof(buf)));
50 ASSERT_EQ(0xd9963a56, Value(reinterpret_cast<char*>(data), sizeof(data)));
54 ASSERT_EQ(0xdd1b19be, Value(reinterpret_cast<char*>(data), sizeof(data) - 7));
56 Value(reinterpret_cast<char*>(data) + 1, sizeof(data) - 4));
59 TEST(CRC, Values) { ASSERT_NE(Value("a", 1), Value("foo", 3)); }
62 ASSERT_EQ(Value("hello world", 11), Extend(Value("hello ", 6), "world", 5))
    [all...]
  /external/tensorflow/tensorflow/core/util/proto/
descriptor_pool_registry_test.cc 23 struct Value {
31 REGISTER_DESCRIPTOR_POOL("TEST POOL 1", Value::Function);
32 REGISTER_DESCRIPTOR_POOL("TEST POOL 2", Value::Function);
  /external/v8/src/extensions/
trigger-failure-extension.h 19 const v8::FunctionCallbackInfo<v8::Value>& args);
21 const v8::FunctionCallbackInfo<v8::Value>& args);
23 const v8::FunctionCallbackInfo<v8::Value>& args);
  /external/v8/tools/clang/blink_gc_plugin/
NeedsTracing.h 5 // NeedsTracing is a three-point value ordered by unneeded < unknown < needed.
26 enum Value { kUnneeded, kUnknown, kNeeded };
27 NeedsTracing(Value value) : value_(value) {}
28 Value value_;
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
Value.java 32 * This class represents generic value used in JDWP packets.
34 public class Value {
37 * Creates new boolean value.
39 public static Value createBoolean(boolean value) {
40 return new Value(value);
44 * Creates new byte value.
46 public static Value createByte(byte value) {
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/cpu/
tiled_dot_emitter.cc 37 llvm::Value* matrix, int64 matrix_size_along_minor_dim,
38 llvm::Value* major_dim_offset, int64 tile_size_along_major_dim)
42 llvm::Value* total_offset =
53 std::vector<llvm::Value*> LoadTile(llvm::Value* minor_dim_offset) const {
54 std::vector<llvm::Value*> result;
66 void StoreTile(absl::Span<llvm::Value* const> tile,
67 llvm::Value* minor_dim_offset) const {
77 // of size vsl_.vector_size(). The (i,j)'th element of the return value is
81 std::vector<std::vector<llvm::Value*>> LoadBroadcastTile
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
IntrinsicInst.h 34 #include "llvm/IR/Value.h"
61 static bool classof(const Value *V) {
71 /// variable's value or its address.
72 Value *getVariableLocation(bool AllowNullOp = true) const;
75 /// and dbg.declare, but not dbg.value, which describes its value.
112 static bool classof(const Value *V) {
121 Value *getAddress() const { return getVariableLocation(); }
128 static bool classof(const Value *V) {
137 Value *getAddress() const { return getVariableLocation();
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldELF.cpp 264 uint64_t Offset, uint64_t Value,
275 Value + Addend;
276 LLVM_DEBUG(dbgs() << "Writing " << format("%p", (Value + Addend)) << " at "
282 Value += Addend;
283 assert((Type == ELF::R_X86_64_32 && (Value <= UINT32_MAX)) ||
285 ((int64_t)Value <= INT32_MAX && (int64_t)Value >= INT32_MIN)));
286 uint32_t TruncatedAddr = (Value & 0xFFFFFFFF);
295 int64_t RealOffset = Value + Addend - FinalAddress;
303 int64_t RealOffset = Value + Addend - FinalAddress
    [all...]
  /build/kati/
expr.cc 38 Value::Value() {}
40 Value::~Value() {}
42 string Value::DebugString(const Value* v) {
46 class Literal : public Value {
66 class ValueList : public Value {
70 ValueList(Value* v1, Value* v2, Value* v3) : ValueList()
184 const string&& value = v->Eval(ev); variable
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseIoLibIntrinsic/
IoLibIcc.c 20 Reads the 8-bit MMIO register specified by Address. The 8-bit read value is
28 @return The value read.
43 Writes the 8-bit MMIO register specified by Address with the value specified
44 by Value and returns Value. This function must guarantee that all MMIO read
50 @param Value The value to write to the MMIO register.
57 IN UINT8 Value
60 return *(volatile UINT8*)Address = Value;
66 Reads the 16-bit MMIO register specified by Address. The 16-bit read value is
    [all...]

Completed in 796 milliseconds

<<21222324252627282930>>