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

  /external/jsr305/ri/src/main/java/javax/annotation/
Signed.java 16 public @interface Signed {
  /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 116 Signed,
NVPTXISelDAGToDAG.cpp 195 fromType = NVPTX::PTXLdStInstCode::Signed;
NVPTXAsmPrinter.cpp 180 // signed or unsigned between different targets.
638 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...]
  /tools/motodev/src/plugins/videos/libs/gdata/java/deps/
jsr305.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 540 bool Signed = N->getOpcode() == ISD::SINT_TO_FP;
555 LC = Signed ? RTLIB::getSINTTOFP(NVT, RVT):RTLIB::getUINTTOFP (NVT, RVT);
560 SDValue Op = DAG.getNode(Signed ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND, dl,
    [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp 291 bool Signed = true;
294 case MVT::i1: Signed = false; // FALLTHROUGH to handle as i8.
308 .addImm(Signed ? (uint64_t) CI->getSExtValue() :
397 // They have to fit in the 32-bit signed displacement field though.
    [all...]