Searched defs:Unsigned (Results 1 - 15 of 15) sorted by relevance

/external/dexmaker/src/dx/java/com/android/dx/util/
H A DUnsigned.java20 * Unsigned arithmetic over Java's signed types.
22 public final class Unsigned { class
23 private Unsigned() {} method in class:Unsigned
/external/clang/include/clang/ASTMatchers/Dynamic/
H A DVariantValue.h121 VariantValue(unsigned Unsigned);
126 /// \brief Unsigned value functions.
129 void setUnsigned(unsigned Unsigned);
168 unsigned Unsigned; member in union:clang::ast_matchers::dynamic::VariantValue::AllValues
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DAPSIntType.h24 APSIntType(uint32_t Width, bool Unsigned) argument
25 : BitWidth(Width), IsUnsigned(Unsigned) {}
97 /// Unsigned integers are considered to be better conversion types than
/external/clang/test/Index/
H A Dindex-templates.cpp42 typedef unsigned Unsigned; typedef
44 template<typename T, Unsigned Value>
54 f<Unsigned, OneDimension, array>(array<Unsigned, OneDimension>());
55 Z4().getAs<Unsigned>();
148 // CHECK-LOAD: index-templates.cpp:42:18: TypedefDecl=Unsigned:42:18 (Definition) Extent=[42:1 - 42:26]
152 // CHECK-LOAD: index-templates.cpp:44:22: TypeRef=Unsigned:42:18 Extent=[44:22 - 44:30]
161 // CHECK-LOAD: index-templates.cpp:54:5: TypeRef=Unsigned:42:18 Extent=[54:5 - 54:13]
166 // CHECK-LOAD: index-templates.cpp:55:14: TypeRef=Unsigned:42:18 Extent=[55:14 - 55:22]
/external/chromium_org/base/strings/
H A Dstring_util.h552 typedef T Unsigned; typedef in struct:ToUnsigned
557 typedef unsigned char Unsigned; typedef in struct:ToUnsigned
561 typedef unsigned char Unsigned; typedef in struct:ToUnsigned
566 typedef unsigned short Unsigned; typedef in struct:ToUnsigned
568 typedef uint32 Unsigned;
573 typedef unsigned short Unsigned; typedef in struct:ToUnsigned
/external/clang/lib/ASTMatchers/Dynamic/
H A DVariantValue.cpp69 VariantValue::VariantValue(unsigned Unsigned) : Type(VT_Nothing) { argument
70 setUnsigned(Unsigned);
129 return Value.Unsigned;
135 Value.Unsigned = NewValue;
172 case VT_Unsigned: return "Unsigned";
/external/llvm/unittests/ADT/
H A DStringRefTest.cpp344 } Unsigned[] = member in namespace:__anon21824
391 for (size_t i = 0; i < array_lengthof(Unsigned); ++i) {
392 bool U8Success = StringRef(Unsigned[i].Str).getAsInteger(0, U8);
393 if (static_cast<uint8_t>(Unsigned[i].Expected) == Unsigned[i].Expected) {
395 EXPECT_EQ(U8, Unsigned[i].Expected);
399 bool U16Success = StringRef(Unsigned[i].Str).getAsInteger(0, U16);
400 if (static_cast<uint16_t>(Unsigned[i].Expected) == Unsigned[i].Expected) {
402 EXPECT_EQ(U16, Unsigned[
[all...]
/external/chromium/base/
H A Dstring_util.h547 typedef T Unsigned; typedef in struct:ToUnsigned
552 typedef unsigned char Unsigned; typedef in struct:ToUnsigned
556 typedef unsigned char Unsigned; typedef in struct:ToUnsigned
561 typedef unsigned short Unsigned; typedef in struct:ToUnsigned
563 typedef uint32 Unsigned;
568 typedef unsigned short Unsigned; typedef in struct:ToUnsigned
/external/llvm/include/llvm/ADT/
H A DAPSInt.h254 static APSInt getMaxValue(uint32_t numBits, bool Unsigned) { argument
255 return APSInt(Unsigned ? APInt::getMaxValue(numBits)
256 : APInt::getSignedMaxValue(numBits), Unsigned);
261 static APSInt getMinValue(uint32_t numBits, bool Unsigned) { argument
262 return APSInt(Unsigned ? APInt::getMinValue(numBits)
263 : APInt::getSignedMinValue(numBits), Unsigned);
/external/llvm/lib/Target/NVPTX/
H A DNVPTX.h121 Unsigned = 0, enumerator in enum:llvm::NVPTX::PTXLdStInstCode::FromType
/external/openfst/src/include/fst/
H A Dconst-fst.h56 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 Dcompact-fst.h135 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/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.cpp657 bool Unsigned) {
658 addConstantValue(Die, CI->getValue(), Unsigned);
662 void CompileUnit::addConstantValue(DIE *Die, const APInt &Val, bool Unsigned) { argument
672 form = Unsigned ? dwarf::DW_FORM_udata : dwarf::DW_FORM_sdata;
674 if (Unsigned)
656 addConstantValue(DIE *Die, const ConstantInt *CI, bool Unsigned) argument
/external/clang/lib/CodeGen/
H A DCGExprScalar.cpp597 bool Unsigned = DstType->isUnsignedIntegerOrEnumerationType(); local
599 APSInt Min = APSInt::getMinValue(Width, Unsigned);
601 if (MinSrc.convertFromAPInt(Min, !Unsigned, APFloat::rmTowardZero) &
611 APSInt Max = APSInt::getMaxValue(Width, Unsigned);
613 if (MaxSrc.convertFromAPInt(Max, !Unsigned, APFloat::rmTowardZero) &
2685 // Unsigned integers and pointers.
/external/clang/lib/AST/
H A DASTContext.cpp7522 bool Signed = false, Unsigned = false; local
7534 assert(!Unsigned && "Can't use both 'S' and 'U' modifiers!");
7540 assert(!Unsigned && "Can't use 'S' modifier multiple times!");
7541 Unsigned = true;
7556 assert(HowLong == 0 && !Signed && !Unsigned &&
7561 assert(HowLong == 0 && !Signed && !Unsigned &&
7566 assert(HowLong < 2 && !Signed && !Unsigned &&
7575 if (Unsigned)
7582 Type = Unsigned ? Context.UnsignedInt128Ty : Context.Int128Ty;
7584 Type = Unsigned
[all...]

Completed in 934 milliseconds