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

<<21222324252627282930>>

  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/ARM/
thumb_set.s 62 @ CHECK: Value: 0x1
68 @ CHECK: Value: 0x1
74 @ CHECK: Value: 0x1
80 @ CHECK: Value: 0x5
86 @ CHECK: Value: 0x5
92 @ CHECK: Value: 0x0
98 @ CHECK: Value: 0x7
104 @ CHECK: Value: 0x0
110 @ CHECK-NEXT: Value: 0x0
120 @ CHECK: Value: 0x
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/llvm_ir/
kernel_support_library.cc 22 absl::string_view name, llvm::Value* start, llvm::Value* end,
23 llvm::Value* step,
24 const std::function<Status(llvm::Value*, bool)>& for_body_generator) {
29 [&](llvm::Value* iv) { return for_body_generator(iv, false); });
34 absl::string_view name, llvm::Value* start, llvm::Value* end,
35 llvm::Value* step, bool peel_first_iteration,
36 const std::function<Status(llvm::Value*, llvm::Value*)>
    [all...]
tuple_ops.cc 37 llvm::Value* on_true, llvm::Value* on_false,
44 llvm::Value* pred_cond = b->CreateICmpNE(
54 llvm::Value* const element_index[] = {b->getInt64(0), b->getInt64(i)};
55 llvm::Value* on_true_element_address =
57 llvm::Value* on_true_element = b->CreateLoad(
59 llvm::Value* on_false_element_address =
61 llvm::Value* on_false_element = b->CreateLoad(
64 llvm::Value* output_element_address =
72 void EmitTuple(const IrArray& tuple, absl::Span<llvm::Value* const> operands
    [all...]
ir_array.h 26 #include "llvm/IR/Value.h"
39 // Value) and the shape of the array. The class includes methods for emitting
65 explicit Index(absl::Span<llvm::Value* const> multidim,
80 CHECK(absl::c_all_of(multidim, [&](llvm::Value* v) {
91 Index(llvm::Value* linear, const Shape& shape, llvm::IRBuilder<>* b);
98 Index(absl::Span<llvm::Value* const> multidim, const Shape& shape,
102 Index AddOffsetToDim(llvm::Value* addend, int64 dim,
104 std::vector<llvm::Value*> multi_index = multidim();
109 const std::vector<llvm::Value*>& multidim() const { return multidim_; }
110 llvm::Value* linear() const { return linear_;
    [all...]
  /external/protobuf/conformance/third_party/jsoncpp/
jsoncpp.cpp 145 * @param value Unsigned interger to convert to string
149 static inline void uintToString(LargestUInt value, char*& current) {
152 *--current = static_cast<signed char>(value % 10U + static_cast<unsigned>('0'));
153 value /= 10;
154 } while (value != 0);
196 #include <json/value.h>
285 Reader::parse(const std::string& document, Value& root, bool collectComments) {
292 bool Reader::parse(std::istream& sin, Value& root, bool collectComments) {
307 Value& root,
339 "A valid JSON document must be either an array or an object value."
3399 Value& value = (*it).second; local
3419 Value& value = (*it).second; local
3424 const Value* value = &((*this)[index]); local
3564 Value const* value = find(key, cend); local
4727 *document_ << value; local
4740 *document_ << value; local
5010 *sout_ << value; local
5027 *sout_ << value; local
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp 29 #include "llvm/IR/Value.h"
75 Value *getValue(Type *) const;
127 /// represented as <C, V>, where the V is a symbolic value, and C is a
138 Value *getSymVal() const { return Val; }
144 void set(short Coefficient, Value *V) {
148 void set(const APFloat &Coefficient, Value *V) {
152 void set(const ConstantFP *Coefficient, Value *V) {
161 static unsigned drillValueDownOneStep(Value* V, FAddend &A0, FAddend &A1);
163 /// Similar to FAddend::drillDownOneStep() except that the value being
170 // This addend has the value of "Coeff * Val"
    [all...]
  /external/capstone/arch/SystemZ/
SystemZInstPrinter.c 117 int64_t Value = MCOperand_getImm(MCInst_getOperand(MI, OpNum));
118 // assert(isUInt<4>(Value) && "Invalid u4imm argument");
119 if (Value >= 0) {
120 if (Value > HEX_THRESHOLD)
121 SStream_concat(O, "0x%"PRIx64, Value);
123 SStream_concat(O, "%"PRIu64, Value);
125 if (Value < -HEX_THRESHOLD)
126 SStream_concat(O, "-0x%"PRIx64, -Value);
128 SStream_concat(O, "-%"PRIu64, -Value);
133 MI->flat_insn->detail->sysz.operands[MI->flat_insn->detail->sysz.op_count].imm = Value;
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/PomAdapter/
InfPomAlignmentMisc.py 50 Value = EdkReleaseVersion.GetValue()
53 Value,
59 Value = Shadow.GetValue()
62 Value,
69 Value = DpxSourceItem[0]
72 Value,
78 Value = PciVendorId.GetValue()
81 Value,
87 Value = PciDeviceId.GetValue()
90 Value,
    [all...]
  /external/llvm/lib/Target/Sparc/MCTargetDesc/
SparcAsmBackend.cpp 22 static unsigned adjustFixupValue(unsigned Kind, uint64_t Value) {
30 return Value;
34 return (Value >> 2) & 0x3fffffff;
37 return (Value >> 2) & 0x3fffff;
40 return (Value >> 2) & 0x7ffff;
43 return (Value >> 2) & 0xc000;
46 return (Value >> 2) & 0x3fff;
54 return (Value >> 10) & 0x3fffff;
62 return Value & 0x3ff;
66 return (~Value >> 10) & 0x3fffff
    [all...]
  /external/llvm/lib/Transforms/Utils/
BypassSlowDivision.cpp 13 // runtime it is profitable to check the value of the operands, and if they are
31 Value *Dividend;
32 Value *Divisor;
34 DivOpInfo(bool InSignedOp, Value *InDividend, Value *InDivisor)
75 // value of the operands and uses a shorter-faster div/rem instruction when
82 Value *Dividend = I->getOperand(0);
83 Value *Divisor = I->getOperand(1);
101 Value *SlowQuotientV;
102 Value *SlowRemainderV
    [all...]
  /external/swiftshader/third_party/LLVM/lib/MC/
MCObjectStreamer.cpp 63 const MCExpr *MCObjectStreamer::AddValueSymbols(const MCExpr *Value) {
64 switch (Value->getKind()) {
66 cast<MCTargetExpr>(Value)->AddValueSymbols(Assembler);
73 const MCBinaryExpr *BE = cast<MCBinaryExpr>(Value);
80 Assembler->getOrCreateSymbolData(cast<MCSymbolRefExpr>(Value)->getSymbol());
84 AddValueSymbols(cast<MCUnaryExpr>(Value)->getSubExpr());
88 return Value;
91 void MCObjectStreamer::EmitValueImpl(const MCExpr *Value, unsigned Size,
98 if (AddValueSymbols(Value)->EvaluateAsAbsolute(AbsValue, getAssembler())) {
103 Value,
    [all...]
  /external/deqp-deps/SPIRV-Headers/tools/buildHeaders/jsoncpp/dist/
jsoncpp.cpp 145 * @param value Unsigned interger to convert to string
149 static inline void uintToString(LargestUInt value, char*& current) {
152 *--current = char(value % 10) + '0';
153 value /= 10;
154 } while (value != 0);
196 #include <json/value.h>
270 Reader::parse(const std::string& document, Value& root, bool collectComments) {
277 bool Reader::parse(std::istream& sin, Value& root, bool collectComments) {
292 Value& root,
324 "A valid JSON document must be either an array or an object value."
3366 Value& value = (*it).second; local
3386 Value& value = (*it).second; local
3391 const Value* value = &((*this)[index]); local
3531 Value const* value = find(key, end); local
    [all...]
  /external/shaderc/spirv-headers/tools/buildHeaders/jsoncpp/dist/
jsoncpp.cpp 145 * @param value Unsigned interger to convert to string
149 static inline void uintToString(LargestUInt value, char*& current) {
152 *--current = char(value % 10) + '0';
153 value /= 10;
154 } while (value != 0);
196 #include <json/value.h>
270 Reader::parse(const std::string& document, Value& root, bool collectComments) {
277 bool Reader::parse(std::istream& sin, Value& root, bool collectComments) {
292 Value& root,
324 "A valid JSON document must be either an array or an object value."
3366 Value& value = (*it).second; local
3386 Value& value = (*it).second; local
3391 const Value* value = &((*this)[index]); local
3531 Value const* value = find(key, end); local
    [all...]
  /external/swiftshader/third_party/SPIRV-Headers/tools/buildHeaders/jsoncpp/dist/
jsoncpp.cpp 145 * @param value Unsigned interger to convert to string
149 static inline void uintToString(LargestUInt value, char*& current) {
152 *--current = char(value % 10) + '0';
153 value /= 10;
154 } while (value != 0);
196 #include <json/value.h>
270 Reader::parse(const std::string& document, Value& root, bool collectComments) {
277 bool Reader::parse(std::istream& sin, Value& root, bool collectComments) {
292 Value& root,
324 "A valid JSON document must be either an array or an object value."
3366 Value& value = (*it).second; local
3386 Value& value = (*it).second; local
3391 const Value* value = &((*this)[index]); local
3531 Value const* value = find(key, end); local
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Library/
BaseMemoryLib.h 48 Fills a target buffer with a byte value, and returns the target buffer.
50 This function fills Length bytes of Buffer with Value, and returns Buffer.
56 @param Value The value with which to fill Length bytes of Buffer.
66 IN UINT8 Value
70 Fills a target buffer with a 16-bit value, and returns the target buffer.
72 This function fills Length bytes of Buffer with the 16-bit value specified by
73 Value, and returns Buffer. Value is repeated every 16-bits in for Length
83 @param Value The value with which to fill Length bytes of Buffer.
    [all...]
  /external/adhd/ucm-config/veyron/ROCKCHIP-I2S/
HiFi.conf 2 Value {
52 Value {
69 Value {
86 Value {
113 Value {
  /external/adhd/ucm-config/veyron_jaq/ROCKCHIP-I2S/
HiFi.conf 2 Value {
57 Value {
74 Value {
91 Value {
118 Value {
  /external/adhd/ucm-config/veyron_minnie/ROCKCHIP-I2S/
HiFi.conf 2 Value {
52 Value {
69 Value {
86 Value {
113 Value {
  /external/adhd/ucm-config/veyron_speedy/ROCKCHIP-I2S/
HiFi.conf 2 Value {
52 Value {
69 Value {
86 Value {
113 Value {
  /external/llvm/include/llvm/LineEditor/
LineEditor.h 132 CompleterModel(T Value) : Value(Value) {}
134 return Value(Buffer, Pos);
136 T Value;
141 ListCompleterModel(T Value) : Value(std::move(Value)) {}
144 return Value(Buffer, Pos);
146 T Value;
    [all...]
  /external/llvm/lib/Target/Lanai/MCTargetDesc/
LanaiAsmBackend.cpp 24 // Prepare value for the target space
25 static unsigned adjustFixupValue(unsigned Kind, uint64_t Value) {
31 return Value;
38 return Value;
53 uint64_t Value, bool IsPCRel) const override;
58 bool fixupNeedsRelaxation(const MCFixup &Fixup, uint64_t Value,
89 unsigned DataSize, uint64_t Value,
92 Value = adjustFixupValue(static_cast<unsigned>(Kind), Value);
94 if (!Value)
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXInferAddressSpaces.cpp 116 using ValueToAddrSpaceMapTy = DenseMap<const Value *, unsigned>;
130 updateAddressSpace(const Value &V,
135 void inferAddressSpaces(const std::vector<Value *> &Postorder,
142 rewriteWithNewAddressSpaces(const std::vector<Value *> &Postorder,
160 static bool isAddressExpression(const Value &V) {
178 static SmallVector<Value *, 2> getPointerOperands(const Value &V) {
184 return SmallVector<Value *, 2>(IncomingValues.begin(),
199 Value *V, std::vector<std::pair<Value *, bool>> *PostorderStack
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/LineEditor/
LineEditor.h 132 CompleterModel(T Value) : Value(Value) {}
134 return Value(Buffer, Pos);
136 T Value;
141 ListCompleterModel(T Value) : Value(std::move(Value)) {}
144 return Value(Buffer, Pos);
146 T Value;
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/
MCSection.h 118 void setAlignment(unsigned Value) { Alignment = Value; }
121 void setOrdinal(unsigned Value) { Ordinal = Value; }
124 void setLayoutOrder(unsigned Value) { LayoutOrder = Value; }
138 void setHasInstructions(bool Value) { HasInstructions = Value; }
141 void setIsRegistered(bool Value) { IsRegistered = Value; }
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/SystemZ/MCTargetDesc/
SystemZMCAsmBackend.cpp 21 // Value is a fully-resolved relocation value: Symbol + Addend [- Pivot].
24 static uint64_t extractBitsForFixup(MCFixupKind Kind, uint64_t Value) {
26 return Value;
33 return (int64_t)Value / 2;
56 uint64_t Value, bool IsResolved,
62 bool fixupNeedsRelaxation(const MCFixup &Fixup, uint64_t Value,
100 MutableArrayRef<char> Data, uint64_t Value,
111 Value = extractBitsForFixup(Kind, Value);
    [all...]

Completed in 1421 milliseconds

<<21222324252627282930>>