Home
last modified time | relevance | path

Searched defs:Value (Results 1 – 25 of 988) sorted by relevance

12345678910>>...40

/external/llvm/lib/CodeGen/AsmPrinter/
DDebugLocEntry.h32 struct Value { struct
33 Value(const DIExpression *Expr, int64_t i) in Value() argument
37 Value(const DIExpression *Expr, const ConstantFP *CFP) in Value() argument
41 Value(const DIExpression *Expr, const ConstantInt *CIP) in Value() argument
45 Value(const DIExpression *Expr, MachineLocation Loc) in Value() argument
51 const DIExpression *Expression;
77 friend bool operator==(const Value &, const Value &); argument
98 SmallVector<Value, 1> Values; argument
/external/swiftshader/third_party/subzero/runtime/
Dszrt.c23 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/llvm/lib/DebugInfo/CodeView/
DTypeRecordBuilder.cpp24 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/
Dcontext-slot-cache.h59 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/swiftshader/third_party/LLVM/include/llvm/Support/
DMathExtras.h26 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/llvm/bindings/go/llvm/
Dir.go37 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/include/llvm/Object/
DRelocVisitor.h33 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/llvm/include/llvm/Support/
DScopedPrinter.h34 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/include/llvm/MC/
DMCObjectWriter.h114 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/lib/Target/X86/AsmParser/
DX86AsmParserCommon.h17 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/llvm/include/llvm/MC/
DMCObjectWriter.h127 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-subzero/include/llvm/ADT/
DStringSwitch.h74 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/bison/src/
Dmuscle-tab.h38 #define MUSCLE_INSERT_BOOL(Key, Value) \ argument
44 #define MUSCLE_INSERT_INT(Key, Value) \ argument
51 #define MUSCLE_INSERT_LONG_INT(Key, Value) \ argument
58 #define MUSCLE_INSERT_STRING_RAW(Key, Value) \ argument
65 #define MUSCLE_INSERT_STRING(Key, Value) \ argument
72 #define MUSCLE_INSERT_C_STRING(Key, Value) \ argument
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
DStringSwitch.h55 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/
DStringSwitch.h58 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/clang/test/CXX/stmt.stmt/stmt.select/stmt.switch/
Dp2-0x.cpp4 struct Value { struct
5 constexpr Value(int n) : n(n) {} in Value() argument
16 void test(Value v) { in test() argument
/external/swiftshader/third_party/subzero/src/
DIceELFStreamer.h43 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()
/external/skia/tests/
DLRUCacheTest.cpp11 struct Value { struct
12 Value(int value, int* counter) in Value() function
18 ~Value() { in ~Value() argument
22 int fValue; argument
30 SkLRUCache<int, std::unique_ptr<Value>> test(kSize); in DEF_TEST() argument
/external/skia/src/core/
DSkImageFilterCache.cpp40 struct Value { struct in __anond6a262620311::CacheImpl
41Value(const Key& key, SkSpecialImage* image, const SkIPoint& offset, const SkImageFilter* filter) in Value() function
44 Key fKey;
45 sk_sp<SkSpecialImage> fImage;
46 SkIPoint fOffset;
47 const SkImageFilter* fFilter;
48 static const Key& GetKey(const Value& v) { in GetKey()
51 static uint32_t Hash(const Key& key) { in Hash()
/external/llvm/tools/llvm-readobj/
DARMAttributeParser.cpp77 uint64_t Value = decodeULEB128(Data + Offset, &Length); in ParseInteger() local
107 void ARMAttributeParser::PrintAttribute(unsigned Tag, unsigned Value, in PrintAttribute()
128 uint64_t Value = ParseInteger(Data, Offset); in CPU_arch() local
155 uint64_t Value = ParseInteger(Data, Offset); in ARM_ISA_use() local
165 uint64_t Value = ParseInteger(Data, Offset); in THUMB_ISA_use() local
178 uint64_t Value = ParseInteger(Data, Offset); in FP_arch() local
188 uint64_t Value = ParseInteger(Data, Offset); in WMMX_arch() local
200 uint64_t Value = ParseInteger(Data, Offset); in Advanced_SIMD_arch() local
213 uint64_t Value = ParseInteger(Data, Offset); in PCS_config() local
223 uint64_t Value = ParseInteger(Data, Offset); in ABI_PCS_R9_use() local
[all …]
/external/skia/src/sksl/ir/
DSkSLProgram.h33 struct Value { struct
34 Value(bool b) in Value() function
38 Value(int i) in Value() function
44 case Program::Settings::Value::kBool_Kind: in literal() argument
58 enum {
61 } fKind;
63 int fValue;
/external/llvm/lib/ObjectYAML/
DELFYAML.cpp26 ELFYAML::ELF_ET &Value) { in enumeration()
39 ELFYAML::ELF_EM &Value) { in enumeration()
202 IO &IO, ELFYAML::ELF_ELFCLASS &Value) { in enumeration()
212 IO &IO, ELFYAML::ELF_ELFDATA &Value) { in enumeration()
222 IO &IO, ELFYAML::ELF_ELFOSABI &Value) { in enumeration()
251 ELFYAML::ELF_EF &Value) { in bitset()
352 IO &IO, ELFYAML::ELF_SHT &Value) { in enumeration()
409 ELFYAML::ELF_SHF &Value) { in bitset()
454 IO &IO, ELFYAML::ELF_STT &Value) { in enumeration()
468 IO &IO, ELFYAML::ELF_STV &Value) { in enumeration()
[all …]
/external/clang/unittests/ASTMatchers/Dynamic/
DVariantValueTest.cpp21 VariantValue Value = kUnsigned; in TEST() local
33 VariantValue Value = kString; in TEST() local
45 VariantValue Value = VariantMatcher::SingleMatcher(stmt()); in TEST() local
74 VariantValue Value = StringRef("A"); in TEST() local
107 VariantValue Value; in TEST() local
/external/swiftshader/third_party/LLVM/lib/Object/
DMachOObject.cpp25 static void SwapValue(T &Value) { in SwapValue()
170 void SwapStruct(macho::SegmentLoadCommand &Value) { in SwapStruct()
188 void SwapStruct(macho::Segment64LoadCommand &Value) { in SwapStruct()
206 void SwapStruct(macho::SymtabLoadCommand &Value) { in SwapStruct()
220 void SwapStruct(macho::DysymtabLoadCommand &Value) { in SwapStruct()
248 void SwapStruct(macho::LinkeditDataLoadCommand &Value) { in SwapStruct()
260 void SwapStruct(macho::IndirectSymbolTableEntry &Value) { in SwapStruct()
274 void SwapStruct(macho::Section &Value) { in SwapStruct()
296 void SwapStruct(macho::Section64 &Value) { in SwapStruct()
319 void SwapStruct(macho::RelocationEntry &Value) { in SwapStruct()
[all …]
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
DMachineCodeEmitter.h31 class Value; variable
177 void emitULEB128Bytes(uint64_t Value) { in emitULEB128Bytes()
188 void emitSLEB128Bytes(uint64_t Value) { in emitSLEB128Bytes()
213 void emitInt32(int32_t Value) { in emitInt32()
223 void emitInt64(uint64_t Value) { in emitInt64()
233 void emitInt32At(uintptr_t *Addr, uintptr_t Value) { in emitInt32At()
239 void emitInt64At(uintptr_t *Addr, uintptr_t Value) { in emitInt64At()

12345678910>>...40