HomeSort by relevance Sort by last modified time
    Searched defs:Signed (Results 1 - 25 of 40) sorted by null

1 2

  /external/jsr305/ri/src/main/java/javax/annotation/
Signed.java 16 public @interface Signed {
  /external/clang/test/SemaCXX/
bitfield.cpp 7 typedef signed Signed;
12 typedef __typeof__(+t.n) Signed; // ... but promotes to signed.
14 typedef __typeof__(t.n + 0) Signed; // Arithmetic promotes.
19 typedef __typeof__(+(t.n = 0)) Signed; // ... which is a bit-field.
20 typedef __typeof__(+(t.n += 0)) Signed;
21 typedef __typeof__(+(t.n *= 0)) Signed;
25 typedef __typeof__(+(++t.n)) Signed;
26 typedef __typeof__(+(--t.n)) Signed;
    [all...]
  /external/clang/test/Sema/
bitfield.c 63 typedef signed Signed;
68 typedef __typeof__(+t5.n) Signed; // ... but promotes to signed.
70 typedef __typeof__(t5.n + 0) Signed; // Arithmetic promotes.
72 typedef __typeof__(+(t5.n = 0)) Signed; // FIXME: Assignment should not; the result
73 typedef __typeof__(+(t5.n += 0)) Signed; // is a non-bit-field lvalue of type unsigned.
74 typedef __typeof__(+(t5.n *= 0)) Signed;
76 typedef __typeof__(+(++t5.n)) Signed; // FIXME: Increment is equivalent to compound-assignment.
77 typedef __typeof__(+(--t5.n)) Signed; // This should not promote to signed
    [all...]
  /external/llvm/unittests/ADT/
StringRefTest.cpp 442 } Signed[] =
508 for (size_t i = 0; i < array_lengthof(Signed); ++i) {
509 bool S8Success = StringRef(Signed[i].Str).getAsInteger(0, S8);
510 if (static_cast<int8_t>(Signed[i].Expected) == Signed[i].Expected) {
512 EXPECT_EQ(S8, Signed[i].Expected);
516 bool S16Success = StringRef(Signed[i].Str).getAsInteger(0, S16);
517 if (static_cast<int16_t>(Signed[i].Expected) == Signed[i].Expected) {
519 EXPECT_EQ(S16, Signed[i].Expected)
    [all...]
  /external/llvm/lib/Fuzzer/
FuzzerTraceState.cpp 108 ICMP_SGT = 38, ///< signed greater than
109 ICMP_SGE = 39, ///< signed greater or equal
110 ICMP_SLT = 40, ///< signed less than
111 ICMP_SLE = 41, ///< signed less or equal
207 int64_t Signed = static_cast<int64_t>(Data);
208 Signed >>= 16;
209 return Signed == 0 || Signed == -1L;
  /external/llvm/lib/Target/NVPTX/
NVPTX.h 111 Signed,
NVPTXISelLowering.cpp     [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonSplitDouble.cpp 771 bool Signed = (Opc == S2_asr_i_p);
777 : (Signed ? S2_asr_i_r : S2_lsr_i_r);
810 else if (S == 16 && Signed)
844 if (!Signed)
856 else if (S == 16 && Signed)
864 if (Signed)
    [all...]
  /external/guice/lib/build/
jsr305.jar 
  /external/owasp/sanitizer/distrib/lib/
jsr305.jar 
  /external/owasp/sanitizer/lib/jsr305/
jsr305.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
jsr305.jar 
  /external/vogar/lib/
jsr305.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/findbugs/jsr305/1.3.9/
jsr305-1.3.9.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/findbugs/jsr305/2.0.1/
jsr305-2.0.1.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/findbugs/jsr305/2.0.2/
jsr305-2.0.2.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/findbugs/jsr305/2.0.3/
jsr305-2.0.3.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/findbugs/jsr305/3.0.0/
jsr305-3.0.0.jar 
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafetyTIL.h 158 : Base(B), Size(Sz), Signed(S), VectSize(VS)
163 bool Signed;
581 if (ValType.Signed)
586 if (ValType.Signed)
591 if (ValType.Signed)
596 if (ValType.Signed)
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeFloatTypes.cpp     [all...]
TargetLowering.cpp     [all...]
  /external/llvm/lib/Target/AMDGPU/
AMDGPUISelDAGToDAG.cpp 485 bool Signed = Opc == AMDGPUISD::BFE_I32;
490 return getS_BFE(Signed ? AMDGPU::S_BFE_I32 : AMDGPU::S_BFE_U32, SDLoc(N),
    [all...]
  /external/llvm/lib/Target/Mips/
MipsSEISelLowering.cpp     [all...]
  /prebuilts/tools/common/m2/repository/com/android/tools/jill/jill-api/0.9.0/
jill-api-0.9.0.jar 
  /external/clang/utils/TableGen/
NeonEmitter.cpp 64 ClassS, // signed/unsigned/poly, e.g., "s8", "u8" or "p8" suffix
135 bool Float, Signed, Immediate, Void, Poly, Constant, Pointer;
144 : Float(false), Signed(false), Immediate(false), Void(true), Poly(false),
149 : TS(TS), Float(false), Signed(false), Immediate(false), Void(false),
170 bool isSigned() const { return Signed; }
191 void makeUnsigned() { Signed = false; }
192 void makeSigned() { Signed = true; }
196 Signed = Sign;
203 Signed = true;
557 if (!Signed && isInteger()
    [all...]

Completed in 478 milliseconds

1 2