HomeSort by relevance Sort by last modified time
    Searched full:getuint32 (Results 1 - 25 of 41) sorted by null

1 2

  /frameworks/av/media/mtp/
MtpObjectInfo.cpp 62 mStorageID = packet.getUInt32();
65 mCompressedSize = packet.getUInt32();
67 mThumbCompressedSize = packet.getUInt32();
68 mThumbPixWidth = packet.getUInt32();
69 mThumbPixHeight = packet.getUInt32();
70 mImagePixWidth = packet.getUInt32();
71 mImagePixHeight = packet.getUInt32();
72 mImagePixDepth = packet.getUInt32();
73 mParent = packet.getUInt32();
75 mAssociationDesc = packet.getUInt32();
    [all...]
MtpDataPacket.cpp 61 uint32_t MtpDataPacket::getUInt32() {
80 value[0] = getUInt32();
81 value[1] = getUInt32();
82 value[2] = getUInt32();
83 value[3] = getUInt32();
93 int count = getUInt32();
101 int count = getUInt32();
109 int count = getUInt32();
117 int count = getUInt32();
125 int count = getUInt32();
    [all...]
MtpDataPacket.h 49 uint32_t getUInt32();
50 inline int32_t getInt32() { return (int32_t)getUInt32(); }
118 inline uint32_t getContainerLength() const { return MtpPacket::getUInt32(MTP_CONTAINER_LENGTH_OFFSET); }
MtpPacket.cpp 98 uint32_t MtpPacket::getUInt32(int offset) const {
128 return getUInt32(MTP_CONTAINER_TRANSACTION_ID_OFFSET);
140 return getUInt32(MTP_CONTAINER_PARAMETER_OFFSET + (index - 1) * sizeof(uint32_t));
MtpPacket.h 65 uint32_t getUInt32(int offset) const;
MtpStorageInfo.cpp 55 mFreeSpaceObjects = packet.getUInt32();
MtpDeviceInfo.cpp 67 mVendorExtensionID = packet.getUInt32();
MtpServer.cpp 840 mData.getUInt32(); // storage ID
843 mSendObjectFileSize = mData.getUInt32();
845 mData.getUInt32(); // thumb compressed size
846 mData.getUInt32(); // thumb pix width
847 mData.getUInt32(); // thumb pix height
848 mData.getUInt32(); // image pix width
849 mData.getUInt32(); // image pix height
850 mData.getUInt32(); // image bit depth
851 mData.getUInt32(); // parent
853 uint32_t associationDesc = mData.getUInt32(); // association des
    [all...]
MtpProperty.cpp 150 mGroupCode = packet.getUInt32();
436 value.u.u32 = packet.getUInt32();
519 length = packet.getUInt32();
  /external/webkit/Source/WebCore/html/canvas/
DataView.h 52 uint32_t getUint32(unsigned byteOffset, ExceptionCode& ec) { return getUint32(byteOffset, false, ec); }
53 uint32_t getUint32(unsigned byteOffset, bool littleEndian, ExceptionCode&);
DataView.idl 51 [StrictTypeChecking, RequiresAllArguments=Raise] unsigned long getUint32(in unsigned long byteOffset, in [Optional] boolean littleEndian)
DataView.cpp 175 uint32_t DataView::getUint32(unsigned byteOffset, bool littleEndian, ExceptionCode& ec)
  /external/clang/test/FixIt/
format-darwin.m 29 UInt32 getUInt32();
35 printf("%s", getUInt32()); // expected-warning{{values of type 'UInt32' should not be used as format arguments; add an explicit cast to 'unsigned int' instead}}
95 printf("%lu", getUInt32()); // expected-warning{{values of type 'UInt32' should not be used as format arguments; add an explicit cast to 'unsigned int' instead}}
135 printf("%u", getUInt32()); // no-warning
144 printf("%u", getUInt32()); // expected-warning{{values of type 'UInt32' should not be used as format arguments; add an explicit cast to 'unsigned int' instead}}
164 printf("%lu", getUInt32()); // no-warning
  /frameworks/av/include/media/stagefright/
DataSource.h 58 bool getUInt32(off64_t offset, uint32_t *x);
  /frameworks/av/media/libstagefright/
MPEG4Extractor.cpp     [all...]
DataSource.cpp 74 bool DataSource::getUInt32(off64_t offset, uint32_t *x) {
  /external/smack/src/org/xbill/DNS/
SOARecord.java 68 serial = st.getUInt32();
  /external/webkit/Source/JavaScriptCore/runtime/
JSZombie.h 51 virtual bool getUInt32(uint32_t&) const { ASSERT_NOT_REACHED(); return false; }
JSCell.h 106 virtual bool getUInt32(uint32_t&) const;
237 ALWAYS_INLINE bool JSValue::getUInt32(uint32_t& v) const
JSCell.cpp 79 bool JSCell::getUInt32(uint32_t&) const
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
LittleEndian.java 62 public static long getUInt32(byte[] src, int offset) {
FatDirectoryEntry.java 298 return LittleEndian.getUInt32(data, OFFSET_FILE_SIZE);
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
stun.h 131 const StunUInt32Attribute* GetUInt32(StunAttributeType type) const;
relayserver.cc 378 request.GetUInt32(STUN_ATTR_LIFETIME);
509 request.GetUInt32(STUN_ATTR_OPTIONS);
stun.cc 91 StunMessage::GetUInt32(StunAttributeType type) const {

Completed in 677 milliseconds

1 2