Searched defs:size (Results 101 - 125 of 1111) sorted by relevance

1234567891011>>

/frameworks/compile/mclinker/include/mcld/Fragment/
H A DFillFragment.h37 size_t size() const { return m_Size; } function in class:mcld::FillFragment
43 /// m_ValueSize - The size (in bytes) of \arg Value to use when filling, or 0
/frameworks/compile/mclinker/include/mcld/LD/
H A DELFSegmentFactory.h41 size_t size() const { return m_Segments.size(); } function in class:mcld::ELFSegmentFactory
/frameworks/compile/mclinker/include/mcld/Script/
H A DRpnExpr.h45 size_t size() const { return m_TokenQueue.size(); } function in class:mcld::RpnExpr
/frameworks/compile/mclinker/lib/LD/
H A DLDContext.cpp23 pSection.setIndex(m_SectionTable.size());
29 if (pIdx >= m_SectionTable.size())
35 if (pIdx >= m_SectionTable.size())
60 size_t size = m_SectionTable.size(); local
61 for (; result != size; ++result)
68 if (pIdx >= m_SymTab.size())
74 if (pIdx >= m_SymTab.size())
81 size_t size = m_SymTab.size(); local
90 size_t size = m_SymTab.size(); local
[all...]
/frameworks/compile/mclinker/lib/Script/
H A DScriptReader.cpp46 size_t size = input.memArea()->size(); local
47 llvm::StringRef region = input.memArea()->request(input.fileOffset(), size);
/frameworks/compile/mclinker/lib/Support/
H A DLEB128.cpp18 size_t size = 0; local
25 size++;
28 return size;
68 size_t size = 0; local
82 size++;
85 return size;
181 * version like decode() to save the code size.
H A DMemoryArea.cpp45 size_t MemoryArea::size() const { function in class:mcld::MemoryArea
/frameworks/compile/mclinker/lib/Target/
H A DELFAttributeData.cpp21 size_t size = 0; local
24 leb128::decode<uint64_t>(pBuf, size));
26 if (size > pBufSize)
29 pBuf += size;
30 pBufSize -= size;
40 size_t size = 0; local
41 uint64_t int_value = leb128::decode<uint64_t>(pBuf, size);
44 if (size > pBufSize)
47 pBuf += size;
48 pBufSize -= size;
55 size_t size = pValue.getStringValue().length() + 1 /* '\\0' */; local
[all...]
/frameworks/compile/mclinker/unittests/
H A DStringTableTest.cpp41 int size = 127 - 32; local
48 ASSERT_EQ(m_pTestee->size(), size);
71 ASSERT_EQ(m_pTestee->size(), 1);
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DStack.java35 public Stack(int size) { argument
36 super(size);
52 if (size() > 0) {
53 return remove(size() - 1);
64 if (size() > 0) {
65 return get(size() - 1);
/frameworks/minikin/include/minikin/
H A DU16StringPiece.h31 : mData(v.data()), mLength(static_cast<uint32_t>(v.size())) {}
39 inline uint32_t size() const { return mLength; } function in class:minikin::U16StringPiece
/frameworks/minikin/tests/unittest/
H A DMeasurementTests.cpp29 size_t size; local
30 ParseUnicode(buf, BUF_SIZE, src, &size, &offset);
31 return getRunAdvance(advances, buf, 0, size, offset);
/frameworks/multidex/library/src/androidx/multidex/
H A DZipUtil.java35 long size; field in class:ZipUtil.CentralDirectory
100 dir.size = Integer.reverseBytes(raf.readInt()) & 0xFFFFFFFFL;
109 long stillToRead = dir.size;
/frameworks/native/cmds/dumpstate/
H A DDumpstateSectionReporter.h48 void setSize(int size) { argument
49 size_ = size;
/frameworks/native/cmds/installd/
H A DCacheItem.h51 int64_t size; member in class:android::installd::CacheItem
/frameworks/native/libs/binder/
H A DTextOutput.cpp51 HexDump::HexDump(const void *buf, size_t size, size_t bytesPerLine) argument
53 , mSize(size)
66 printHexData(0, val.buffer(), val.size(), val.bytesPerLine(),
/frameworks/native/libs/ui/
H A DFrameStats.cpp28 size_t size = timestampSize; local
29 size += 3 * desiredPresentTimesNano.size() * timestampSize;
31 return size;
34 status_t FrameStats::flatten(void* buffer, size_t size) const {
35 if (size < getFlattenedSize()) {
41 size_t frameCount = desiredPresentTimesNano.size();
57 status_t FrameStats::unflatten(void const* buffer, size_t size) { argument
60 if (size < timestampSize) {
65 size_t frameCount = (size
[all...]
H A DHdrCapabilities.cpp35 mSupportedHdrTypes.size() * sizeof(ui::Hdr);
38 status_t HdrCapabilities::flatten(void* buffer, size_t size) const {
40 if (size < getFlattenedSize()) {
48 buf[3] = static_cast<int32_t>(mSupportedHdrTypes.size());
49 for (size_t i = 0, c = mSupportedHdrTypes.size(); i < c; ++i) {
55 status_t HdrCapabilities::unflatten(void const* buffer, size_t size) { argument
62 if (size < minSize) {
70 if (size < minSize + itemCount * sizeof(int32_t)) {
/frameworks/native/libs/vr/libdvrcommon/include/private/dvr/
H A Drange.h19 Eigen::Vector<T, d> size) {
20 return Range<T, d>(p1, p1 + size);
18 FromSize(Eigen::Vector<T, d> p1, Eigen::Vector<T, d> size) argument
/frameworks/native/opengl/libagl/
H A DBufferObjectManager.h43 GLsizeiptr size; member in struct:android::gl::buffer_t
63 int allocateStore(gl::buffer_t* bo, GLsizeiptr size, GLenum usage);
/frameworks/native/opengl/tests/gralloc/
H A Dgralloc.cpp30 void* lamecpy(void* d, void const* s, size_t size) { argument
33 while (size) {
35 size--;
42 size_t size = 128*256*4; local
43 void* temp = malloc(size);
44 void* temp2 = malloc(size);
45 memset(temp, 0, size);
46 memset(temp2, 0, size);
67 memset(vaddr, 0, size);
73 memcpy(temp, temp2, size);
[all...]
/frameworks/native/opengl/tools/glgen/stubs/gles11/
H A DglGetActiveAttrib.java1 // C function void glGetActiveAttrib ( GLuint program, GLuint index, GLsizei bufsize, GLsizei *length, GLint *size, GLenum *type, char *name )
9 int[] size,
17 // C function void glGetActiveAttrib ( GLuint program, GLuint index, GLsizei bufsize, GLsizei *length, GLint *size, GLenum *type, char *name )
25 java.nio.IntBuffer size,
30 // C function void glGetActiveAttrib ( GLuint program, GLuint index, GLsizei bufsize, GLsizei *length, GLint *size, GLenum *type, char *name )
35 int[] size,
41 // C function void glGetActiveAttrib ( GLuint program, GLuint index, GLsizei bufsize, GLsizei *length, GLint *size, GLenum *type, char *name )
46 java.nio.IntBuffer size,
3 glGetActiveAttrib( int program, int index, int bufsize, int[] length, int lengthOffset, int[] size, int sizeOffset, int[] type, int typeOffset, byte[] name, int nameOffset ) argument
20 glGetActiveAttrib( int program, int index, int bufsize, java.nio.IntBuffer length, java.nio.IntBuffer size, java.nio.IntBuffer type, byte name ) argument
32 glGetActiveAttrib( int program, int index, int[] size, int sizeOffset, int[] type, int typeOffset ) argument
43 glGetActiveAttrib( int program, int index, java.nio.IntBuffer size, java.nio.IntBuffer type ) argument
H A DglGetActiveUniform.java1 // C function void glGetActiveUniform ( GLuint program, GLuint index, GLsizei bufsize, GLsizei *length, GLint *size, GLenum *type, char *name )
9 int[] size,
17 // C function void glGetActiveUniform ( GLuint program, GLuint index, GLsizei bufsize, GLsizei *length, GLint *size, GLenum *type, char *name )
25 java.nio.IntBuffer size,
29 // C function void glGetActiveUniform ( GLuint program, GLuint index, GLsizei bufsize, GLsizei *length, GLint *size, GLenum *type, char *name )
34 int[] size,
40 // C function void glGetActiveUniform ( GLuint program, GLuint index, GLsizei bufsize, GLsizei *length, GLint *size, GLenum *type, char *name )
45 java.nio.IntBuffer size,
3 glGetActiveUniform( int program, int index, int bufsize, int[] length, int lengthOffset, int[] size, int sizeOffset, int[] type, int typeOffset, byte[] name, int nameOffset ) argument
20 glGetActiveUniform( int program, int index, int bufsize, java.nio.IntBuffer length, java.nio.IntBuffer size, java.nio.IntBuffer type, byte name ) argument
31 glGetActiveUniform( int program, int index, int[] size, int sizeOffset, int[] type, int typeOffset ) argument
42 glGetActiveUniform( int program, int index, java.nio.IntBuffer size, java.nio.IntBuffer type ) argument
H A DglGetTransformFeedbackVarying.java1 // C function void glGetTransformFeedbackVarying ( GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name )
9 int[] size,
17 // C function void glGetTransformFeedbackVarying ( GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name )
27 java.nio.IntBuffer size,
32 // C function void glGetTransformFeedbackVarying ( GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name )
39 java.nio.IntBuffer size,
44 // C function void glGetTransformFeedbackVarying ( GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name )
49 int[] size,
55 // C function void glGetTransformFeedbackVarying ( GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name )
60 java.nio.IntBuffer size,
3 glGetTransformFeedbackVarying( int program, int index, int bufsize, int[] length, int lengthOffset, int[] size, int sizeOffset, int[] type, int typeOffset, byte[] name, int nameOffset ) argument
22 glGetTransformFeedbackVarying( int program, int index, int bufsize, java.nio.IntBuffer length, java.nio.IntBuffer size, java.nio.IntBuffer type, byte name ) argument
34 glGetTransformFeedbackVarying( int program, int index, int bufsize, java.nio.IntBuffer length, java.nio.IntBuffer size, java.nio.IntBuffer type, java.nio.ByteBuffer name ) argument
46 glGetTransformFeedbackVarying( int program, int index, int[] size, int sizeOffset, int[] type, int typeOffset ) argument
57 glGetTransformFeedbackVarying( int program, int index, java.nio.IntBuffer size, java.nio.IntBuffer type ) argument
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DByteBufferReader.java41 * @param size The number of bytes to read from the buffer
46 public static long readInteger(ByteBuffer payload, ByteOrder byteOrder, int size) { argument
47 if (size < MINIMUM_INTEGER_SIZE || size > MAXIMUM_INTEGER_SIZE) {
48 throw new IllegalArgumentException("Invalid size " + size);
52 byte[] octets = new byte[size];

Completed in 278 milliseconds

1234567891011>>