HomeSort by relevance Sort by last modified time
    Searched refs:Signed (Results 1 - 23 of 23) sorted by null

  /external/jsr305/ri/src/main/java/javax/annotation/
Signed.java 16 public @interface Signed {
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64AsmBackend.cpp 462 int64_t Signed = Value;
463 assert(Signed >= -(1LL << 16) && Signed < (1LL << 16)
465 if (Signed >= 0) {
489 int64_t Signed = Value;
490 assert(Signed >= -(1LL << 32) && Signed < (1LL << 32)
492 if (Signed >= 0) {
512 int64_t Signed = Value;
513 assert(Signed >= -(1LL << 48) && Signed < (1LL << 48
    [all...]
  /external/llvm/unittests/ADT/
StringRefTest.cpp 361 } Signed[] =
427 for (size_t i = 0; i < array_lengthof(Signed); ++i) {
428 bool S8Success = StringRef(Signed[i].Str).getAsInteger(0, S8);
429 if (static_cast<int8_t>(Signed[i].Expected) == Signed[i].Expected) {
431 EXPECT_EQ(S8, Signed[i].Expected);
435 bool S16Success = StringRef(Signed[i].Str).getAsInteger(0, S16);
436 if (static_cast<int16_t>(Signed[i].Expected) == Signed[i].Expected) {
438 EXPECT_EQ(S16, Signed[i].Expected)
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTX.h 115 Signed,
NVPTXISelDAGToDAG.cpp 210 fromType = NVPTX::PTXLdStInstCode::Signed;
378 FromType = NVPTX::PTXLdStInstCode::Signed;
    [all...]
NVPTXAsmPrinter.cpp 222 // signed or unsigned between different targets.
666 if (Imm==NVPTX::PTXLdStInstCode::Signed)
    [all...]
  /external/webkit/Source/JavaScriptCore/assembler/
MacroAssemblerSH4.cpp 63 const Condition MacroAssemblerSH4::Signed = SH4Assembler::SI;
MacroAssemblerX86Common.h 56 Signed = X86Assembler::ConditionS,
785 // For branches, signed <, >, <= and >= are denoted as l, g, le, and ge
791 // treated as a signed 32bit value, is less than or equal to 5.
863 ASSERT((cond == Zero) || (cond == NonZero) || (cond == Signed));
870 ASSERT((cond == Zero) || (cond == NonZero) || (cond == Signed));
883 ASSERT((cond == Zero) || (cond == NonZero) || (cond == Signed));
893 ASSERT((cond == Zero) || (cond == NonZero) || (cond == Signed));
905 ASSERT((cond == Zero) || (cond == NonZero) || (cond == Signed));
917 ASSERT((cond == Zero) || (cond == NonZero) || (cond == Signed));
929 ASSERT((cond == Zero) || (cond == NonZero) || (cond == Signed));
    [all...]
MacroAssemblerARM.h 57 Signed = ARMAssembler::MI,
517 ASSERT((cond == Overflow) || (cond == Signed) || (cond == Zero) || (cond == NonZero));
524 ASSERT((cond == Overflow) || (cond == Signed) || (cond == Zero) || (cond == NonZero));
541 ASSERT((cond == Overflow) || (cond == Signed) || (cond == Zero) || (cond == NonZero));
553 ASSERT((cond == Overflow) || (cond == Signed) || (cond == Zero) || (cond == NonZero));
566 ASSERT((cond == Overflow) || (cond == Signed) || (cond == Zero) || (cond == NonZero));
573 ASSERT((cond == Overflow) || (cond == Signed) || (cond == Zero) || (cond == NonZero));
580 ASSERT((cond == Overflow) || (cond == Signed) || (cond == Zero) || (cond == NonZero));
587 ASSERT((cond == Signed) || (cond == Zero) || (cond == NonZero));
    [all...]
MacroAssemblerMIPS.h 72 Signed,
892 // For branches, signed <, >, <= and >= are denoted as l, g, le, and ge
898 // treated as a signed 32bit value, is less than or equal to 5.
    [all...]
MacroAssemblerSH4.h 72 static const Condition Signed;
    [all...]
MacroAssemblerARMv7.h 115 Signed = ARMv7Assembler::ConditionMI,
819 // For branches, signed <, >, <= and >= are denoted as l, g, le, and ge
825 // treated as a signed 32bit value, is less than or equal to 5.
    [all...]
  /prebuilts/tools/common/m2/internal/com/google/code/findbugs/jsr305/2.0.1/
jsr305-2.0.1.jar 
  /prebuilts/tools/common/m2/internal/com/google/code/findbugs/annotations/2.0.1/
annotations-2.0.1.jar 
  /external/llvm/include/llvm/ADT/
APInt.h 66 /// where it makes a difference, there are both signed and unsigned variants
69 /// results regardless of whether the values are interpreted as signed or
221 /// If isSigned is true then val is treated as if it were a signed value
335 /// This checks to see if the value of this APInt is the maximum signed
337 /// @brief Determine if this is the largest signed value.
350 /// This checks to see if the value of this APInt is the minimum signed
352 /// @brief Determine if this is the smallest signed value.
363 /// @brief Check if this APInt has an N-bits signed integer value.
401 /// @brief Gets maximum signed value of APInt for a specific bit width.
413 /// @brief Gets minimum signed value of APInt for a specific bit width
    [all...]
  /external/llvm/lib/Support/
APInt.cpp     [all...]
  /external/clang/lib/AST/
ASTContext.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeFloatTypes.cpp 564 bool Signed = N->getOpcode() == ISD::SINT_TO_FP;
579 LC = Signed ? RTLIB::getSINTTOFP(NVT, RVT):RTLIB::getUINTTOFP (NVT, RVT);
584 SDValue Op = DAG.getNode(Signed ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND, dl,
    [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp 293 bool Signed = true;
296 case MVT::i1: Signed = false; // FALLTHROUGH to handle as i8.
310 .addImm(Signed ? (uint64_t) CI->getSExtValue() :
398 // They have to fit in the 32-bit signed displacement field though.
    [all...]
  /external/ceres-solver/docs/
changes.tex 76 \item Signed comparison compiler warning fixes (Ricardo Martin)
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp 410 // .sleb128 (Signed=true) and .uleb128 (Signed=false)
411 bool ParseDirectiveLEB128(bool Signed);
    [all...]
  /external/webkit/Source/JavaScriptCore/jit/
JITArithmetic32_64.cpp 423 } else if (shift) { // signed right shift by zero is simply toInt conversion
    [all...]
  /external/dropbear/libtommath/
bn.tex 865 \subsection{Signed comparison}
867 To compare two mp\_int variables based on their signed value the mp\_cmp() function is provided.
    [all...]

Completed in 355 milliseconds