/external/clang/test/SemaCXX/ |
D | bitfield.cpp | 7 typedef signed Signed; typedef 12 typedef __typeof__(+t.n) Signed; // ... but promotes to signed. typedef 14 typedef __typeof__(t.n + 0) Signed; // Arithmetic promotes. typedef 19 typedef __typeof__(+(t.n = 0)) Signed; // ... which is a bit-field. typedef 20 typedef __typeof__(+(t.n += 0)) Signed; typedef 21 typedef __typeof__(+(t.n *= 0)) Signed; typedef 25 typedef __typeof__(+(++t.n)) Signed; typedef 26 typedef __typeof__(+(--t.n)) Signed; typedef
|
/external/clang/test/Sema/ |
D | bitfield.c | 63 typedef signed Signed; typedef 68 typedef __typeof__(+t5.n) Signed; // ... but promotes to signed. typedef 70 typedef __typeof__(t5.n + 0) Signed; // Arithmetic promotes. typedef 72 typedef __typeof__(+(t5.n = 0)) Signed; // FIXME: Assignment should not; the result typedef 73 typedef __typeof__(+(t5.n += 0)) Signed; // is a non-bit-field lvalue of type unsigned. typedef 74 typedef __typeof__(+(t5.n *= 0)) Signed; typedef 76 typedef __typeof__(+(++t5.n)) Signed; // FIXME: Increment is equivalent to compound-assignment. typedef 77 typedef __typeof__(+(--t5.n)) Signed; // This should not promote to signed. typedef
|
/external/pdfium/third_party/libtiff/ |
D | 0000-build-config.patch | 121 +/* Signed 8-bit type */ 127 +/* Signed 16-bit type */ 133 +/* Signed 32-bit type */ 139 +/* Signed 32-bit type formatter */ 147 +/* Signed 64-bit type formatter */ 153 +/* Signed 64-bit type */ 163 +/* Signed 64-bit type formatter */ 169 +/* Signed 64-bit type */ 174 +/* Signed 64-bit type formatter */ 180 +/* Signed 64-bit type */ [all …]
|
/external/llvm/unittests/ADT/ |
D | StringRefTest.cpp | 442 } Signed[] = variable 508 for (size_t i = 0; i < array_lengthof(Signed); ++i) { in TEST() 509 bool S8Success = StringRef(Signed[i].Str).getAsInteger(0, S8); in TEST() 510 if (static_cast<int8_t>(Signed[i].Expected) == Signed[i].Expected) { in TEST() 512 EXPECT_EQ(S8, Signed[i].Expected); in TEST() 516 bool S16Success = StringRef(Signed[i].Str).getAsInteger(0, S16); in TEST() 517 if (static_cast<int16_t>(Signed[i].Expected) == Signed[i].Expected) { in TEST() 519 EXPECT_EQ(S16, Signed[i].Expected); in TEST() 523 bool S32Success = StringRef(Signed[i].Str).getAsInteger(0, S32); in TEST() 524 if (static_cast<int32_t>(Signed[i].Expected) == Signed[i].Expected) { in TEST() [all …]
|
/external/vixl/doc/aarch64/ |
D | supported-instructions-aarch64.md | 992 Signed bitfield insert with zero at right. 1002 Signed bitfield move. 1012 Signed bitfield extract. 1022 Signed integer divide. 1029 Signed long multiply and accumulate: 32 x 32 + 64 -> 64-bit. 1039 Signed long multiply and subtract: 64 - (32 x 32) -> 64-bit. 1049 Signed multiply high: 64 x 64 -> 64-bit <127:64>. 1056 Signed long multiply: 32 x 32 -> 64-bit. 1239 Signed extend byte. 1246 Signed extend halfword. [all …]
|
/external/clang/test/CodeGenCXX/ |
D | ms-inline-asm-fields.cpp | 32 template <bool Signed> 42 template <bool Signed> 44 typedef typename make_storage_type<Signed>::type storage_type;
|
/external/swiftshader/third_party/subzero/pydir/ |
D | gen_test_arith_ll.py | 30 Signed = Op in {'sdiv', 'srem', 'ashr'} 31 Name = mangle(Op, Type, Signed) 40 zext = '%result = ' + ('sext' if Signed else 'zext') +
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/ |
D | CheckedArithmetic.h | 31 checkedOp(T LHS, T RHS, F Op, bool Signed = true) { 32 llvm::APInt ALHS(/*BitSize=*/sizeof(T) * 8, LHS, Signed); 33 llvm::APInt ARHS(/*BitSize=*/sizeof(T) * 8, RHS, Signed); 38 return Signed ? Out.getSExtValue() : Out.getZExtValue();
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/ |
D | StringRefTest.cpp | 581 } Signed[] = variable 647 for (size_t i = 0; i < array_lengthof(Signed); ++i) { in TEST() 648 bool S8Success = StringRef(Signed[i].Str).getAsInteger(0, S8); in TEST() 649 if (static_cast<int8_t>(Signed[i].Expected) == Signed[i].Expected) { in TEST() 651 EXPECT_EQ(S8, Signed[i].Expected); in TEST() 655 bool S16Success = StringRef(Signed[i].Str).getAsInteger(0, S16); in TEST() 656 if (static_cast<int16_t>(Signed[i].Expected) == Signed[i].Expected) { in TEST() 658 EXPECT_EQ(S16, Signed[i].Expected); in TEST() 662 bool S32Success = StringRef(Signed[i].Str).getAsInteger(0, S32); in TEST() 663 if (static_cast<int32_t>(Signed[i].Expected) == Signed[i].Expected) { in TEST() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AVR/ |
D | div.ll | 13 ; Signed 8-bit division 33 ; Signed 16-bit division 54 ; Signed 32-bit division 82 ; Signed 64-bit division 108 ; Signed 128-bit division
|
D | rem.ll | 13 ; Signed 8-bit remision 32 ; Signed 16-bit remision 50 ; Signed 32-bit remision
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/DWARF/ |
D | DWARFExpression.cpp | 127 unsigned Signed = Size & Operation::SignBit; in extract() local 135 if (Signed) in extract() 140 if (Signed) in extract() 145 if (Signed) in extract() 168 if (Signed) in extract() 242 unsigned Signed = Size & Operation::SignBit; in print() local 252 if (Signed) in print()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/Disassembler/AArch64/ |
D | neon-instructions.txt | 142 # Vector Absolute Difference and Accumulate (Signed, Unsigned) 143 # Vector Absolute Difference (Signed, Unsigned) 252 # Vector Compare Mask Greater Than or Equal to Zero (Signed Integer) 258 # Vector Compare Mask Greater Than Zero (Signed Integer) 264 # Vector Compare Mask Less Than or Equal To Zero (Signed Integer) 270 # Vector Compare Mask Less Than Zero (Signed Integer) 307 # Vector Integer Halving Add (Signed) 309 # Vector Integer Halving Sub (Signed) 326 # Vector Integer Rouding Halving Add (Signed) 343 # Vector Integer Saturating Add (Signed) [all …]
|
/external/llvm/test/MC/Disassembler/AArch64/ |
D | neon-instructions.txt | 142 # Vector Absolute Difference and Accumulate (Signed, Unsigned) 143 # Vector Absolute Difference (Signed, Unsigned) 252 # Vector Compare Mask Greater Than or Equal to Zero (Signed Integer) 258 # Vector Compare Mask Greater Than Zero (Signed Integer) 264 # Vector Compare Mask Less Than or Equal To Zero (Signed Integer) 270 # Vector Compare Mask Less Than Zero (Signed Integer) 307 # Vector Integer Halving Add (Signed) 309 # Vector Integer Halving Sub (Signed) 326 # Vector Integer Rouding Halving Add (Signed) 343 # Vector Integer Saturating Add (Signed) [all …]
|
/external/v8/src/asmjs/ |
D | asm-parser.cc | 112 auto* s = AsmType::Signed(); in InitializeStdlibTypes() 179 } else if (return_type->IsA(AsmType::Signed())) { in ConvertSignature() 456 mutable_variable ? AsmType::Int() : AsmType::Signed(), in ValidateModuleVar() 467 mutable_variable ? AsmType::Int() : AsmType::Signed(), in ValidateModuleVar() 1107 } else if (ret->IsA(AsmType::Signed())) { in ReturnStatement() 1108 return_type_ = AsmType::Signed(); in ReturnStatement() 1293 if (!test->IsA(AsmType::Signed())) { in SwitchStatement() 1566 ret = AsmType::Signed(); in UnaryExpression() 1592 if (ret->IsA(AsmType::Signed())) { in UnaryExpression() 1622 ret = AsmType::Signed(); in UnaryExpression() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/ |
D | AMDGPUHSAMetadataStreamer.cpp | 126 auto Signed = !TypeName.startswith("u"); in getValueType() local 129 return Signed ? ValueType::I8 : ValueType::U8; in getValueType() 131 return Signed ? ValueType::I16 : ValueType::U16; in getValueType() 133 return Signed ? ValueType::I32 : ValueType::U32; in getValueType() 135 return Signed ? ValueType::I64 : ValueType::U64; in getValueType() 155 std::string MetadataStreamer::getTypeName(Type *Ty, bool Signed) const { in getTypeName() 158 if (!Signed) in getTypeName() 185 return (Twine(getTypeName(ElTy, Signed)) + Twine(NumElements)).str(); in getTypeName()
|
/external/clang/utils/TableGen/ |
D | NeonEmitter.cpp | 136 bool Float, Signed, Immediate, Void, Poly, Constant, Pointer; member in __anon56007b1a0111::Type 145 : Float(false), Signed(false), Immediate(false), Void(true), Poly(false), in Type() 150 : TS(std::move(TS)), Float(false), Signed(false), Immediate(false), in Type() 172 bool isSigned() const { return Signed; } in isSigned() 193 void makeUnsigned() { Signed = false; } in makeUnsigned() 194 void makeSigned() { Signed = true; } in makeSigned() 198 Signed = Sign; in makeInteger() 205 Signed = true; in makeImmediate() 559 if (!Signed && isInteger()) in str() 612 else if (isInteger() && !Pointer && !Signed) in builtin_str() [all …]
|
/external/llvm/test/Transforms/GlobalOpt/ |
D | 2005-09-27-Crash.ll | 4 %arraytype.Signed = type { i32, [0 x i32] } 6 %structtype.test = type { i32, %arraytype.Signed }
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/GlobalOpt/ |
D | 2005-09-27-Crash.ll | 4 %arraytype.Signed = type { i32, [0 x i32] } 6 %structtype.test = type { i32, %arraytype.Signed }
|
/external/swiftshader/third_party/LLVM/test/Transforms/GlobalOpt/ |
D | 2005-09-27-Crash.ll | 4 %arraytype.Signed = type { i32, [0 x i32] } 6 %structtype.test = type { i32, %arraytype.Signed }
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/ |
D | TargetLibraryInfo.h | 305 Attribute::AttrKind getExtAttrForI32Param(bool Signed = true) const { 307 return Signed ? Attribute::SExt : Attribute::ZExt; 316 Attribute::AttrKind getExtAttrForI32Return(bool Signed = true) const { 318 return Signed ? Attribute::SExt : Attribute::ZExt;
|
/external/v8/src/builtins/ |
D | data-view.tq | 146 b0 = Signed(LoadUint8(data_pointer, offset)); 151 b1 = Signed(LoadUint8(data_pointer, offset + 1)); 180 return convert<Number>(Signed(result)); 259 let high_part: intptr = Signed(convert<uintptr>(high_word)); 260 let low_part: intptr = Signed(convert<uintptr>(low_word)); 294 let low_part: int32 = Signed(low_word); 295 let high_part: int32 = Signed(high_word); 426 let getIndexIntptr: intptr = Signed(convert<uintptr>(getIndexFloat)); 428 let viewOffsetIntptr: intptr = Signed(convert<uintptr>(viewOffsetFloat)); 692 high_word = Unsigned(0 - Signed(high_word)); [all …]
|
/external/clang/include/clang/Basic/ |
D | arm_neon.td | 945 // Signed Saturating Accumulated of Unsigned Value 949 // Unsigned Saturating Accumulated of Signed Value 969 // Signed integer saturating extract and unsigned narrow to high 1371 // Signed/Unsigned Shift Right (Immediate) 1373 // Signed/Unsigned Rounding Shift Right (Immediate) 1376 // Signed/Unsigned Shift Right and Accumulate (Immediate) 1378 // Signed/Unsigned Rounding Shift Right and Accumulate (Immediate) 1383 // Signed/Unsigned Saturating Shift Left (Immediate) 1385 // Signed Saturating Shift Left Unsigned (Immediate) 1394 // Signed/Unsigned Saturating Shift Right Narrow (Immediate) [all …]
|
/external/u-boot/tools/patman/test/ |
D | test01.txt | 15 Signed-off-by: Simon Glass <sjg@chromium.org> 41 Signed-off-by: Simon Glass <sjg@chromium.org>
|
/external/parameter-framework/upstream/parameter/ |
D | IntegerParameterType.h | 54 using Signed = typename std::conditional< 56 using Unsigned = typename std::make_unsigned<Signed>::type; 59 using CType = typename std::conditional<isSigned, Signed, Unsigned>::type;
|