HomeSort by relevance Sort by last modified time
    Searched defs:Unsigned (Results 1 - 11 of 11) sorted by null

  /dalvik/dx/src/com/android/dx/util/
Unsigned.java 20 * Unsigned arithmetic over Java's signed types.
22 public final class Unsigned {
23 private Unsigned() {}
  /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() {}
  /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/chromium/base/
string_util.h 542 // Hack to convert any char-like type to its unsigned counterpart.
543 // For example, it will convert char, signed char and unsigned char to unsigned
547 typedef T Unsigned;
552 typedef unsigned char Unsigned;
556 typedef unsigned char Unsigned;
561 typedef unsigned short Unsigned;
    [all...]
  /external/llvm/unittests/ADT/
StringRefTest.cpp 344 } Unsigned[] =
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[i].Expected)
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTX.h 114 Unsigned = 0,
  /external/openfst/src/include/fst/
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;
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...]
  /external/clang/lib/CodeGen/
CGExprScalar.cpp 478 Value *EmitCompare(const BinaryOperator *E, unsigned UICmpOpc,
479 unsigned SICmpOpc, unsigned FCmpOpc);
560 // Integer to floating-point. This can fail for unsigned short -> __half
561 // or unsigned __int128 -> float.
595 unsigned Width = CGF.getContext().getIntWidth(DstType);
596 bool Unsigned = DstType->isUnsignedIntegerOrEnumerationType();
598 APSInt Min = APSInt::getMinValue(Width, Unsigned);
599 if (MinSrc.convertFromAPInt(Min, !Unsigned, APFloat::rmTowardZero) &
605 APSInt Max = APSInt::getMaxValue(Width, Unsigned);
    [all...]
  /external/clang/lib/AST/
ASTContext.cpp 42 unsigned ASTContext::NumImplicitDefaultConstructors;
43 unsigned ASTContext::NumImplicitDefaultConstructorsDeclared;
44 unsigned ASTContext::NumImplicitCopyConstructors;
45 unsigned ASTContext::NumImplicitCopyConstructorsDeclared;
46 unsigned ASTContext::NumImplicitMoveConstructors;
47 unsigned ASTContext::NumImplicitMoveConstructorsDeclared;
48 unsigned ASTContext::NumImplicitCopyAssignmentOperators;
49 unsigned ASTContext::NumImplicitCopyAssignmentOperatorsDeclared;
50 unsigned ASTContext::NumImplicitMoveAssignmentOperators;
51 unsigned ASTContext::NumImplicitMoveAssignmentOperatorsDeclared
    [all...]
  /prebuilts/sdk/tools/lib/
dx.jar 

Completed in 1017 milliseconds