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

1 2 3 4 5 6 7 891011>>

  /external/swiftshader/third_party/LLVM/unittests/ADT/
ilistTest.cpp 20 int Value;
23 Node(int _Value) : Value(_Value) {}
29 EXPECT_EQ(1, List.back().Value);
34 EXPECT_EQ(2, List.back().Value);
35 EXPECT_EQ(2, List.front().getNextNode()->Value);
36 EXPECT_EQ(1, List.back().getPrevNode()->Value);
39 EXPECT_EQ(2, ConstList.back().Value);
40 EXPECT_EQ(2, ConstList.front().getNextNode()->Value);
41 EXPECT_EQ(1, ConstList.back().getPrevNode()->Value);
  /external/compiler-rt/lib/ubsan/
ubsan_value.cc 10 // Representation of a runtime value, as marshaled from the generated code to
23 SIntMax Value::getSIntValue() const {
44 UIntMax Value::getUIntValue() const {
60 UIntMax Value::getPositiveIntValue() const {
68 /// Get the floating-point value of this object, extended to a long double.
71 FloatMax Value::getFloatValue() const {
79 __fp16 Value;
80 internal_memcpy(&Value, &Val, 4);
81 return Value;
85 float Value;
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
VectorUtils.h 30 class Value;
60 Value *stripGetElementPtr(Value *Ptr, ScalarEvolution *SE, Loop *Lp);
62 /// If a value has only one user that is a CastInst, return it.
63 Value *getUniqueCastUse(Value *Ptr, Loop *Lp, Type *Ty);
67 Value *getStrideFromPointer(Value *Ptr, ScalarEvolution *SE, Loop *Lp);
69 /// Given a vector and an element number, see if the scalar value is
72 Value *findScalarElement(Value *V, unsigned EltNo)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AVR/MCTargetDesc/
AVRAsmBackend.cpp 38 void signed_width(unsigned Width, uint64_t Value, std::string Description,
40 if (!isIntN(Width, Value)) {
57 void unsigned_width(unsigned Width, uint64_t Value, std::string Description,
59 if (!isUIntN(Width, Value)) {
75 /// Adjusts the value of a branch target before fixup application.
76 void adjustBranch(unsigned Size, const MCFixup &Fixup, uint64_t &Value,
78 // We have one extra bit of precision because the value is rightshifted by
80 unsigned_width(Size + 1, Value, std::string("branch target"), Fixup, Ctx);
82 // Rightshifts the value by one.
83 AVR::fixups::adjustBranchTarget(Value);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
Value.h 1 //===- llvm/Value.h - Definition of the Value class -------------*- C++ -*-===//
10 // This file declares the Value class.
54 using ValueName = StringMapEntry<Value *>;
57 // Value Class
60 /// LLVM Value Representation
63 /// computed by a program that may be used as operands to other values. Value is
65 /// All Values have a Type. Type is not a subclass of Value. Some values can
66 /// have a name and they belong to some Module. Setting the name on the Value
69 /// Every value has a "use list" that keeps track of which other Values ar
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseIoLibIntrinsic/
IoLibMsc.c 57 Reads the 8-bit I/O port specified by Port. The 8-bit read value is returned.
65 @return The value read.
74 UINT8 Value;
77 Value = (UINT8)_inp ((UINT16)Port);
79 return Value;
85 Writes the 8-bit I/O port specified by Port with the value specified by Value
86 and returns Value. This function must guarantee that all I/O read and write
92 @param Value The value to write to the I/O port.
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/llvm_ir/
kernel_support_library.h 24 #include "llvm/IR/Value.h"
52 absl::string_view name, llvm::Value* start, llvm::Value* end,
53 llvm::Value* step,
54 const std::function<Status(llvm::Value* ind_var,
58 absl::string_view name, llvm::Value* start, llvm::Value* end,
59 llvm::Value* step,
60 const std::function<void(llvm::Value* ind_var, bool is_first_iteration)>&
65 [&](llvm::Value* ind_var, bool is_first_iteration) -> Status
    [all...]
  /art/compiler/optimizing/
induction_var_range_test.cc 27 using Value = InductionVarRange::Value;
43 void ExpectEqual(Value v1, Value v2) {
50 void ExpectInt(int32_t value, HInstruction* i) {
52 EXPECT_EQ(value, i->AsIntConstant()->GetValue());
253 Value GetMin(HInductionVarAnalysis::InductionInfo* info,
258 Value GetMax(HInductionVarAnalysis::InductionInfo* info,
263 Value GetMul(HInductionVarAnalysis::InductionInfo* info1,
269 Value GetDiv(HInductionVarAnalysis::InductionInfo* info1
326 int64_t value; local
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
IRBuilder.h 174 /// has array of i8 type filled in with the nul terminated string value
178 Value *CreateGlobalString(StringRef Str, const Twine &Name = "");
180 /// getInt1 - Get a constant value representing either true or false.
185 /// getTrue - Get the constant value for i1 true.
190 /// getFalse - Get the constant value for i1 false.
195 /// getInt8 - Get a constant 8-bit value.
200 /// getInt16 - Get a constant 16-bit value.
205 /// getInt32 - Get a constant 32-bit value.
210 /// getInt64 - Get a constant 64-bit value.
215 /// getInt - Get a constant integer value
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BasePostCodeLibDebug/
PostCode.c 26 Sends an 32-bit value to a POST card.
28 Sends the 32-bit value specified by Value to a POST card, and returns Value.
30 directly to a POST card device. Other implementations may send Value to
32 display the 32-bit value on the status reporting device.
36 PostCode() must return Value immediately.
38 @param Value The 32-bit value to write to the POST card.
40 @return Value
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BasePostCodeLibPort80/
PostCode.c 25 Sends an 32-bit value to a POST card.
27 Sends the 32-bit value specified by Value to a POST card, and returns Value.
29 directly to a POST card device. Other implementations may send Value to
31 display the 32-bit value on the status reporting device.
35 PostCode() must return Value immediately.
37 @param Value The 32-bit value to write to the POST card.
39 @return Value
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/BasePostCodeLibDebug/
PostCode.c 22 Sends an 32-bit value to a POST card.
24 Sends the 32-bit value specified by Value to a POST card, and returns Value.
26 directly to a POST card device. Other implementations may send Value to
28 display the 32-bit value on the status reporting device.
32 PostCode() must return Value immediately.
34 @param Value The 32-bit value to write to the POST card.
36 @return The 32-bit value to write to the POST card.
    [all...]
  /external/adhd/ucm-config/monroe/HDA Intel PCH/
HiFi.conf 2 Value {
19 Value {
24 Value {
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/
p9.cpp 22 template<typename T, T Value>
25 template<typename T, T Value>
26 void f(X<T, Value>);
33 template<typename T, T Value, typename U>
34 void f2(X<T, Value>, X<U, Value>);
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/numeric/
MaxFunction.java 20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
34 public Value execute(Value... args) {
35 Value left = args[0];
36 Value right = args[1];
MinFunction.java 20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
34 public Value execute(Value... args) {
35 Value left = args[0];
36 Value right = args[1];
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/operators/
AndFunction.java 20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
28 public Value execute(Value... args) {
29 Value left = args[0];
30 Value right = args[1];
DivideFunction.java 20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
28 public Value execute(Value... args) {
29 Value left = args[0];
30 Value right = args[1];
EqualFunction.java 20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
28 public Value execute(Value... args) {
29 Value left = args[0];
30 Value right = args[1];
GreaterFunction.java 20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
28 public Value execute(Value... args) {
29 Value left = args[0];
30 Value right = args[1];
GreaterOrEqualFunction.java 20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
28 public Value execute(Value... args) {
29 Value left = args[0];
30 Value right = args[1];
LessFunction.java 20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
28 public Value execute(Value... args) {
29 Value left = args[0];
30 Value right = args[1];
LessOrEqualFunction.java 20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
28 public Value execute(Value... args) {
29 Value left = args[0];
30 Value right = args[1];
ModuloFunction.java 20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
28 public Value execute(Value... args) {
29 Value left = args[0];
30 Value right = args[1];
MultiplyFunction.java 20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
28 public Value execute(Value... args) {
29 Value left = args[0];
30 Value right = args[1];

Completed in 538 milliseconds

1 2 3 4 5 6 7 891011>>