/external/swiftshader/src/Reactor/ |
D | Nucleus.hpp | 26 class Value; 58 static Value *allocateStackVariable(Type *type, int arraySize = 0); 64 static Value *getArgument(unsigned int index); 68 static void createRet(Value *V); 70 static void createCondBr(Value *cond, BasicBlock *ifTrue, BasicBlock *ifFalse); 73 static Value *createAdd(Value *lhs, Value *rhs); 74 static Value *createSub(Value *lhs, Value *rhs); 75 static Value *createMul(Value *lhs, Value *rhs); 76 static Value *createUDiv(Value *lhs, Value *rhs); 77 static Value *createSDiv(Value *lhs, Value *rhs); [all …]
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/ |
D | builder_misc.h | 60 Value *VIMMED1(int i); 61 Value *VIMMED1_16(int i); 63 Value *VIMMED1(uint32_t i); 64 Value *VIMMED1_16(uint32_t i); 66 Value *VIMMED1(float i); 67 Value *VIMMED1_16(float i); 69 Value *VIMMED1(bool i); 70 Value *VIMMED1_16(bool i); 72 Value *VUNDEF(Type* t); 74 Value *VUNDEF_F(); [all …]
|
D | builder_misc.cpp | 195 Value *Builder::VIMMED1(int i) in VIMMED1() 200 Value *Builder::VIMMED1_16(int i) in VIMMED1_16() 205 Value *Builder::VIMMED1(uint32_t i) in VIMMED1() 210 Value *Builder::VIMMED1_16(uint32_t i) in VIMMED1_16() 215 Value *Builder::VIMMED1(float i) in VIMMED1() 220 Value *Builder::VIMMED1_16(float i) in VIMMED1_16() 225 Value *Builder::VIMMED1(bool i) in VIMMED1() 230 Value *Builder::VIMMED1_16(bool i) in VIMMED1_16() 235 Value *Builder::VUNDEF_IPTR() in VUNDEF_IPTR() 240 Value *Builder::VUNDEF(Type* t) in VUNDEF() [all …]
|
/external/tcpdump/tests/ |
D | pimv2-oobr-1.out | 4 Hold Time Option (1), length 2, Value: 1m45s 6 Generation ID Option (20), length 4, Value: 0xd76fc4dc 8 DR Priority Option (19), length 4, Value: 1 10 Generation ID Option (20), length 0, Value: ERROR: Option Length != 4 Bytes (0) 11 Unknown Option (0), length 0, Value: 12 Generation ID Option (20), length 0, Value: ERROR: Option Length != 4 Bytes (0) 13 Unknown Option (0), length 0, Value: 14 Generation ID Option (20), length 0, Value: ERROR: Option Length != 4 Bytes (0) 15 Unknown Option (0), length 0, Value: 16 Generation ID Option (20), length 0, Value: ERROR: Option Length != 4 Bytes (0) [all …]
|
D | pimv2-oobr-2.out | 4 Hold Time Option (1), length 2, Value: 1m45s 6 Generation ID Option (20), length 4, Value: 0x3f0ef4cd 8 DR Priority Option (19), length 4, Value: 1 10 Unknown Option (0), length 256, Value: 27 Unknown Option (256), length 1, Value: 29 Hold Time Option (1), length 0, Value: ERROR: Option Length != 2 Bytes (0) 30 Unknown Option (256), length 1, Value: 32 Hold Time Option (1), length 0, Value: ERROR: Option Length != 2 Bytes (0) 33 Unknown Option (256), length 1, Value: 35 Hold Time Option (1), length 0, Value: ERROR: Option Length != 2 Bytes (0) [all …]
|
/external/tensorflow/tensorflow/compiler/xla/service/cpu/ |
D | vector_support_library.h | 51 llvm::Value* Mul(llvm::Value* lhs, llvm::Value* rhs); 52 llvm::Value* Mul(int64 lhs, llvm::Value* rhs) { in Mul() 55 llvm::Value* Mul(const llvm::APFloat& lhs, llvm::Value* rhs) { in Mul() 61 llvm::Value* Mul(double lhs, llvm::Value* rhs) = delete; 62 llvm::Value* Mul(float lhs, llvm::Value* rhs) = delete; 64 llvm::Value* Add(llvm::Value* lhs, llvm::Value* rhs); 65 llvm::Value* Add(int64 lhs, llvm::Value* rhs) { in Add() 68 llvm::Value* Add(const llvm::APFloat& lhs, llvm::Value* rhs) { in Add() 74 llvm::Value* Add(double lhs, llvm::Value* rhs) = delete; 75 llvm::Value* Add(float lhs, llvm::Value* rhs) = delete; [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Transforms/Utils/ |
D | BuildLibCalls.h | 22 class Value; variable 41 Value *castToCStr(Value *V, IRBuilder<> &B); 46 Value *emitStrLen(Value *Ptr, IRBuilder<> &B, const DataLayout &DL, 52 Value *emitStrNLen(Value *Ptr, Value *MaxLen, IRBuilder<> &B, 58 Value *emitStrChr(Value *Ptr, char C, IRBuilder<> &B, 62 Value *emitStrNCmp(Value *Ptr1, Value *Ptr2, Value *Len, IRBuilder<> &B, 67 Value *emitStrCpy(Value *Dst, Value *Src, IRBuilder<> &B, 72 Value *emitStrNCpy(Value *Dst, Value *Src, Value *Len, IRBuilder<> &B, 77 Value *emitMemCpyChk(Value *Dst, Value *Src, Value *Len, Value *ObjSize, 83 Value *emitMemChr(Value *Ptr, Value *Val, Value *Len, IRBuilder<> &B, [all …]
|
D | SimplifyLibCalls.h | 24 class Value; variable 52 Value *optimizeCall(CallInst *CI); 55 Value *optimizeMemCpyChk(CallInst *CI, IRBuilder<> &B); 56 Value *optimizeMemMoveChk(CallInst *CI, IRBuilder<> &B); 57 Value *optimizeMemSetChk(CallInst *CI, IRBuilder<> &B); 60 Value *optimizeStrpCpyChk(CallInst *CI, IRBuilder<> &B, LibFunc Func); 61 Value *optimizeStrpNCpyChk(CallInst *CI, IRBuilder<> &B, LibFunc Func); 79 function_ref<void(Instruction *, Value *)> Replacer; 85 static void replaceAllUsesWithDefault(Instruction *I, Value *With); 88 void replaceAllUsesWith(Instruction *I, Value *With); [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/ |
D | InstructionSimplify.h | 52 class Value; variable 81 Value *SimplifyAddInst(Value *LHS, Value *RHS, bool isNSW, bool isNUW, 85 Value *SimplifySubInst(Value *LHS, Value *RHS, bool isNSW, bool isNUW, 89 Value *SimplifyFAddInst(Value *LHS, Value *RHS, FastMathFlags FMF, 93 Value *SimplifyFSubInst(Value *LHS, Value *RHS, FastMathFlags FMF, 97 Value *SimplifyFMulInst(Value *LHS, Value *RHS, FastMathFlags FMF, 101 Value *SimplifyMulInst(Value *LHS, Value *RHS, const SimplifyQuery &Q); 104 Value *SimplifySDivInst(Value *LHS, Value *RHS, const SimplifyQuery &Q); 107 Value *SimplifyUDivInst(Value *LHS, Value *RHS, const SimplifyQuery &Q); 110 Value *SimplifyFDivInst(Value *LHS, Value *RHS, FastMathFlags FMF, [all …]
|
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/ |
D | InstructionSimplify.h | 25 class Value; variable 32 Value *SimplifyAddInst(Value *LHS, Value *RHS, bool isNSW, bool isNUW, 37 Value *SimplifySubInst(Value *LHS, Value *RHS, bool isNSW, bool isNUW, 42 Value *SimplifyMulInst(Value *LHS, Value *RHS, const TargetData *TD = 0, 47 Value *SimplifySDivInst(Value *LHS, Value *RHS, const TargetData *TD = 0, 52 Value *SimplifyUDivInst(Value *LHS, Value *RHS, const TargetData *TD = 0, 57 Value *SimplifyFDivInst(Value *LHS, Value *RHS, const TargetData *TD = 0, 62 Value *SimplifySRemInst(Value *LHS, Value *RHS, const TargetData *TD = 0, 67 Value *SimplifyURemInst(Value *LHS, Value *RHS, const TargetData *TD = 0, 72 Value *SimplifyFRemInst(Value *LHS, Value *RHS, const TargetData *TD = 0, [all …]
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | elemental_ir_emitter.h | 43 virtual StatusOr<llvm::Value*> EmitUnaryOp(const HloInstruction* op, 44 llvm::Value* operand_value); 46 virtual StatusOr<llvm::Value*> EmitBinaryOp(const HloInstruction* op, 47 llvm::Value* lhs_value, 48 llvm::Value* rhs_value); 64 virtual StatusOr<llvm::Value*> EmitIntegerUnaryOp(const HloInstruction* op, 65 llvm::Value* operand_value); 67 virtual StatusOr<llvm::Value*> EmitFloatUnaryOp(const HloInstruction* op, 68 llvm::Value* operand_value); 70 virtual StatusOr<llvm::Value*> EmitComplexUnaryOp(const HloInstruction* op, [all …]
|
/external/llvm/include/llvm/Support/ |
D | ScopedPrinter.h | 34 T Value; member 35 EnumEntry(StringRef N, StringRef A, T V) : Name(N), AltName(A), Value(V) {} in EnumEntry() 36 EnumEntry(StringRef N, T V) : Name(N), AltName(N), Value(V) {} in EnumEntry() 44 HexNumber(char Value) : Value(static_cast<unsigned char>(Value)) {} in HexNumber() 45 HexNumber(signed char Value) : Value(static_cast<unsigned char>(Value)) {} in HexNumber() 46 HexNumber(signed short Value) : Value(static_cast<unsigned short>(Value)) {} in HexNumber() 47 HexNumber(signed int Value) : Value(static_cast<unsigned int>(Value)) {} in HexNumber() 48 HexNumber(signed long Value) : Value(static_cast<unsigned long>(Value)) {} in HexNumber() 49 HexNumber(signed long long Value) in HexNumber() 50 : Value(static_cast<unsigned long long>(Value)) {} in HexNumber() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/ |
D | ScopedPrinter.h | 34 T Value; member 35 EnumEntry(StringRef N, StringRef A, T V) : Name(N), AltName(A), Value(V) {} in EnumEntry() 36 EnumEntry(StringRef N, T V) : Name(N), AltName(N), Value(V) {} in EnumEntry() 44 HexNumber(char Value) : Value(static_cast<unsigned char>(Value)) {} in HexNumber() 45 HexNumber(signed char Value) : Value(static_cast<unsigned char>(Value)) {} in HexNumber() 46 HexNumber(signed short Value) : Value(static_cast<unsigned short>(Value)) {} in HexNumber() 47 HexNumber(signed int Value) : Value(static_cast<unsigned int>(Value)) {} in HexNumber() 48 HexNumber(signed long Value) : Value(static_cast<unsigned long>(Value)) {} in HexNumber() 49 HexNumber(signed long long Value) in HexNumber() 50 : Value(static_cast<unsigned long long>(Value)) {} in HexNumber() [all …]
|
/external/capstone/ |
D | MathExtras.h | 39 static inline uint32_t Hi_32(uint64_t Value) { in Hi_32() argument 40 return (uint32_t)(Value >> 32); in Hi_32() 44 static inline uint32_t Lo_32(uint64_t Value) { in Lo_32() argument 45 return (uint32_t)(Value); in Lo_32() 63 static inline bool isMask_32(uint32_t Value) { in isMask_32() argument 64 return Value && ((Value + 1) & Value) == 0; in isMask_32() 70 static inline bool isMask_64(uint64_t Value) { in isMask_64() argument 71 return Value && ((Value + 1) & Value) == 0; in isMask_64() 77 static inline bool isShiftedMask_32(uint32_t Value) { in isShiftedMask_32() argument 78 return isMask_32((Value - 1) | Value); in isShiftedMask_32() [all …]
|
/external/clang/unittests/ASTMatchers/Dynamic/ |
D | VariantValueTest.cpp | 21 VariantValue Value = kUnsigned; in TEST() local 23 EXPECT_TRUE(Value.isUnsigned()); in TEST() 24 EXPECT_EQ(kUnsigned, Value.getUnsigned()); in TEST() 26 EXPECT_TRUE(Value.hasValue()); in TEST() 27 EXPECT_FALSE(Value.isString()); in TEST() 28 EXPECT_FALSE(Value.isMatcher()); in TEST() 33 VariantValue Value = kString; in TEST() local 35 EXPECT_TRUE(Value.isString()); in TEST() 36 EXPECT_EQ(kString, Value.getString()); in TEST() 37 EXPECT_EQ("String", Value.getTypeAsString()); in TEST() [all …]
|
/external/swiftshader/third_party/LLVM/include/llvm/Support/ |
D | MathExtras.h | 26 inline uint32_t Hi_32(uint64_t Value) { in Hi_32() argument 27 return static_cast<uint32_t>(Value >> 32); in Hi_32() 31 inline uint32_t Lo_32(uint64_t Value) { in Lo_32() argument 32 return static_cast<uint32_t>(Value); in Lo_32() 88 inline bool isMask_32(uint32_t Value) { in isMask_32() argument 89 return Value && ((Value + 1) & Value) == 0; in isMask_32() 95 inline bool isMask_64(uint64_t Value) { in isMask_64() argument 96 return Value && ((Value + 1) & Value) == 0; in isMask_64() 102 inline bool isShiftedMask_32(uint32_t Value) { in isShiftedMask_32() argument 103 return isMask_32((Value - 1) | Value); in isShiftedMask_32() [all …]
|
D | IRBuilder.h | 178 Value *CreateGlobalString(StringRef Str, const Twine &Name = ""); 275 CallInst *CreateMemSet(Value *Ptr, Value *Val, uint64_t Size, unsigned Align, 280 CallInst *CreateMemSet(Value *Ptr, Value *Val, Value *Size, unsigned Align, 286 CallInst *CreateMemCpy(Value *Dst, Value *Src, uint64_t Size, unsigned Align, 291 CallInst *CreateMemCpy(Value *Dst, Value *Src, Value *Size, unsigned Align, 297 CallInst *CreateMemMove(Value *Dst, Value *Src, uint64_t Size, unsigned Align, 302 CallInst *CreateMemMove(Value *Dst, Value *Src, Value *Size, unsigned Align, 307 CallInst *CreateLifetimeStart(Value *Ptr, ConstantInt *Size = 0); 311 CallInst *CreateLifetimeEnd(Value *Ptr, ConstantInt *Size = 0); 314 Value *getCastedInt8PtrValue(Value *Ptr); [all …]
|
/external/llvm/include/llvm/Transforms/Utils/ |
D | BuildLibCalls.h | 21 class Value; variable 33 Value *castToCStr(Value *V, IRBuilder<> &B); 38 Value *emitStrLen(Value *Ptr, IRBuilder<> &B, const DataLayout &DL, 44 Value *emitStrNLen(Value *Ptr, Value *MaxLen, IRBuilder<> &B, 50 Value *emitStrChr(Value *Ptr, char C, IRBuilder<> &B, 54 Value *emitStrNCmp(Value *Ptr1, Value *Ptr2, Value *Len, IRBuilder<> &B, 59 Value *emitStrCpy(Value *Dst, Value *Src, IRBuilder<> &B, 64 Value *emitStrNCpy(Value *Dst, Value *Src, Value *Len, IRBuilder<> &B, 69 Value *emitMemCpyChk(Value *Dst, Value *Src, Value *Len, Value *ObjSize, 75 Value *emitMemChr(Value *Ptr, Value *Val, Value *Len, IRBuilder<> &B, [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AVR/MCTargetDesc/ |
D | AVRAsmBackend.cpp | 38 void signed_width(unsigned Width, uint64_t Value, std::string Description, in signed_width() argument 40 if (!isIntN(Width, Value)) { in signed_width() 57 void unsigned_width(unsigned Width, uint64_t Value, std::string Description, in unsigned_width() argument 59 if (!isUIntN(Width, Value)) { in unsigned_width() 76 void adjustBranch(unsigned Size, const MCFixup &Fixup, uint64_t &Value, in adjustBranch() argument 80 unsigned_width(Size + 1, Value, std::string("branch target"), Fixup, Ctx); in adjustBranch() 83 AVR::fixups::adjustBranchTarget(Value); in adjustBranch() 87 void adjustRelativeBranch(unsigned Size, const MCFixup &Fixup, uint64_t &Value, in adjustRelativeBranch() argument 91 signed_width(Size + 1, Value, std::string("branch target"), Fixup, Ctx); in adjustRelativeBranch() 93 Value -= 2; in adjustRelativeBranch() [all …]
|
/external/libchrome/base/ |
D | values.cc | 31 static_cast<size_t>(Value::Type::LIST) + 1, 34 std::unique_ptr<Value> CopyWithoutEmptyChildren(const Value& node); 39 std::unique_ptr<Value> CopyListWithoutEmptyChildren(const Value& list) { in CopyListWithoutEmptyChildren() 40 Value copy(Value::Type::LIST); in CopyListWithoutEmptyChildren() 42 std::unique_ptr<Value> child_copy = CopyWithoutEmptyChildren(entry); in CopyListWithoutEmptyChildren() 47 : std::make_unique<Value>(std::move(copy)); in CopyListWithoutEmptyChildren() 54 std::unique_ptr<Value> child_copy = CopyWithoutEmptyChildren(it.value()); in CopyDictionaryWithoutEmptyChildren() 64 std::unique_ptr<Value> CopyWithoutEmptyChildren(const Value& node) { in CopyWithoutEmptyChildren() 66 case Value::Type::LIST: in CopyWithoutEmptyChildren() 69 case Value::Type::DICTIONARY: in CopyWithoutEmptyChildren() [all …]
|
/external/swiftshader/third_party/LLVM/lib/Target/ARM/MCTargetDesc/ |
D | ARMAsmBackend.cpp | 170 static unsigned adjustFixupValue(unsigned Kind, uint64_t Value) { in adjustFixupValue() argument 177 return Value; in adjustFixupValue() 179 Value >>= 16; in adjustFixupValue() 184 unsigned Hi4 = (Value & 0xF000) >> 12; in adjustFixupValue() 185 unsigned Lo12 = Value & 0x0FFF; in adjustFixupValue() 188 Value = (Hi4 << 16) | (Lo12); in adjustFixupValue() 189 return Value; in adjustFixupValue() 192 Value >>= 16; in adjustFixupValue() 198 unsigned Hi4 = (Value & 0xF000) >> 12; in adjustFixupValue() 199 unsigned i = (Value & 0x800) >> 11; in adjustFixupValue() [all …]
|
/external/llvm/include/llvm/Analysis/ |
D | InstructionSimplify.h | 47 class Value; variable 51 Value *SimplifyAddInst(Value *LHS, Value *RHS, bool isNSW, bool isNUW, 60 Value *SimplifySubInst(Value *LHS, Value *RHS, bool isNSW, bool isNUW, 69 Value *SimplifyFAddInst(Value *LHS, Value *RHS, FastMathFlags FMF, 78 Value *SimplifyFSubInst(Value *LHS, Value *RHS, FastMathFlags FMF, 87 Value *SimplifyFMulInst(Value *LHS, Value *RHS, FastMathFlags FMF, 96 Value *SimplifyMulInst(Value *LHS, Value *RHS, const DataLayout &DL, 104 Value *SimplifySDivInst(Value *LHS, Value *RHS, const DataLayout &DL, 112 Value *SimplifyUDivInst(Value *LHS, Value *RHS, const DataLayout &DL, 120 Value *SimplifyFDivInst(Value *LHS, Value *RHS, FastMathFlags FMF, [all …]
|
/external/swiftshader/third_party/LLVM/include/llvm/Transforms/Utils/ |
D | BuildLibCalls.h | 21 class Value; variable 25 Value *CastToCStr(Value *V, IRBuilder<> &B); 30 Value *EmitStrLen(Value *Ptr, IRBuilder<> &B, const TargetData *TD); 35 Value *EmitStrChr(Value *Ptr, char C, IRBuilder<> &B, const TargetData *TD); 38 Value *EmitStrNCmp(Value *Ptr1, Value *Ptr2, Value *Len, IRBuilder<> &B, 43 Value *EmitStrCpy(Value *Dst, Value *Src, IRBuilder<> &B, 48 Value *EmitStrNCpy(Value *Dst, Value *Src, Value *Len, IRBuilder<> &B, 54 Value *EmitMemCpyChk(Value *Dst, Value *Src, Value *Len, Value *ObjSize, 59 Value *EmitMemChr(Value *Ptr, Value *Val, Value *Len, IRBuilder<> &B, 63 Value *EmitMemCmp(Value *Ptr1, Value *Ptr2, Value *Len, IRBuilder<> &B, [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/ |
D | IRBuilder.h | 404 CallInst *CreateMemSet(Value *Ptr, Value *Val, uint64_t Size, unsigned Align, 412 CallInst *CreateMemSet(Value *Ptr, Value *Val, Value *Size, unsigned Align, 423 CallInst *CreateElementUnorderedAtomicMemSet(Value *Ptr, Value *Val, 434 CallInst *CreateElementUnorderedAtomicMemSet(Value *Ptr, Value *Val, 435 Value *Size, unsigned Align, 446 CallInst *CreateMemCpy(Value *Dst, unsigned DstAlign, Value *Src, 457 CallInst *CreateMemCpy(Value *Dst, unsigned DstAlign, Value *Src, 458 unsigned SrcAlign, Value *Size, 473 Value *Dst, unsigned DstAlign, Value *Src, unsigned SrcAlign, 483 Value *Dst, unsigned DstAlign, Value *Src, unsigned SrcAlign, Value *Size, [all …]
|
/external/llvm/tools/llvm-readobj/ |
D | ARMAttributeParser.cpp | 77 uint64_t Value = decodeULEB128(Data + Offset, &Length); in ParseInteger() local 79 return Value; in ParseInteger() 107 void ARMAttributeParser::PrintAttribute(unsigned Tag, unsigned Value, in PrintAttribute() argument 113 SW.printNumber("Value", Value); in PrintAttribute() 128 uint64_t Value = ParseInteger(Data, Offset); in CPU_arch() local 130 (Value < array_lengthof(Strings)) ? Strings[Value] : nullptr; in CPU_arch() 131 PrintAttribute(Tag, Value, ValueDesc); in CPU_arch() 155 uint64_t Value = ParseInteger(Data, Offset); in ARM_ISA_use() local 157 (Value < array_lengthof(Strings)) ? Strings[Value] : nullptr; in ARM_ISA_use() 158 PrintAttribute(Tag, Value, ValueDesc); in ARM_ISA_use() [all …]
|