HomeSort by relevance Sort by last modified time
    Searched refs:Unsigned (Results 1 - 25 of 50) sorted by null

1 2

  /external/dexmaker/src/dx/java/com/android/dx/util/
Unsigned.java 20 * Unsigned arithmetic over Java's signed types.
22 public final class Unsigned {
23 private Unsigned() {}
Uint.java 20 * An unsigned integer.
30 return Unsigned.compare(intValue, uint.intValue);
  /libcore/dex/src/main/java/com/android/dex/util/
Unsigned.java 20 * Unsigned arithmetic over Java's signed types.
22 public final class Unsigned {
23 private Unsigned() {}
  /libcore/dex/src/main/java/com/android/dex/
FieldId.java 19 import com.android.dex.util.Unsigned;
48 return Unsigned.compare(declaringClassIndex, other.declaringClassIndex);
51 return Unsigned.compare(nameIndex, other.nameIndex);
53 return Unsigned.compare(typeIndex, other.typeIndex); // should always be 0
MethodId.java 19 import com.android.dex.util.Unsigned;
48 return Unsigned.compare(declaringClassIndex, other.declaringClassIndex);
51 return Unsigned.compare(nameIndex, other.nameIndex);
53 return Unsigned.compare(protoIndex, other.protoIndex);
ProtoId.java 19 import com.android.dex.util.Unsigned;
36 return Unsigned.compare(returnTypeIndex, other.returnTypeIndex);
38 return Unsigned.compare(parametersOffset, other.parametersOffset);
TypeList.java 19 import com.android.dex.util.Unsigned;
40 return Unsigned.compare(types[i], other.types[i]);
43 return Unsigned.compare(types.length, other.types.length);
  /external/lldb/tools/lldb-perf/lib/
Results.h 27 class Unsigned;
39 Unsigned
90 Unsigned *
93 if (m_type == Type::Unsigned)
94 return (Unsigned *)this;
260 class Unsigned : public Result
263 Unsigned (const char *name, const char *description, uint64_t value) :
264 Result (Type::Unsigned, name, description),
270 ~Unsigned()
Gauge.cpp 38 return Results::ResultSP (new Results::Unsigned (NULL, NULL, value));
Results.cpp 82 case Results::Result::Type::Unsigned:
147 case Results::Result::Type::Unsigned:
191 m_dictionary[std::string(name)] = ResultSP (new Unsigned (name, description, value));
  /external/clang/test/Index/
index-templates.cpp 35 const unsigned OneDimension = 1;
36 template<typename T, unsigned Dimensions = OneDimension>
39 template<template<typename, unsigned> class DataStructure = array>
42 typedef unsigned Unsigned;
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
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
APSIntType.h 25 APSIntType(uint32_t Width, bool Unsigned)
26 : BitWidth(Width), IsUnsigned(Unsigned) {}
88 /// for 'unsigned char' (u8).
98 /// Unsigned integers are considered to be better conversion types than
  /external/clang/include/clang/ASTMatchers/Dynamic/
VariantValue.h 196 /// - \c unsigned
208 VariantValue(unsigned Unsigned);
216 /// \brief Unsigned value functions.
218 unsigned getUnsigned() const;
219 void setUnsigned(unsigned Unsigned);
247 unsigned Unsigned;
  /external/llvm/include/llvm/ADT/
APSInt.h 29 /// unsigned.
55 void toString(SmallVectorImpl<char> &Str, unsigned Radix = 10) const {
60 std::string toString(unsigned Radix) const {
108 APSInt operator>>(unsigned Amt) const {
111 APSInt& operator>>=(unsigned Amt) {
149 APSInt operator<<(unsigned Bits) const {
152 APSInt& operator<<=(unsigned Amt) {
248 static APSInt getMaxValue(uint32_t numBits, bool Unsigned) {
249 return APSInt(Unsigned ? APInt::getMaxValue(numBits)
250 : APInt::getSignedMaxValue(numBits), Unsigned);
    [all...]
  /external/llvm/unittests/ADT/
StringRefTest.cpp 372 } Unsigned[] =
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[i].Expected)
    [all...]
  /external/clang/lib/ASTMatchers/Dynamic/
VariantValue.cpp 159 VariantValue::VariantValue(unsigned Unsigned) : Type(VT_Nothing) {
160 setUnsigned(Unsigned);
213 unsigned VariantValue::getUnsigned() const {
215 return Value.Unsigned;
218 void VariantValue::setUnsigned(unsigned NewValue) {
221 Value.Unsigned = NewValue;
258 case VT_Unsigned: return "Unsigned";
  /external/openfst/src/include/fst/
string.h 74 labels->push_back(static_cast<unsigned char>(str[i]));
106 template <class Unsigned>
108 CompactFst<A, StringCompactor<A>, Unsigned> *fst) const {
112 template <class Unsigned>
114 CompactFst<A, WeightedStringCompactor<A>, Unsigned> *fst,
compact-fst.h 129 // The unsigned type U is used to represent indices into the compacts_
135 typedef U Unsigned;
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;
    [all...]
const-fst.h 42 // Arc definition. The unsigned type U is used to represent indices into
56 typedef U Unsigned;
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
254 // methods to ImplToExpandedFst. The unsigned type U is used to
267 typedef U Unsigned;
  /external/chromium_org/base/strings/
string_util.h 494 // Hack to convert any char-like type to its unsigned counterpart.
495 // For example, it will convert char, signed char and unsigned char to unsigned
499 typedef T Unsigned;
504 typedef unsigned char Unsigned;
508 typedef unsigned char Unsigned;
513 typedef unsigned short Unsigned;
    [all...]
  /external/lldb/source/Plugins/SymbolFile/DWARF/
DWARFDebugInfoEntry.cpp 145 (unsigned)abbr_idx);
228 // signed or unsigned LEB 128 values
326 ((DWARFCompileUnit*)cu)->SetBaseAddress(form_value.Unsigned());
395 // signed or unsigned LEB 128 values
788 lo_pc = form_value.Unsigned();
796 lo_pc = form_value.Unsigned();
800 hi_pc = form_value.Unsigned();
813 debug_ranges->FindRanges(form_value.Unsigned(), ranges);
842 decl_file = form_value.Unsigned();
847 decl_line = form_value.Unsigned();
    [all...]
DWARFFormValue.cpp 257 // signed or unsigned LEB 128 values
283 uint64_t uvalue = Unsigned();
521 uint64_t a = a_value.Unsigned();
522 uint64_t b = b_value.Unsigned();
563 uint64_t a_len = a_value.Unsigned();
564 uint64_t b_len = b_value.Unsigned();
570 return memcmp(a_value.BlockData(), b_value.BlockData(), a_value.Unsigned());
DWARFFormValue.h 61 uint64_t Unsigned() const { return m_value.value.uval; }
  /external/llvm/lib/Target/NVPTX/
NVPTX.h 125 Unsigned = 0,
  /external/chromium_org/base/json/
string_escape.cc 138 ToUnsigned<StringPiece::value_type>::Unsigned c = *it;

Completed in 410 milliseconds

1 2