/external/swiftshader/third_party/subzero/crosstest/ |
D | test_arith_main.cpp | 39 template <class T> bool inputsMayTriggerException(T Value1, T Value2) { in inputsMayTriggerException() argument 41 if (Value2 == 0) in inputsMayTriggerException() 45 if (Value1 == std::numeric_limits<T>::min() && Value2 == -1) in inputsMayTriggerException() 96 TypeUnsigned Value2 = Values[j]; in testsInt() local 99 inputsMayTriggerException<TypeSigned>(Value1, Value2)) in testsInt() 104 ResultSz = Funcs[f].FuncSzUnsigned(Value1, Value2); in testsInt() 105 ResultLlc = Funcs[f].FuncLlcUnsigned(Value1, Value2); in testsInt() 107 ResultSz = Funcs[f].FuncSzSigned(Value1, Value2); in testsInt() 108 ResultLlc = Funcs[f].FuncLlcSigned(Value1, Value2); in testsInt() 116 << ", " << Value2 << "): sz=" << (unsigned)ResultSz in testsInt() [all …]
|
D | test_icmp_main.cpp | 77 TypeUnsigned Value2 = Values[j]; in testsInt() local 79 bool ResultSz = Funcs[f].FuncSz(Value1, Value2); in testsInt() 80 bool ResultLlc = Funcs[f].FuncLlc(Value1, Value2); in testsInt() 87 << ", " << Value2 << "): sz=" << ResultSz in testsInt() 103 TypeUnsigned Value2 = in testsInt() local 106 bool ResultSz = Funcs[f].FuncSz(Value1, Value2); in testsInt() 107 bool ResultLlc = Funcs[f].FuncLlc(Value1, Value2); in testsInt() 114 << ", " << Value2 << "): sz=" << ResultSz in testsInt() 235 TypeUnsigned Value1, Value2; in testsVecInt() local 238 setElement(Value2, j, Values[Index() % NumValues]); in testsVecInt() [all …]
|
D | test_select_main.cpp | 46 Ty Value1, Value2; in testSelect() local 50 setElement(Value2, j, Values[Index() % NumValues]); in testSelect() 52 Ty ResultLlc = select(Cond, Value1, Value2); in testSelect() 53 Ty ResultSz = Subzero_::select(Cond, Value1, Value2); in testSelect() 62 << ", Value2=" << vectAsString<T>(Value2) << ")\n"; in testSelect() 82 v4f32 Value1, Value2; in testSelect() local 86 setElement(Value2, j, Values[Index() % NumValues]); in testSelect() 88 v4f32 ResultLlc = select(Cond, Value1, Value2); in testSelect() 89 v4f32 ResultSz = Subzero_::select(Cond, Value1, Value2); in testSelect() 98 << ", Value2=" << vectAsString<v4f32>(Value2) << ")\n"; in testSelect() [all …]
|
D | test_sync_atomic_main.cpp | 80 Type Value2 = static_cast<Type>(Values[j]); in testAtomicRMW() local 85 Type ResultSz1 = Funcs[f].FuncSz(fetch_first, AtomicLoc, Value2); in testAtomicRMW() 88 Type ResultLlc1 = Funcs[f].FuncLlc(fetch_first, AtomicLoc, Value2); in testAtomicRMW() 97 << static_cast<uint64>(Value2) in testAtomicRMW() 125 Type Value2 = static_cast<Type>(Values[j]); in testValCompareAndSwap() local 131 Funcs[f].FuncSz(AtomicLoc, flip ? Value2 : Value1, Value2); in testValCompareAndSwap() 135 Funcs[f].FuncLlc(AtomicLoc, flip ? Value2 : Value1, Value2); in testValCompareAndSwap() 143 << static_cast<uint64>(Value2) << ", flip=" << flip in testValCompareAndSwap() 204 Type Value2 = static_cast<Type>(ValuesSubset[j]); in testAtomicRMWThreads() local 207 Value2}; in testAtomicRMWThreads() [all …]
|
D | test_fcmp_main.cpp | 182 v4f32 Value1, Value2; in testsVector() local 185 Value2[j] = Values[Index() % NumValues]; in testsVector() 189 ResultSz = Funcs[f].FuncVectorSz(Value1, Value2); in testsVector() 190 ResultLlc = Funcs[f].FuncVectorLlc(Value1, Value2); in testsVector() 196 << ", " << vectAsString<v4f32>(Value2) in testsVector()
|
/external/syzkaller/pkg/compiler/ |
D | types.go | 80 kind, rangeBegin, rangeEnd = prog.IntRange, args[0].Value, args[0].Value2 84 IntTypeCommon: genIntCommon(base.TypeCommon, t.Value2, be), 134 if len(args) > 1 && args[1].Value == 0 && args[1].Value2 == 0 { 146 return args[1].Value != args[1].Value2 157 kind, begin, end = prog.ArrayRangeLen, args[1].Value, args[1].Value2 298 begin, end = args[0].Value, args[0].Value2 773 t.Value2 = t.Value 776 if t.Value2-t.Value > 1<<64-1<<32 { 777 comp.error(t.Pos, "bad int range [%v:%v]", t.Value, t.Value2) 788 t.Value2 = t.Value [all …]
|
/external/swiftshader/third_party/LLVM/lib/Target/ARM/MCTargetDesc/ |
D | ARMMachObjectWriter.cpp | 142 uint32_t Value2 = 0; in RecordARMMovwMovtRelocation() local 156 Value2 = Writer->getSymbolAddress(B_SD, Layout); in RecordARMMovwMovtRelocation() 204 MRE.Word1 = Value2; in RecordARMMovwMovtRelocation() 242 uint32_t Value2 = 0; in RecordARMScatteredRelocation() local 253 Value2 = Writer->getSymbolAddress(B_SD, Layout); in RecordARMScatteredRelocation() 266 MRE.Word1 = Value2; in RecordARMScatteredRelocation()
|
/external/llvm/lib/Target/PowerPC/MCTargetDesc/ |
D | PPCMachObjectWriter.cpp | 167 const uint32_t Value2) { in makeScatteredRelocationInfo() argument 172 MRE.r_word1 = Value2; in makeScatteredRelocationInfo() 216 uint32_t Value2 = 0; in recordScatteredRelocation() local 226 Value2 = Writer->getSymbolAddress(B->getSymbol(), Layout); in recordScatteredRelocation() 281 Log2Size, IsPCRel, Value2); in recordScatteredRelocation()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/PowerPC/MCTargetDesc/ |
D | PPCMachObjectWriter.cpp | 167 const uint32_t Value2) { in makeScatteredRelocationInfo() argument 172 MRE.r_word1 = Value2; in makeScatteredRelocationInfo() 216 uint32_t Value2 = 0; in recordScatteredRelocation() local 226 Value2 = Writer->getSymbolAddress(*SB, Layout); in recordScatteredRelocation() 281 Log2Size, IsPCRel, Value2); in recordScatteredRelocation()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/MCTargetDesc/ |
D | ARMMachObjectWriter.cpp | 161 uint32_t Value2 = 0; in RecordARMScatteredHalfRelocation() local 177 Value2 = Writer->getSymbolAddress(B->getSymbol(), Layout); in RecordARMScatteredHalfRelocation() 228 MRE.r_word1 = Value2; in RecordARMScatteredHalfRelocation() 268 uint32_t Value2 = 0; in RecordARMScatteredRelocation() local 283 Value2 = Writer->getSymbolAddress(B->getSymbol(), Layout); in RecordARMScatteredRelocation() 296 MRE.r_word1 = Value2; in RecordARMScatteredRelocation()
|
/external/llvm/lib/Target/ARM/MCTargetDesc/ |
D | ARMMachObjectWriter.cpp | 161 uint32_t Value2 = 0; in RecordARMScatteredHalfRelocation() local 177 Value2 = Writer->getSymbolAddress(B->getSymbol(), Layout); in RecordARMScatteredHalfRelocation() 228 MRE.r_word1 = Value2; in RecordARMScatteredHalfRelocation() 268 uint32_t Value2 = 0; in RecordARMScatteredRelocation() local 283 Value2 = Writer->getSymbolAddress(B->getSymbol(), Layout); in RecordARMScatteredRelocation() 296 MRE.r_word1 = Value2; in RecordARMScatteredRelocation()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Mips/ |
D | MicroMipsSizeReduction.cpp | 312 int64_t Value2 = Value >> 2; in AddiuspImmValue() local 314 ((Value2 >= 2 && Value2 <= 257) || (Value2 >= -258 && Value2 <= -3))) in AddiuspImmValue() 323 int64_t Value2 = Value >> Shift; in InRange() local 325 (Value2 >= LBound) && (Value2 < HBound)) in InRange()
|
/external/clang/test/SemaCXX/ |
D | switch-implicit-fallthrough.cpp | 210 Value1, Value2 enumerator 222 case Value2: in fallthrough_covered_enums()
|
/external/clang/test/SemaTemplate/ |
D | default-arguments.cpp | 68 template<T Value1 = sizeof(T), T Value2 = sizeof(U), 69 T Value3 = Value1 + Value2>
|
/external/llvm/test/DebugInfo/Inputs/ |
D | dwarfdump-macro.cc | 3 #define M2(x, y) ((x)+(y)* Value2)
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/DebugInfo/Inputs/ |
D | dwarfdump-macro.cc | 3 #define M2(x, y) ((x)+(y)* Value2)
|
/external/syzkaller/pkg/ast/ |
D | clone.go | 160 Value2: n.Value2,
|
/external/swiftshader/third_party/LLVM/lib/Target/X86/MCTargetDesc/ |
D | X86MachObjectWriter.cpp | 361 uint32_t Value2 = 0; in RecordScatteredRelocation() local 377 Value2 = Writer->getSymbolAddress(B_SD, Layout); in RecordScatteredRelocation() 390 MRE.Word1 = Value2; in RecordScatteredRelocation()
|
/external/llvm/lib/Target/X86/MCTargetDesc/ |
D | X86MachObjectWriter.cpp | 392 uint32_t Value2 = 0; in recordScatteredRelocation() local 412 Value2 = Writer->getSymbolAddress(B->getSymbol(), Layout); in recordScatteredRelocation() 438 MRE.r_word1 = Value2; in recordScatteredRelocation()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/MCTargetDesc/ |
D | X86MachObjectWriter.cpp | 392 uint32_t Value2 = 0; in recordScatteredRelocation() local 412 Value2 = Writer->getSymbolAddress(*SB, Layout); in recordScatteredRelocation() 438 MRE.r_word1 = Value2; in recordScatteredRelocation()
|
/external/llvm/test/DebugInfo/ |
D | debugmacinfo.test | 21 TEST_MACINFO: DW_MACINFO_define - lineno: 3 macro: M2(x,y) ((x)+(y)* Value2)
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/DebugInfo/ |
D | debugmacinfo.test | 21 TEST_MACINFO: DW_MACINFO_define - lineno: 3 macro: M2(x,y) ((x)+(y)* Value2)
|
/external/fonttools/Lib/fontTools/varLib/ |
D | merger.py | 276 pvr.Value2 = otBase.ValueRecord(merger.valueFormat2) if merger.valueFormat2 else None 292 v1, v2 = vpair.Value1, vpair.Value2 294 v.Value2 = otBase.ValueRecord(merger.valueFormat2, src=v2) if merger.valueFormat2 else None 428 rec2.Value2 = otBase.ValueRecord(self.ValueFormat2) if self.ValueFormat2 else None 521 pv2 = pairValueRecord.Value2 530 pv2 = class2Record.Value2
|
/external/llvm/include/llvm/Support/ |
D | ScopedPrinter.h | 325 void printVersionInternal(S Value, T Value2, TArgs... Args) { in printVersionInternal() argument 327 printVersionInternal(Value2, Args...); in printVersionInternal()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/ |
D | ScopedPrinter.h | 336 void printVersionInternal(S Value, T Value2, TArgs... Args) { in printVersionInternal() argument 338 printVersionInternal(Value2, Args...); in printVersionInternal()
|