Searched defs:size (Results 1 - 25 of 613) sorted by relevance

1234567891011>>

/frameworks/av/libvideoeditor/osal/src/
H A DM4PSW_MemoryInterface.c32 * @fn M4OSA_MemAddr32 M4OSA_32bitAlignedMalloc(M4OSA_UInt32 size,
37 * @param size (IN): size of allocated block in bytes
44 M4OSA_MemAddr32 M4OSA_32bitAlignedMalloc(M4OSA_UInt32 size, argument
51 * If size is 0, malloc on WIN OS allocates a zero-length item in
55 if (size == 0)
60 if (size%4 != 0)
62 size = size + 4 - (size
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm/
H A Dh264bsdClearMbLayer.s26 size RN 1 label
53 SUBS size, size, #64
57 SUBS size, size, #64
/frameworks/base/core/java/android/database/
H A DCharArrayBuffer.java23 public CharArrayBuffer(int size) { argument
24 data = new char[size];
H A DCursorIndexOutOfBoundsException.java24 public CursorIndexOutOfBoundsException(int index, int size) { argument
25 super("Index " + index + " requested, with a size of " + size);
/frameworks/base/core/java/android/hardware/
H A DTriggerEvent.java59 TriggerEvent(int size) { argument
60 values = new float[size];
/frameworks/compile/mclinker/include/mcld/Fragment/
H A DNullFragment.h30 /// size -
31 size_t size() const { return 0x0; } function in class:mcld::NullFragment
/frameworks/compile/mclinker/lib/Fragment/
H A DRegionFragment.cpp25 size_t RegionFragment::size() const function in class:RegionFragment
27 return m_Region.size();
H A DAlignFragment.cpp29 size_t AlignFragment::size() const function in class:AlignFragment
31 assert(hasOffset() && "AlignFragment::size() should not be called before layout.");
32 uint64_t size = llvm::OffsetToAlignment(getOffset(), m_Alignment); local
33 if (size > m_MaxBytesToEmit)
36 return size;
/frameworks/rs/driver/linkloader/include/
H A DELFSectionRelTable.h45 size_t size() const { function in class:ELFSectionRelTable
46 return table.size();
H A DELFSectionBits.h56 size_t size() const { function in class:ELFSectionBits
57 return chunk.size();
H A DELFSectionSymTab.h48 size_t size() const { function in class:ELFSectionSymTab
49 return table.size();
71 void getFuncNameList(size_t size, char const **list) const;
H A DMemChunk.h33 bool allocate(size_t size);
55 size_t size() const { function in class:MemChunk
/frameworks/rs/driver/linkloader/utils/
H A Dhelper.cpp26 size_t size, size_t begin, size_t end) {
51 if (j < size) {
25 dump_hex(unsigned char const *data, size_t size, size_t begin, size_t end) argument
/frameworks/av/media/libeffects/lvm/lib/Common/src/
H A DDelayMix_16x16.c30 LVM_INT16 size, /* Delay size */
61 if (Offset >= size)
28 DelayMix_16x16(const LVM_INT16 *src, LVM_INT16 *delay, LVM_INT16 size, LVM_INT16 *dst, LVM_INT16 *pOffset, LVM_INT16 n) argument
H A DDelayWrite_32.c30 LVM_UINT16 size, /* Delay size */
44 if (Offset >= size)
28 DelayWrite_32(const LVM_INT32 *src, LVM_INT32 *delay, LVM_UINT16 size, LVM_UINT16 *pOffset, LVM_INT16 n) argument
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm_gcc/
H A Dh264bsdClearMbLayer.S26 #define size r1 define
53 SUBS size, size, #64
57 SUBS size, size, #64
/frameworks/base/core/jni/android/graphics/
H A DUtils.cpp31 size_t AssetStreamAdaptor::read(void* buffer, size_t size) { argument
35 if (0 == size) { // caller is asking us for our total length
46 off64_t newOffset = fAsset->seek(size, SEEK_CUR);
48 SkDebugf("---- fAsset->seek(%d) failed\n", size);
53 amount = fAsset->read(buffer, size);
55 SkDebugf("---- fAsset->read(%d) returned %d\n", size, amount);
/frameworks/base/media/java/android/media/
H A DDataSource.java32 * @param size how many bytes to read
35 public int readAt(long offset, byte[] buffer, int size); argument
38 * Gets the size of the data source.
40 * @return size of data source, or -1 if the length is unknown
/frameworks/compile/mclinker/include/mcld/Support/
H A DLEB128.h40 size_t size(IntType pValue) { function in namespace:mcld::leb128
41 size_t size = 1; local
44 ++size;
46 return size;
/frameworks/compile/mclinker/unittests/
H A DDirIteratorTest.cpp55 size_t size = 0; local
58 size = entry.path()->native().size();
/frameworks/native/include/utils/
H A DCallStack.h64 size_t size() const { return mCount; } function in class:android::CallStack
H A DStringArray.h59 inline int size(void) const { return mCurrent; } function in class:android::StringArray
/frameworks/native/libs/diskusage/
H A Ddirsize.c27 // count actual blocks used instead of nominal file size
28 int64_t size = s->st_blocks * 512; local
31 /* round up to filesystem block size */
32 size = (size + blksize - 1) & (~(blksize - 1));
35 return size;
40 int64_t size = 0; local
54 size += stat_size(&s);
69 size += calculate_dir_size(subfd);
74 return size;
[all...]
/frameworks/native/libs/utils/
H A DJenkinsHash.cpp18 * optimized for code size and portability, rather than raw speed. But speed
33 uint32_t JenkinsHashMixBytes(uint32_t hash, const uint8_t* bytes, size_t size) { argument
34 hash = JenkinsHashMix(hash, (uint32_t)size);
36 for (i = 0; i < (size & -4); i += 4) {
40 if (size & 3) {
42 data |= ((size & 3) > 1) ? (bytes[i+1] << 8) : 0;
43 data |= ((size & 3) > 2) ? (bytes[i+2] << 16) : 0;
49 uint32_t JenkinsHashMixShorts(uint32_t hash, const uint16_t* shorts, size_t size) { argument
50 hash = JenkinsHashMix(hash, (uint32_t)size);
52 for (i = 0; i < (size
[all...]
/frameworks/opt/emoji/
H A DEmojiFactory.h32 // Returns binary image data corresponding to "pua". The size of binary is
33 // stored to "size". Returns NULL if there's no mapping from the "pua" to a
38 virtual const char *GetImageBinaryFromAndroidPua(int pua, int *size) = 0;
43 int *size) {
45 GetAndroidPuaFromVendorSpecificSjis(sjis), size);
51 int *size) {
53 GetAndroidPuaFromVendorSpecificPua(vsp), size);
42 GetImageBinaryFromVendorSpecificSjis(unsigned short sjis, int *size) argument
50 GetImageBinaryFromVendorSpecificPua(int vsp, int *size) argument

Completed in 4529 milliseconds

1234567891011>>