Searched defs:Unsigned (Results 1 - 11 of 11) 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/StaticAnalyzer/Core/PathSensitive/
H A DAPSIntType.h24 APSIntType(uint32_t Width, bool Unsigned) argument
25 : BitWidth(Width), IsUnsigned(Unsigned) {}
94 /// 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/llvm/unittests/ADT/
H A DStringRefTest.cpp344 } Unsigned[] = member in namespace:__anon9245
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.h115 Unsigned = 0, enumerator in enum:llvm::NVPTX::PTXLdStInstCode::FromType
/external/openfst/src/include/fst/
H A Dconst-fst.h55 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
266 typedef U Unsigned; typedef in class:fst::ConstFst
H A Dcompact-fst.h134 typedef U Unsigned; typedef in class:fst::CompactFstData
165 Unsigned States(ssize_t i) const { return states_[i]; }
182 Unsigned *states_;
223 states_ = new Unsigned[nstates_ + 1];
330 states_ = new Unsigned[nstates_ + 1];
364 data->states_ = new Unsigned[data->nstates_ + 1];
372 size_t b = (data->nstates_ + 1) * sizeof(Unsigned);
412 (nstates_ + 1) * sizeof(Unsigned));
457 typedef U Unsigned; typedef in class:fst::CompactFstImpl
563 Unsigned
794 typedef U Unsigned; typedef in class:fst::CompactFst
[all...]
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.cpp529 bool Unsigned) {
539 form = Unsigned ? dwarf::DW_FORM_udata : dwarf::DW_FORM_sdata;
541 if (Unsigned)
528 addConstantValue(DIE *Die, const ConstantInt *CI, bool Unsigned) argument
/external/clang/lib/AST/
H A DASTContext.cpp6888 bool Signed = false, Unsigned = false; local
6900 assert(!Unsigned && "Can't use both 'S' and 'U' modifiers!");
6906 assert(!Unsigned && "Can't use 'S' modifier multiple times!");
6907 Unsigned = true;
6922 assert(HowLong == 0 && !Signed && !Unsigned &&
6927 assert(HowLong == 0 && !Signed && !Unsigned &&
6932 assert(HowLong < 2 && !Signed && !Unsigned &&
6941 if (Unsigned)
6948 Type = Unsigned ? Context.UnsignedInt128Ty : Context.Int128Ty;
6950 Type = Unsigned
[all...]

Completed in 229 milliseconds