Searched refs:Signed (Results 1 - 25 of 40) sorted by relevance

12

/external/jsr305/ri/src/main/java/javax/annotation/
H A DSigned.java16 public @interface Signed { interface
/external/llvm/unittests/ADT/
H A DStringRefTest.cpp389 } Signed[] = member in namespace:__anon26462
455 for (size_t i = 0; i < array_lengthof(Signed); ++i) {
456 bool S8Success = StringRef(Signed[i].Str).getAsInteger(0, S8);
457 if (static_cast<int8_t>(Signed[i].Expected) == Signed[i].Expected) {
459 EXPECT_EQ(S8, Signed[i].Expected);
463 bool S16Success = StringRef(Signed[i].Str).getAsInteger(0, S16);
464 if (static_cast<int16_t>(Signed[i].Expected) == Signed[i].Expected) {
466 EXPECT_EQ(S16, Signed[
[all...]
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFFormValue.h63 int64_t Signed() const { return m_value.value.sval; } function in class:DWARFFormValue
H A DDWARFFormValue.cpp532 int64_t a = a_value.Signed();
533 int64_t b = b_value.Signed();
/external/llvm/lib/Target/NVPTX/
H A DNVPTX.h126 Signed, enumerator in enum:llvm::NVPTX::PTXLdStInstCode::FromType
H A DNVPTXISelLowering.cpp2854 Signed = 0, enumerator in enum:OperandSignedness
2871 S = Signed;
2903 IsSigned = (LHSSign == Signed);
2970 bool Signed; local
2972 if (!AreMulWideOperandsDemotable(LHS, RHS, OptSize, Signed)) {
2991 if (Signed) {
/external/llvm/test/MC/PowerPC/
H A Dppc64-errors.s27 # Signed 16-bit immediate operands
47 # Signed 16-bit immediate operands (extended range for addis)
H A Dppc64-operands.s31 # Signed 16-bit immediate operands
55 # Signed 16-bit immediate operands (extended range for addis)
/external/llvm/lib/Target/R600/
H A DSIISelLowering.h25 SDValue Chain, unsigned Offset, bool Signed) const;
H A DAMDGPUISelDAGToDAG.cpp441 bool Signed = Opc == AMDGPUISD::BFE_I32; local
453 return CurDAG->getMachineNode(Signed ? AMDGPU::S_BFE_I32 : AMDGPU::S_BFE_U32,
/external/clang/utils/TableGen/
H A DNeonEmitter.cpp133 bool Float, Signed, Void, Poly, Constant, Pointer; member in class:__anon19562::Type
142 : Float(false), Signed(false), Void(true), Poly(false), Constant(false),
147 : TS(TS), Float(false), Signed(false), Void(false), Poly(false),
168 bool isSigned() const { return Signed; }
188 void makeUnsigned() { Signed = false; }
189 void makeSigned() { Signed = true; }
193 Signed = Sign;
546 if (!Signed && isInteger())
599 else if (isInteger() && !Pointer && !Signed)
640 if (isInteger() && !Signed)
[all...]
/external/llvm/lib/Target/Mips/
H A DMipsSEISelDAGToDAG.h74 bool selectVSplatCommon(SDValue N, SDValue &Imm, bool Signed,
H A DMipsSEISelDAGToDAG.cpp450 selectVSplatCommon(SDValue N, SDValue &Imm, bool Signed, argument
460 if (( Signed && ImmValue.isSignedIntN(ImmBitSize)) ||
461 (!Signed && ImmValue.isIntN(ImmBitSize))) {
H A DMipsSEISelLowering.cpp1002 bool Signed; local
1005 Signed = true;
1007 Signed = false;
1017 return DAG.getNode(Signed ? MipsISD::VSMIN : MipsISD::VUMIN, SDLoc(N),
1020 return DAG.getNode(Signed ? MipsISD::VSMAX : MipsISD::VUMAX, SDLoc(N),
/external/owasp/sanitizer/distrib/lib/
H A Djsr305.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/annotation/ javax/annotation/concurrent/ javax/annotation/meta/ javax/ ...
/external/owasp/sanitizer/lib/jsr305/
H A Djsr305.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/annotation/ javax/annotation/concurrent/ javax/annotation/meta/ javax/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Djsr305.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/annotation/ javax/annotation/concurrent/ javax/annotation/meta/ javax/ ...
H A Dannotations.jarMETA-INF/ META-INF/MANIFEST.MF edu/ edu/umd/ edu/umd/cs/ edu/umd/cs/findbugs/ ...
/external/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTraverse.h628 if (VT.Signed)
634 if (VT.Signed)
640 if (VT.Signed)
646 if (VT.Signed)
H A DThreadSafetyTIL.h151 : Base(B), Size(Sz), Signed(S), VectSize(VS)
156 bool Signed; member in namespace:clang::threadSafety::til
669 if (ValType.Signed)
674 if (ValType.Signed)
679 if (ValType.Signed)
684 if (ValType.Signed)
/external/llvm/lib/Target/NVPTX/InstPrinter/
H A DNVPTXInstPrinter.cpp250 if (Imm == NVPTX::PTXLdStInstCode::Signed)
/external/llvm/lib/Target/AArch64/
H A DAArch64FastISel.cpp102 bool SelectFPToInt(const Instruction *I, bool Signed);
103 bool SelectIntToFP(const Instruction *I, bool Signed);
1118 bool AArch64FastISel::SelectFPToInt(const Instruction *I, bool Signed) { argument
1133 if (Signed)
1138 if (Signed)
1151 bool AArch64FastISel::SelectIntToFP(const Instruction *I, bool Signed) { argument
1167 EmitIntExt(SrcVT.getSimpleVT(), SrcReg, MVT::i32, /*isZExt*/ !Signed);
1177 if (Signed)
1182 if (Signed)
1958 return SelectFPToInt(I, /*Signed
[all...]
/external/clang/lib/AST/
H A DASTContext.cpp7458 bool Signed = false, Unsigned = false; local
7471 assert(!Signed && "Can't use 'S' modifier multiple times!");
7472 Signed = true;
7475 assert(!Signed && "Can't use both 'S' and 'U' modifiers!");
7505 assert(HowLong == 0 && !Signed && !Unsigned &&
7510 assert(HowLong == 0 && !Signed && !Unsigned &&
7515 assert(HowLong == 0 && !Signed && !Unsigned &&
7520 assert(HowLong < 2 && !Signed && !Unsigned &&
7546 if (Signed)
7554 assert(HowLong == 0 && !Signed
[all...]
/external/llvm/include/llvm/ADT/
H A DAPInt.h897 /// \brief Signed division function for APInt.
899 /// Signed divide this APInt by APInt RHS.
915 /// Signed remainder operation on APInt.
1026 /// \brief Signed less than comparison
1034 /// \brief Signed less than comparison
1058 /// \brief Signed less or equal comparison
1066 /// \brief Signed less or equal comparison
1090 /// \brief Signed greather than comparison
1098 /// \brief Signed greater than comparison
1122 /// \brief Signed greathe
[all...]
/external/llvm/lib/Support/
H A DAPInt.cpp2126 bool Signed, bool formatAsCLiteral) const {
2169 if (!Signed) {
2196 if (Signed && isNegative()) {
2247 std::string APInt::toString(unsigned Radix = 10, bool Signed = true) const {
2249 toString(S, Radix, Signed, /* formatAsCLiteral = */false);

Completed in 4527 milliseconds

12