/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 | 60 typedef signed Signed; typedef 64 typedef __typeof__(+t5.n) Signed; // ... but promotes to signed. typedef 66 typedef __typeof__(t5.n + 0) Signed; // Arithmetic promotes. typedef 68 typedef __typeof__(+(t5.n = 0)) Signed; // FIXME: Assignment should not; the result typedef 69 typedef __typeof__(+(t5.n += 0)) Signed; // is a non-bit-field lvalue of type unsigned. typedef 70 typedef __typeof__(+(t5.n *= 0)) Signed; typedef 72 typedef __typeof__(+(++t5.n)) Signed; // FIXME: Increment is equivalent to compound-assignment. typedef 73 typedef __typeof__(+(--t5.n)) Signed; // This should not promote to signed. typedef
|
/external/llvm/unittests/ADT/ |
D | StringRefTest.cpp | 389 } Signed[] = variable 455 for (size_t i = 0; i < array_lengthof(Signed); ++i) { in TEST() 456 bool S8Success = StringRef(Signed[i].Str).getAsInteger(0, S8); in TEST() 457 if (static_cast<int8_t>(Signed[i].Expected) == Signed[i].Expected) { in TEST() 459 EXPECT_EQ(S8, Signed[i].Expected); in TEST() 463 bool S16Success = StringRef(Signed[i].Str).getAsInteger(0, S16); in TEST() 464 if (static_cast<int16_t>(Signed[i].Expected) == Signed[i].Expected) { in TEST() 466 EXPECT_EQ(S16, Signed[i].Expected); in TEST() 470 bool S32Success = StringRef(Signed[i].Str).getAsInteger(0, S32); in TEST() 471 if (static_cast<int32_t>(Signed[i].Expected) == Signed[i].Expected) { in TEST() [all …]
|
/external/vixl/doc/ |
D | supported-instructions.md | 1009 Signed bitfield insert with zero at right. 1019 Signed bitfield move. 1029 Signed bitfield extract. 1039 Signed integer divide. 1046 Signed long multiply and accumulate: 32 x 32 + 64 -> 64-bit. 1056 Signed long multiply and subtract: 64 - (32 x 32) -> 64-bit. 1066 Signed multiply high: 64 x 64 -> 64-bit <127:64>. 1073 Signed long multiply: 32 x 32 -> 64-bit. 1252 Signed extend byte. 1259 Signed extend halfword. [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/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/clang/utils/TableGen/ |
D | NeonEmitter.cpp | 133 bool Float, Signed, Void, Poly, Constant, Pointer; member in __anon985e31310111::Type 142 : Float(false), Signed(false), Void(true), Poly(false), Constant(false), in Type() 147 : TS(TS), Float(false), Signed(false), Void(false), Poly(false), in Type() 168 bool isSigned() const { return Signed; } in isSigned() 188 void makeUnsigned() { Signed = false; } in makeUnsigned() 189 void makeSigned() { Signed = true; } in makeSigned() 193 Signed = Sign; in makeInteger() 546 if (!Signed && isInteger()) in str() 599 else if (isInteger() && !Pointer && !Signed) in builtin_str() 640 if (isInteger() && !Signed) in getNeonEnum() [all …]
|
/external/libvncserver/ |
D | ChangeLog | 162 …libjpeg-turbo.) Diagnosed by Christian Beier, using valgrind. Signed-off-by: Johannes Schindelin … 174 keys correctly Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> 178 …* .gitignore: gitignore the compiled gtkvncclient Signed-off-by: Johannes Schindelin <johannes.sch… 187 trivially. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> 465 …more portable than having a v6 socket handle v4 connections as well. Signed-off-by: Christian Bei… 474 there). Signed-off-by: Christian Beier <dontmind@freeshell.org> 489 * AUTHORS: Add Luca to the AUTHORS Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> 500 the commit body and adjusted style] Signed-off-by: Luca Stauble <gnekoz@gmail.com> Signed-off-by: 686 * AUTHORS: Update AUTHORS Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> 698 is correcting the memory leak. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> [all …]
|
/external/llvm/test/MC/PowerPC/ |
D | ppc64-errors.s | 27 # Signed 16-bit immediate operands 47 # Signed 16-bit immediate operands (extended range for addis)
|
D | ppc64-operands.s | 31 # Signed 16-bit immediate operands 55 # Signed 16-bit immediate operands (extended range for addis)
|
/external/elfutils/src/ |
D | CONTRIBUTING | 43 Signed-off-by: Random J Developer <random@developer.example.org> 47 git commit --signoff will add such a Signed-off-by line at the end of
|
/external/clang/include/clang/Basic/ |
D | arm_neon.td | 908 // Signed Saturating Accumulated of Unsigned Value 912 // Unsigned Saturating Accumulated of Signed Value 929 // Signed integer saturating extract and unsigned narrow to high 1325 // Signed/Unsigned Shift Right (Immediate) 1327 // Signed/Unsigned Rounding Shift Right (Immediate) 1330 // Signed/Unsigned Shift Right and Accumulate (Immediate) 1332 // Signed/Unsigned Rounding Shift Right and Accumulate (Immediate) 1337 // Signed/Unsigned Saturating Shift Left (Immediate) 1339 // Signed Saturating Shift Left Unsigned (Immediate) 1348 // Signed/Unsigned Saturating Shift Right Narrow (Immediate) [all …]
|
/external/jsr305/ri/src/main/java/javax/annotation/ |
D | Signed.java | 16 public @interface Signed { annotation
|
/external/llvm/lib/Target/R600/ |
D | SIISelLowering.h | 25 SDValue Chain, unsigned Offset, bool Signed) const; 40 SDValue LowerINT_TO_FP(SDValue Op, SelectionDAG &DAG, bool Signed) const;
|
D | AMDGPUISelLowering.h | 57 SDValue LowerINT_TO_FP64(SDValue Op, SelectionDAG &DAG, bool Signed) const; 61 SDValue LowerFP64_TO_INT(SDValue Op, SelectionDAG &DAG, bool Signed) const;
|
/external/llvm/test/CodeGen/R600/ |
D | mul_int24.ll | 7 ; Signed 24-bit multiply is not supported on pre-Cayman GPUs.
|
D | mad_int24.ll | 9 ; Signed 24-bit multiply is not supported on pre-Cayman GPUs.
|
/external/wpa_supplicant_8/ |
D | CONTRIBUTIONS | 13 inclusion of Signed-off-by tag in the contributions at the end of the 26 Signed-off-by: Your Name <your@email.example.org> 59 with a Signed-hostap tag in the commit message. This additional item (e)
|
/external/owasp/sanitizer/distrib/lib/ |
D | jsr305.jar | META-INF/
META-INF/MANIFEST.MF
javax/
javax/annotation/
javax/ ... |
/external/owasp/sanitizer/tools/findbugs/lib/ |
D | jsr305.jar | META-INF/
META-INF/MANIFEST.MF
javax/
javax/annotation/
javax/ ... |
/external/vogar/lib/ |
D | jsr305.jar | META-INF/
META-INF/MANIFEST.MF
javax/
javax/annotation/
javax/ ... |
/external/owasp/sanitizer/lib/jsr305/ |
D | jsr305.jar | META-INF/
META-INF/MANIFEST.MF
javax/
javax/annotation/
javax/ ... |
/external/lldb/source/Plugins/SymbolFile/DWARF/ |
D | DWARFFormValue.h | 63 int64_t Signed() const { return m_value.value.sval; } in Signed() function
|
/external/llvm/lib/Target/NVPTX/ |
D | NVPTX.h | 127 Signed, enumerator
|
/external/clang/include/clang/Analysis/Analyses/ |
D | ThreadSafetyTraverse.h | 548 if (VT.Signed) in printLiteral() 554 if (VT.Signed) in printLiteral() 560 if (VT.Signed) in printLiteral() 566 if (VT.Signed) in printLiteral()
|