/external/clang/test/SemaCXX/ |
H A D | bitfield.cpp | 6 typedef unsigned Unsigned; typedef in namespace:PromotionVersusMutation 11 typedef __typeof__(t.n) Unsigned; // Bitfield is unsigned typedef in namespace:PromotionVersusMutation 16 typedef __typeof__(t.n = 0) Unsigned; // Assignment produces an lvalue... typedef in namespace:PromotionVersusMutation 17 typedef __typeof__(t.n += 0) Unsigned; typedef in namespace:PromotionVersusMutation 18 typedef __typeof__(t.n *= 0) Unsigned; typedef in namespace:PromotionVersusMutation 23 typedef __typeof__(++t.n) Unsigned; // Increment is equivalent to compound-assignment. member in namespace:PromotionVersusMutation 24 typedef __typeof__(--t.n) Unsigned; member in namespace:PromotionVersusMutation 28 typedef __typeof__(t.n++) Unsigned; // Post-increment's result has the type typedef in namespace:PromotionVersusMutation 29 typedef __typeof__(t.n--) Unsigned; // of the operand... typedef in namespace:PromotionVersusMutation 30 typedef __typeof__(+(t.n++)) Unsigned; // member in namespace:PromotionVersusMutation 31 typedef __typeof__(+(t.n--)) Unsigned; // it's not a glvalue). member in namespace:PromotionVersusMutation [all...] |
/external/dexmaker/src/dx/java/com/android/dx/util/ |
H A D | Unsigned.java | 20 * Unsigned arithmetic over Java's signed types. 22 public final class Unsigned { class 23 private Unsigned() {} method in class:Unsigned
|
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
H A D | APSIntType.h | 25 APSIntType(uint32_t Width, bool Unsigned) argument 26 : BitWidth(Width), IsUnsigned(Unsigned) {} 98 /// Unsigned integers are considered to be better conversion types than
|
/external/clang/test/Sema/ |
H A D | bitfield.c | 59 typedef unsigned Unsigned; typedef 63 typedef __typeof__(t5.n) Unsigned; // Bitfield is unsigned typedef 75 typedef __typeof__(+(t5.n++)) Unsigned; // Post-increment is underspecified, but seems to 76 typedef __typeof__(+(t5.n--)) Unsigned; // also act like compound-assignment.
|
/external/lldb/source/Plugins/SymbolFile/DWARF/ |
H A D | DWARFFormValue.h | 61 uint64_t Unsigned() const { return m_value.value.uval; } function in class:DWARFFormValue
|
/external/lldb/tools/lldb-perf/lib/ |
H A D | Results.h | 27 class Unsigned; 39 Unsigned 90 Unsigned * 93 if (m_type == Type::Unsigned) 94 return (Unsigned *)this; 260 class Unsigned : public Result class in class:lldb_perf::Results 263 Unsigned (const char *name, const char *description, uint64_t value) : function in class:lldb_perf::Results::Unsigned 264 Result (Type::Unsigned, name, description), 270 ~Unsigned()
|
/external/clang/test/Index/ |
H A D | index-templates.cpp | 42 typedef unsigned Unsigned; typedef 44 template<typename T, Unsigned Value> 54 f<Unsigned, OneDimension, array>(array<Unsigned, OneDimension>()); 55 Z4().getAs<Unsigned>(); 158 // CHECK-LOAD: index-templates.cpp:42:18: TypedefDecl=Unsigned:42:18 (Definition) Extent=[42:1 - 42:26] 162 // CHECK-LOAD: index-templates.cpp:44:22: TypeRef=Unsigned:42:18 Extent=[44:22 - 44:30] 171 // CHECK-LOAD: index-templates.cpp:54:5: TypeRef=Unsigned:42:18 Extent=[54:5 - 54:13] 176 // CHECK-LOAD: index-templates.cpp:55:14: TypeRef=Unsigned:42:18 Extent=[55:14 - 55:22]
|
/external/clang/include/clang/ASTMatchers/Dynamic/ |
H A D | VariantValue.h | 256 VariantValue(unsigned Unsigned); 264 /// \brief Unsigned value functions. 267 void setUnsigned(unsigned Unsigned); 313 unsigned Unsigned; member in union:clang::ast_matchers::dynamic::VariantValue::AllValues
|
/external/clang/lib/ASTMatchers/Dynamic/ |
H A D | VariantValue.cpp | 248 VariantValue::VariantValue(unsigned Unsigned) : Type(VT_Nothing) { argument 249 setUnsigned(Unsigned); 304 return Value.Unsigned; 310 Value.Unsigned = NewValue; 384 case VT_Unsigned: return "Unsigned";
|
/external/llvm/unittests/ADT/ |
H A D | StringRefTest.cpp | 372 } Unsigned[] = member in namespace:__anon11229 419 for (size_t i = 0; i < array_lengthof(Unsigned); ++i) { 420 bool U8Success = StringRef(Unsigned[i].Str).getAsInteger(0, U8); 421 if (static_cast<uint8_t>(Unsigned[i].Expected) == Unsigned[i].Expected) { 423 EXPECT_EQ(U8, Unsigned[i].Expected); 427 bool U16Success = StringRef(Unsigned[i].Str).getAsInteger(0, U16); 428 if (static_cast<uint16_t>(Unsigned[i].Expected) == Unsigned[i].Expected) { 430 EXPECT_EQ(U16, Unsigned[ [all...] |
/external/llvm/include/llvm/ADT/ |
H A D | APSInt.h | 267 static APSInt getMaxValue(uint32_t numBits, bool Unsigned) { argument 268 return APSInt(Unsigned ? APInt::getMaxValue(numBits) 269 : APInt::getSignedMaxValue(numBits), Unsigned); 274 static APSInt getMinValue(uint32_t numBits, bool Unsigned) { argument 275 return APSInt(Unsigned ? APInt::getMinValue(numBits) 276 : APInt::getSignedMinValue(numBits), Unsigned);
|
/external/llvm/lib/Target/NVPTX/ |
H A D | NVPTX.h | 126 Unsigned = 0, enumerator in enum:llvm::NVPTX::PTXLdStInstCode::FromType
|
H A D | NVPTXISelLowering.cpp | 4027 Unsigned, enumerator in enum:OperandSignedness 4049 S = Unsigned; 4080 if (LHSSign == Unsigned) {
|
/external/openfst/src/include/fst/ |
H A D | const-fst.h | 56 typedef U Unsigned; typedef in class:fst::ConstFstImpl 114 Unsigned pos; // Start of state's arcs in *arcs_ 115 Unsigned narcs; // Number of arcs (per state) 116 Unsigned niepsilons; // # of input epsilons 117 Unsigned noepsilons; // # of output epsilons 267 typedef U Unsigned; typedef in class:fst::ConstFst
|
H A D | compact-fst.h | 135 typedef U Unsigned; typedef in class:fst::CompactFstData 174 Unsigned States(ssize_t i) const { return states_[i]; } 190 Unsigned *states_; 229 states_ = new Unsigned[nstates_ + 1]; 338 states_ = new Unsigned[nstates_ + 1]; 377 size_t b = (data->nstates_ + 1) * sizeof(Unsigned); 384 data->states_ = static_cast<Unsigned *>( 418 (nstates_ + 1) * sizeof(Unsigned)); 463 typedef U Unsigned; typedef in class:fst::CompactFstImpl 568 Unsigned 805 typedef U Unsigned; typedef in class:fst::CompactFst 931 typedef U Unsigned; typedef [all...] |
/external/llvm/include/llvm/Support/ |
H A D | ScaledNumber.h | 436 uint64_t Unsigned = N == INT64_MIN ? UINT64_C(1) << 63 : uint64_t(-N); 437 return std::make_pair(Unsigned, true); 661 std::pair<uint64_t, bool> Unsigned = splitSigned(N); local 662 return joinSigned(scale(Unsigned.first), Unsigned.second); 665 std::pair<uint64_t, bool> Unsigned = splitSigned(N); local 666 return joinSigned(scaleByInverse(Unsigned.first), Unsigned.second);
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
H A D | DwarfUnit.cpp | 713 void DwarfUnit::addConstantValue(DIE &Die, bool Unsigned, uint64_t Val) { argument 717 Unsigned ? dwarf::DW_FORM_udata : dwarf::DW_FORM_sdata, Val); 725 void DwarfUnit::addConstantValue(DIE &Die, const APInt &Val, bool Unsigned) { argument 728 addConstantValue(Die, Unsigned, 729 Unsigned ? Val.getZExtValue() : Val.getSExtValue());
|
/external/clang/lib/CodeGen/ |
H A D | CGExprScalar.cpp | 643 bool Unsigned = DstType->isUnsignedIntegerOrEnumerationType(); local 645 APSInt Min = APSInt::getMinValue(Width, Unsigned); 647 if (MinSrc.convertFromAPInt(Min, !Unsigned, APFloat::rmTowardZero) & 657 APSInt Max = APSInt::getMaxValue(Width, Unsigned); 659 if (MaxSrc.convertFromAPInt(Max, !Unsigned, APFloat::rmTowardZero) & 2920 // Unsigned integers and pointers.
|
/external/clang/lib/AST/ |
H A D | ASTContext.cpp | 7564 bool Signed = false, Unsigned = false; local 7576 assert(!Unsigned && "Can't use both 'S' and 'U' modifiers!"); 7582 assert(!Unsigned && "Can't use 'U' modifier multiple times!"); 7583 Unsigned = true; 7611 assert(HowLong == 0 && !Signed && !Unsigned && 7616 assert(HowLong == 0 && !Signed && !Unsigned && 7621 assert(HowLong == 0 && !Signed && !Unsigned && 7626 assert(HowLong < 2 && !Signed && !Unsigned && 7635 if (Unsigned) 7642 Type = Unsigned [all...] |
/external/llvm/lib/Target/X86/ |
H A D | X86ISelLowering.cpp | 13001 bool Unsigned = false; local 13008 case ISD::SETUGT: SSECC = 6; Unsigned = true; break; 13011 case ISD::SETULT: SSECC = 1; Unsigned = true; break; 13012 case ISD::SETUGE: SSECC = 5; Unsigned = true; break; //NLT 13014 case ISD::SETULE: Unsigned = true; //fall-through 13022 Opc = Unsigned ? X86ISD::CMPMU: X86ISD::CMPM;
|