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

  /external/llvm/include/llvm/ADT/
Statistic.h 53 operator unsigned() const { return Value; }
54 const Statistic &operator=(unsigned Val) {
68 unsigned operator++(int) {
70 unsigned OldValue = Value;
80 unsigned operator--(int) {
82 unsigned OldValue = Value;
87 const Statistic &operator+=(const unsigned &V) {
93 const Statistic &operator-=(const unsigned &V) {
99 const Statistic &operator*=(const unsigned &V) {
104 const Statistic &operator/=(const unsigned &V)
    [all...]
  /external/llvm/lib/CodeGen/
RegisterClassInfo.h 29 unsigned Tag;
30 unsigned NumRegs;
32 OwningArrayPtr<unsigned> Order;
35 operator ArrayRef<unsigned>() const {
45 unsigned Tag;
80 unsigned getNumAllocatableRegs(const TargetRegisterClass *RC) const {
87 ArrayRef<unsigned> getOrder(const TargetRegisterClass *RC) const {
103 unsigned getLastCalleeSavedAlias(unsigned PhysReg) const {
105 if (unsigned N = CSRNum[PhysReg]
    [all...]
  /libcore/luni/src/main/java/java/util/zip/
GZIPOutputStream.java 109 // Write out the long value as an unsigned int
110 int unsigned = (int) i; local
111 out.write(unsigned & 0xFF);
112 out.write((unsigned >> 8) & 0xFF);
113 out.write((unsigned >> 16) & 0xFF);
114 out.write((unsigned >> 24) & 0xFF);
  /external/clang/include/clang/Analysis/Support/
BlkExprDeclBitVector.h 33 unsigned I;
35 explicit Idx(unsigned i) : I(i) {}
41 operator unsigned() const {
53 typedef llvm::DenseMap<const NamedDecl*, unsigned > DMapTy;
58 unsigned NDecls;
72 unsigned getNumDecls() const { return NDecls; }
111 llvm::BitVector::reference getBit(unsigned i) {
115 bool getBit(unsigned i) const {
128 llvm::BitVector::reference getDeclBit(unsigned i) { return DeclBV[i]; }
129 const llvm::BitVector::reference getDeclBit(unsigned i) const
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/opentype/
OpenTypeUtilities.cpp 35 operator unsigned short() const { return (v & 0x00ff) << 8 | v >> 8; }
36 BigEndianUShort(unsigned short u) : v((u & 0x00ff) << 8 | u >> 8) { }
37 unsigned short v;
41 operator unsigned() const { return (v & 0xff) << 24 | (v & 0xff00) << 8 | (v & 0xff0000) >> 8 | v >> 24; }
42 BigEndianULong(unsigned u) : v((u & 0xff) << 24 | (u & 0xff00) << 8 | (u & 0xff0000) >> 8 | u >> 24) { }
43 unsigned v;
49 unsigned eotSize;
50 unsigned fontDataSize;
51 unsigned version;
52 unsigned flags
    [all...]
  /external/clang/lib/Parse/
ParseTemplate.cpp 27 Parser::ParseDeclarationStartingWithTemplate(unsigned Context,
45 unsigned &Depth;
46 unsigned AddedLevels;
49 explicit TemplateParameterDepthCounter(unsigned &Depth)
61 operator unsigned() const { return Depth; }
81 Parser::ParseTemplateDeclarationOrSpecialization(unsigned Context,
193 unsigned Context,
300 bool Parser::ParseTemplateParameters(unsigned Depth,
338 Parser::ParseTemplateParameterList(unsigned Depth,
446 Decl *Parser::ParseTemplateParameter(unsigned Depth, unsigned Position)
    [all...]
  /external/clang/test/Preprocessor/
cxx_oper_keyword_ms_compat.cpp 86 #define unsigned macro
171 unsigned
  /cts/tests/tests/media/src/android/media/cts/
AudioTrackTest.java 1264 int unsigned = (int)(Math.sin(j * rad) * Byte.MAX_VALUE) + Byte.MAX_VALUE & 0xFF; local
    [all...]
  /external/clang/include/clang/Analysis/
CFG.h 69 : Data1(const_cast<void*>(Ptr1), ((unsigned) kind) & 0x3),
70 Data2(const_cast<void*>(Ptr2), (((unsigned) kind) >> 2) & 0x3) {}
76 unsigned x = Data2.getInt();
328 unsigned BlockID;
345 unsigned HasNoReturnElement : 1;
351 explicit CFGBlock(unsigned blockid, BumpVectorContext &C, CFG *parent)
376 unsigned size() const { return Elements.size(); }
412 unsigned succ_size() const { return Succs.size(); }
415 unsigned pred_size() const { return Preds.size(); }
425 unsigned IgnoreDefaultsWithCoveredEnums : 1
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.engine_2.0.0.v20100606.jar 
com.ibm.icu_4.2.1.v20100412.jar 

Completed in 186 milliseconds