/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/ |
D | DebugLocEntry.h | 33 struct Value { struct 34 Value(const DIExpression *Expr, int64_t i) in Value() argument 38 Value(const DIExpression *Expr, const ConstantFP *CFP) in Value() function 42 Value(const DIExpression *Expr, const ConstantInt *CIP) in Value() function 46 Value(const DIExpression *Expr, MachineLocation Loc) in Value() function 52 const DIExpression *Expression; 78 friend bool operator==(const Value &, const Value &); argument 101 SmallVector<Value, 1> Values; argument
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | DebugLocEntry.h | 32 struct Value { struct 33 Value(const DIExpression *Expr, int64_t i) in Value() function 37 Value(const DIExpression *Expr, const ConstantFP *CFP) in Value() argument 41 Value(const DIExpression *Expr, const ConstantInt *CIP) in Value() function 45 Value(const DIExpression *Expr, MachineLocation Loc) in Value() function 51 const DIExpression *Expression; 77 friend bool operator==(const Value &, const Value &); argument 98 SmallVector<Value, 1> Values; argument
|
/external/swiftshader/third_party/LLVM/include/llvm/Support/ |
D | MathExtras.h | 26 inline uint32_t Hi_32(uint64_t Value) { in Hi_32() 31 inline uint32_t Lo_32(uint64_t Value) { in Lo_32() 88 inline bool isMask_32(uint32_t Value) { in isMask_32() 95 inline bool isMask_64(uint64_t Value) { in isMask_64() 102 inline bool isShiftedMask_32(uint32_t Value) { in isShiftedMask_32() 108 inline bool isShiftedMask_64(uint64_t Value) { in isShiftedMask_64() 114 inline bool isPowerOf2_32(uint32_t Value) { in isPowerOf2_32() 120 inline bool isPowerOf2_64(uint64_t Value) { in isPowerOf2_64() 126 inline uint16_t ByteSwap_16(uint16_t Value) { in ByteSwap_16() 132 inline uint32_t ByteSwap_32(uint32_t Value) { in ByteSwap_32() [all …]
|
/external/swiftshader/third_party/subzero/runtime/ |
D | szrt.c | 23 uint64_t __Sz_fptoui_f32_i64(float Value) { return (uint64_t)Value; } in __Sz_fptoui_f32_i64() 25 uint64_t __Sz_fptoui_f64_i64(double Value) { return (uint64_t)Value; } in __Sz_fptoui_f64_i64() 27 int64_t __Sz_fptosi_f32_i64(float Value) { return (int64_t)Value; } in __Sz_fptosi_f32_i64() 29 int64_t __Sz_fptosi_f64_i64(double Value) { return (int64_t)Value; } in __Sz_fptosi_f64_i64() 31 float __Sz_uitofp_i32_f32(uint32_t Value) { return (float)Value; } in __Sz_uitofp_i32_f32() 33 float __Sz_uitofp_i64_f32(uint64_t Value) { return (float)Value; } in __Sz_uitofp_i64_f32() 35 double __Sz_uitofp_i32_f64(uint32_t Value) { return (double)Value; } in __Sz_uitofp_i32_f64() 37 double __Sz_uitofp_i64_f64(uint64_t Value) { return (double)Value; } in __Sz_uitofp_i64_f64() 39 float __Sz_sitofp_i64_f32(int64_t Value) { return (float)Value; } in __Sz_sitofp_i64_f32() 41 double __Sz_sitofp_i64_f64(int64_t Value) { return (double)Value; } in __Sz_sitofp_i64_f64()
|
/external/swiftshader/third_party/llvm-7.0/llvm/bindings/go/llvm/ |
D | ir.go | 38 Value struct { struct 39 C C.LLVMValueRef 82 func (c Value) IsNil() bool { return c.C == nil } 93 func llvmValueRefPtr(t *Value) *C.LLVMValueRef { return (*C.LLVMValueRef)(unsafe.Pointer(t)) } 107 func llvmValueRefs(values []Value) (*C.LLVMValueRef, C.unsigned) { 667 func (v Value) Type() (t Type) { t.C = C.LLVMTypeOf(v.C); return } 668 func (v Value) Name() string { return C.GoString(C.LLVMGetValueName(v.C)) } 669 func (v Value) SetName(name string) { 674 func (v Value) Dump() { C.LLVMDumpValue(v.C) } 675 func (v Value) ReplaceAllUsesWith(nv Value) { C.LLVMReplaceAllUsesWith(v.C, nv.C) } [all …]
|
/external/llvm/bindings/go/llvm/ |
D | ir.go | 37 Value struct { struct 38 C C.LLVMValueRef 75 func (c Value) IsNil() bool { return c.C == nil } 85 func llvmValueRefPtr(t *Value) *C.LLVMValueRef { return (*C.LLVMValueRef)(unsafe.Pointer(t)) } 99 func llvmValueRefs(values []Value) (*C.LLVMValueRef, C.unsigned) { 634 func (v Value) Type() (t Type) { t.C = C.LLVMTypeOf(v.C); return } 635 func (v Value) Name() string { return C.GoString(C.LLVMGetValueName(v.C)) } 636 func (v Value) SetName(name string) { 641 func (v Value) Dump() { C.LLVMDumpValue(v.C) } 642 func (v Value) ReplaceAllUsesWith(nv Value) { C.LLVMReplaceAllUsesWith(v.C, nv.C) } [all …]
|
/external/llvm/lib/DebugInfo/CodeView/ |
D | TypeRecordBuilder.cpp | 24 void TypeRecordBuilder::writeUInt8(uint8_t Value) { in writeUInt8() 28 void TypeRecordBuilder::writeInt16(int16_t Value) { in writeInt16() 32 void TypeRecordBuilder::writeUInt16(uint16_t Value) { in writeUInt16() 36 void TypeRecordBuilder::writeInt32(int32_t Value) { in writeInt32() 40 void TypeRecordBuilder::writeUInt32(uint32_t Value) { in writeUInt32() 44 void TypeRecordBuilder::writeInt64(int64_t Value) { in writeInt64() 48 void TypeRecordBuilder::writeUInt64(uint64_t Value) { in writeUInt64() 52 void TypeRecordBuilder::writeEncodedInteger(int64_t Value) { in writeEncodedInteger() 60 void TypeRecordBuilder::writeEncodedSignedInteger(int64_t Value) { in writeEncodedSignedInteger() 79 void TypeRecordBuilder::writeEncodedUnsignedInteger(uint64_t Value) { in writeEncodedUnsignedInteger() [all …]
|
/external/v8/src/ast/ |
D | context-slot-cache.h | 59 struct Value { struct 60 Value(VariableMode mode, InitializationFlag init_flag, in Value() argument 75 explicit inline Value(uint32_t value) : value_(value) {} in Value() function 77 uint32_t raw() { return value_; } in raw() 79 VariableMode mode() { return ModeField::decode(value_); } in mode() 81 InitializationFlag initialization_flag() { in initialization_flag() 85 MaybeAssignedFlag maybe_assigned_flag() { in maybe_assigned_flag() 89 int index() { return IndexField::decode(value_); } in index()
|
/external/tensorflow/tensorflow/core/framework/ |
D | variant.h | 275 struct Value : ValueInterface { struct 277 explicit Value(in_place_t /*tag*/, Args&&... args) in Value() function 290 std::unique_ptr<ValueInterface> Clone() const override { in Clone() argument 291 return std::unique_ptr<ValueInterface>(new Value(in_place, value)); in Clone() argument 313 // value_ can point to any type T as wrapped by a ValueInterface. argument
|
/external/llvm/include/llvm/Object/ |
D | RelocVisitor.h | 33 int64_t Value; member 69 RelocToApply visitELF(uint32_t RelocType, RelocationRef R, uint64_t Value) { in visitELF() 212 RelocToApply visitCOFF(uint32_t RelocType, RelocationRef R, uint64_t Value) { in visitCOFF() 235 RelocToApply visitMachO(uint32_t RelocType, RelocationRef R, uint64_t Value) { in visitMachO() 270 RelocToApply visitELF_386_32(RelocationRef R, uint64_t Value) { in visitELF_386_32() 274 RelocToApply visitELF_386_PC32(RelocationRef R, uint64_t Value) { in visitELF_386_PC32() 283 RelocToApply visitELF_X86_64_64(RelocationRef R, uint64_t Value) { in visitELF_X86_64_64() 287 RelocToApply visitELF_X86_64_PC32(RelocationRef R, uint64_t Value) { in visitELF_X86_64_PC32() 292 RelocToApply visitELF_X86_64_32(RelocationRef R, uint64_t Value) { in visitELF_X86_64_32() 297 RelocToApply visitELF_X86_64_32S(RelocationRef R, uint64_t Value) { in visitELF_X86_64_32S() [all …]
|
/external/capstone/ |
D | MathExtras.h | 39 static inline uint32_t Hi_32(uint64_t Value) { in Hi_32() 44 static inline uint32_t Lo_32(uint64_t Value) { in Lo_32() 63 static inline bool isMask_32(uint32_t Value) { in isMask_32() 70 static inline bool isMask_64(uint64_t Value) { in isMask_64() 77 static inline bool isShiftedMask_32(uint32_t Value) { in isShiftedMask_32() 83 static inline bool isShiftedMask_64(uint64_t Value) { in isShiftedMask_64() 89 static inline bool isPowerOf2_32(uint32_t Value) { in isPowerOf2_32() 97 static inline unsigned CountLeadingZeros_32(uint32_t Value) { in CountLeadingZeros_32() 126 static inline unsigned CountLeadingOnes_32(uint32_t Value) { in CountLeadingOnes_32() 134 static inline unsigned CountLeadingZeros_64(uint64_t Value) { in CountLeadingZeros_64() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Object/ |
D | RelocVisitor.h | 63 uint64_t visitELF(uint32_t Rel, RelocationRef R, uint64_t Value) { in visitELF() 127 uint64_t visitX86_64(uint32_t Rel, RelocationRef R, uint64_t Value) { in visitX86_64() 143 uint64_t visitAarch64(uint32_t Rel, RelocationRef R, uint64_t Value) { in visitAarch64() 158 uint64_t visitBpf(uint32_t Rel, RelocationRef R, uint64_t Value) { in visitBpf() 169 uint64_t visitMips64(uint32_t Rel, RelocationRef R, uint64_t Value) { in visitMips64() 182 uint64_t visitPPC64(uint32_t Rel, RelocationRef R, uint64_t Value) { in visitPPC64() 193 uint64_t visitSystemz(uint32_t Rel, RelocationRef R, uint64_t Value) { in visitSystemz() 208 uint64_t visitSparc64(uint32_t Rel, RelocationRef R, uint64_t Value) { in visitSparc64() 220 uint64_t visitAmdgpu(uint32_t Rel, RelocationRef R, uint64_t Value) { in visitAmdgpu() 230 uint64_t visitX86(uint32_t Rel, RelocationRef R, uint64_t Value) { in visitX86() [all …]
|
/external/llvm/include/llvm/Support/ |
D | ScopedPrinter.h | 34 T Value; member 56 uint64_t Value; member 62 template <class T> const std::string to_string(const T &Value) { in to_string() 91 template <typename T> HexNumber hex(T Value) { return HexNumber(Value); } in hex() 94 void printEnum(StringRef Label, T Value, in printEnum() 148 template <typename T> void printFlags(StringRef Label, T Value) { in printFlags() 161 void printNumber(StringRef Label, uint64_t Value) { in printNumber() 165 void printNumber(StringRef Label, uint32_t Value) { in printNumber() 169 void printNumber(StringRef Label, uint16_t Value) { in printNumber() 173 void printNumber(StringRef Label, uint8_t Value) { in printNumber() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/ |
D | ScopedPrinter.h | 34 T Value; member 56 uint64_t Value; member 62 template <class T> const std::string to_string(const T &Value) { in to_string() 93 template <typename T> HexNumber hex(T Value) { return HexNumber(Value); } in hex() 96 void printEnum(StringRef Label, T Value, in printEnum() 150 template <typename T> void printFlags(StringRef Label, T Value) { in printFlags() 163 void printNumber(StringRef Label, uint64_t Value) { in printNumber() 167 void printNumber(StringRef Label, uint32_t Value) { in printNumber() 171 void printNumber(StringRef Label, uint16_t Value) { in printNumber() 175 void printNumber(StringRef Label, uint8_t Value) { in printNumber() [all …]
|
/external/swiftshader/third_party/LLVM/include/llvm/MC/ |
D | MCObjectWriter.h | 114 void Write8(uint8_t Value) { in Write8() 118 void WriteLE16(uint16_t Value) { in WriteLE16() 123 void WriteLE32(uint32_t Value) { in WriteLE32() 128 void WriteLE64(uint64_t Value) { in WriteLE64() 133 void WriteBE16(uint16_t Value) { in WriteBE16() 138 void WriteBE32(uint32_t Value) { in WriteBE32() 143 void WriteBE64(uint64_t Value) { in WriteBE64() 148 void Write16(uint16_t Value) { in Write16() 155 void Write32(uint32_t Value) { in Write32() 162 void Write64(uint64_t Value) { in Write64()
|
/external/llvm/include/llvm/MC/ |
D | MCObjectWriter.h | 127 void write8(uint8_t Value) { *OS << char(Value); } in write8() 129 void writeLE16(uint16_t Value) { in writeLE16() 133 void writeLE32(uint32_t Value) { in writeLE32() 137 void writeLE64(uint64_t Value) { in writeLE64() 141 void writeBE16(uint16_t Value) { in writeBE16() 145 void writeBE32(uint32_t Value) { in writeBE32() 149 void writeBE64(uint64_t Value) { in writeBE64() 153 void write16(uint16_t Value) { in write16() 160 void write32(uint32_t Value) { in write32() 167 void write64(uint64_t Value) { in write64()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/ |
D | StringSwitch.h | 70 StringSwitch &Case(StringLiteral S, T Value) { in Case() 78 StringSwitch& EndsWith(StringLiteral S, T Value) { in EndsWith() 86 StringSwitch& StartsWith(StringLiteral S, T Value) { in StartsWith() 94 StringSwitch &Cases(StringLiteral S0, StringLiteral S1, T Value) { in Cases() 100 T Value) { in Cases() 106 StringLiteral S3, T Value) { in Cases() 112 StringLiteral S3, StringLiteral S4, T Value) { in Cases() 119 T Value) { in Cases() 126 StringLiteral S6, T Value) { in Cases() 133 StringLiteral S6, StringLiteral S7, T Value) { in Cases() [all …]
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | StringSwitch.h | 74 StringSwitch& Case(const char (&S)[N], const T& Value) { in Case() 85 StringSwitch& EndsWith(const char (&S)[N], const T &Value) { in EndsWith() 96 StringSwitch& StartsWith(const char (&S)[N], const T &Value) { in StartsWith() 108 const T& Value) { in Cases() 115 const char (&S2)[N2], const T& Value) { in Cases() 123 const T& Value) { in Cases() 131 const char (&S4)[N4], const T& Value) { in Cases() 141 const T &Value) { in Cases() 151 const char (&S6)[N6], const T &Value) { in Cases() 162 const T &Value) { in Cases() [all …]
|
/external/golang-protobuf/ptypes/struct/ |
D | struct.pb.go | 108 type Value struct { struct 118 Kind isValue_Kind `protobuf_oneof:"kind"` 119 XXX_NoUnkeyedLiteral struct{} `json:"-"` 120 XXX_unrecognized []byte `json:"-"` 121 XXX_sizecache int32 `json:"-"` 124 func (m *Value) Reset() { *m = Value{} } 125 func (m *Value) String() string { return proto.CompactTextString(m) } 126 func (*Value) ProtoMessage() {} 127 func (*Value) Descriptor() ([]byte, []int) { 131 func (*Value) XXX_WellKnownType() string { return "Value" } [all …]
|
/external/llvm/lib/Target/X86/AsmParser/ |
D | X86AsmParserCommon.h | 17 inline bool isImmSExti16i8Value(uint64_t Value) { in isImmSExti16i8Value() 22 inline bool isImmSExti32i8Value(uint64_t Value) { in isImmSExti32i8Value() 27 inline bool isImmSExti64i8Value(uint64_t Value) { in isImmSExti64i8Value() 31 inline bool isImmSExti64i32Value(uint64_t Value) { in isImmSExti64i32Value() 35 inline bool isImmUnsignedi8Value(uint64_t Value) { in isImmUnsignedi8Value()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/AsmParser/ |
D | X86AsmParserCommon.h | 17 inline bool isImmSExti16i8Value(uint64_t Value) { in isImmSExti16i8Value() 22 inline bool isImmSExti32i8Value(uint64_t Value) { in isImmSExti32i8Value() 27 inline bool isImmSExti64i8Value(uint64_t Value) { in isImmSExti64i8Value() 31 inline bool isImmSExti64i32Value(uint64_t Value) { in isImmSExti64i32Value() 35 inline bool isImmUnsignedi8Value(uint64_t Value) { in isImmUnsignedi8Value()
|
/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() 57 void unsigned_width(unsigned Width, uint64_t Value, std::string Description, in unsigned_width() 76 void adjustBranch(unsigned Size, const MCFixup &Fixup, uint64_t &Value, in adjustBranch() 87 void adjustRelativeBranch(unsigned Size, const MCFixup &Fixup, uint64_t &Value, in adjustRelativeBranch() 105 void fixup_call(unsigned Size, const MCFixup &Fixup, uint64_t &Value, in fixup_call() 121 void fixup_7_pcrel(unsigned Size, const MCFixup &Fixup, uint64_t &Value, in fixup_7_pcrel() 135 void fixup_13_pcrel(unsigned Size, const MCFixup &Fixup, uint64_t &Value, in fixup_13_pcrel() 148 void fixup_6_adiw(const MCFixup &Fixup, uint64_t &Value, in fixup_6_adiw() 159 void fixup_port5(const MCFixup &Fixup, uint64_t &Value, in fixup_port5() 172 void fixup_port6(const MCFixup &Fixup, uint64_t &Value, in fixup_port6() [all …]
|
/external/swiftshader/third_party/LLVM/include/llvm/ADT/ |
D | StringSwitch.h | 55 StringSwitch& Case(const char (&S)[N], const T& Value) { in Case() 65 StringSwitch& EndsWith(const char (&S)[N], const T &Value) { in EndsWith() 75 StringSwitch& StartsWith(const char (&S)[N], const T &Value) { in StartsWith() 86 const T& Value) { in Cases() 92 const char (&S2)[N2], const T& Value) { in Cases() 99 const T& Value) { in Cases() 106 const char (&S4)[N4], const T& Value) { in Cases() 111 R Default(const T& Value) const { in Default()
|
/external/llvm/include/llvm/ADT/ |
D | StringSwitch.h | 58 StringSwitch& Case(const char (&S)[N], const T& Value) { in Case() 69 StringSwitch& EndsWith(const char (&S)[N], const T &Value) { in EndsWith() 80 StringSwitch& StartsWith(const char (&S)[N], const T &Value) { in StartsWith() 92 const T& Value) { in Cases() 105 const char (&S2)[N2], const T& Value) { in Cases() 120 const T& Value) { in Cases() 136 const char (&S4)[N4], const T& Value) { in Cases() 150 R Default(const T& Value) const { in Default()
|
/external/swiftshader/third_party/subzero/src/ |
D | IceELFStreamer.h | 43 void writeLE16(uint16_t Value) { in writeLE16() 48 void writeLE32(uint32_t Value) { in writeLE32() 53 void writeLE64(uint64_t Value) { in writeLE64() 58 template <bool IsELF64, typename T> void writeAddrOrOffset(T Value) { in writeAddrOrOffset() 65 template <bool IsELF64, typename T> void writeELFWord(T Value) { in writeELFWord() 69 template <bool IsELF64, typename T> void writeELFXword(T Value) { in writeELFXword() 95 void write8(uint8_t Value) override { Out << char(Value); } in write8()
|