Searched refs:size (Results 376 - 400 of 2075) sorted by relevance

<<11121314151617181920>>

/frameworks/compile/slang/BitWriter_2_9/
H A DValueEnumerator.cpp52 unsigned FirstConstant = Values.size();
98 for (unsigned i = 0, e = MDs.size(); i != e; ++i)
111 OptimizeConstants(FirstConstant, Values.size());
147 OS << "Size: " << Map.size() << "\n";
267 MDValueID = MDValues.size();
291 MDValueID = MDValues.size();
344 ValueMap[V] = Values.size();
354 ValueMap[V] = Values.size();
361 ValueID = Values.size();
399 *TypeID = Types.size();
[all...]
/frameworks/compile/slang/BitWriter_2_9_func/
H A DValueEnumerator.cpp52 unsigned FirstConstant = Values.size();
98 for (unsigned i = 0, e = MDs.size(); i != e; ++i)
111 OptimizeConstants(FirstConstant, Values.size());
147 OS << "Size: " << Map.size() << "\n";
267 MDValueID = MDValues.size();
291 MDValueID = MDValues.size();
344 ValueMap[V] = Values.size();
354 ValueMap[V] = Values.size();
361 ValueID = Values.size();
399 *TypeID = Types.size();
[all...]
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp67 // size measured in sizeof(uint32_t)
102 const uint32_t size = dtohl(chunk->size); local
105 if (headerSize <= size) {
106 if (((headerSize|size)&0x3) == 0) {
107 if ((ssize_t)size <= (dataEnd-((const uint8_t*)chunk))) {
110 ALOGW("%s data size %p extends beyond resource end %p.",
111 name, (void*)size,
115 ALOGW("%s size 0x%x or headerSize 0x%x is not on an integer boundary.",
116 name, (int)size, (in
243 const size_t size = (sizeBytes - ResTable::IDMAP_HEADER_SIZE_BYTES) / sizeof(uint32_t); local
315 ResStringPool(const void* data, size_t size, bool copyData) argument
326 setTo(const void* data, size_t size, bool copyData) argument
745 size_t ResStringPool::size() const function in class:android::ResStringPool
1193 ResXMLTree(const void* data, size_t size, bool copyData) argument
1207 setTo(const void* data, size_t size, bool copyData) argument
1255 const size_t size = dtohl(chunk->size); local
1331 const uint32_t size = dtohl(node->header.size); local
1397 const size_t size = dtohl(o.size); local
2325 size_t size; member in struct:android::ResTable::Header
2727 ResTable(const void* data, size_t size, void* cookie, bool copyData) argument
2748 add(const void* data, size_t size, void* cookie, bool copyData, const void* idmap) argument
2761 size_t size = (size_t)asset->getLength(); local
2789 add(const void* data, size_t size, void* cookie, Asset* asset, bool copyData, const Asset* idmap) argument
3506 const size_t size = dtohs(map->value.size); local
5611 const size_t size = dtohs(mapPtr->value.size); local
[all...]
/frameworks/compile/slang/BitWriter_3_2/
H A DValueEnumerator.cpp52 unsigned FirstConstant = Values.size();
98 for (unsigned i = 0, e = MDs.size(); i != e; ++i)
111 OptimizeConstants(FirstConstant, Values.size());
147 OS << "Size: " << Map.size() << "\n";
267 MDValueID = MDValues.size();
291 MDValueID = MDValues.size();
344 ValueMap[V] = Values.size();
351 ValueID = Values.size();
389 *TypeID = Types.size();
431 Entry = Attribute.size();
[all...]
/frameworks/base/core/java/android/webkit/
H A DWebSettingsClassic.java957 public synchronized void setMinimumFontSize(int size) { argument
958 size = pin(size);
959 if (mMinimumFontSize != size) {
960 mMinimumFontSize = size;
977 public synchronized void setMinimumLogicalFontSize(int size) { argument
978 size = pin(size);
979 if (mMinimumLogicalFontSize != size) {
980 mMinimumLogicalFontSize = size;
997 setDefaultFontSize(int size) argument
1017 setDefaultFixedFontSize(int size) argument
1037 setPageCacheCapacity(int size) argument
1587 setMaximumDecodedImageSize(long size) argument
1723 pin(int size) argument
[all...]
/frameworks/base/opengl/java/com/google/android/gles_jni/
H A DGLImpl.java196 // C function void glColorPointer ( GLint size, GLenum type, GLsizei stride, const GLvoid *pointer )
199 int size,
207 int size,
213 size,
219 if ((size == 4) &&
828 // C function void glPointSize ( GLfloat size )
831 float size
834 // C function void glPointSizex ( GLfixed size )
837 int size
961 // C function void glTexCoordPointer ( GLint size, GLenu
198 glColorPointerBounds( int size, int type, int stride, java.nio.Buffer pointer, int remaining ) argument
206 glColorPointer( int size, int type, int stride, java.nio.Buffer pointer ) argument
963 glTexCoordPointerBounds( int size, int type, int stride, java.nio.Buffer pointer, int remaining ) argument
971 glTexCoordPointer( int size, int type, int stride, java.nio.Buffer pointer ) argument
1108 glVertexPointerBounds( int size, int type, int stride, java.nio.Buffer pointer, int remaining ) argument
1116 glVertexPointer( int size, int type, int stride, java.nio.Buffer pointer ) argument
1175 glBufferData( int target, int size, java.nio.Buffer data, int usage ) argument
1184 glBufferSubData( int target, int offset, int size, java.nio.Buffer data ) argument
1232 glColorPointer( int size, int type, int stride, int offset ) argument
1622 glTexCoordPointer( int size, int type, int stride, int offset ) argument
1715 glVertexPointer( int size, int type, int stride, int offset ) argument
1827 glMatrixIndexPointerOESBounds( int size, int type, int stride, java.nio.Buffer pointer, int remaining ) argument
1835 glMatrixIndexPointerOES( int size, int type, int stride, java.nio.Buffer pointer ) argument
1862 glMatrixIndexPointerOES( int size, int type, int stride, int offset ) argument
1871 glWeightPointerOESBounds( int size, int type, int stride, java.nio.Buffer pointer, int remaining ) argument
1879 glWeightPointerOES( int size, int type, int stride, java.nio.Buffer pointer ) argument
1896 glWeightPointerOES( int size, int type, int stride, int offset ) argument
[all...]
/frameworks/av/media/libnbaio/
H A DNBLog.cpp50 NBLog::Timeline::Timeline(size_t size, void *shared)
51 : mSize(roundup(size)), mOwn(shared == NULL),
52 mShared((Shared *) (mOwn ? new char[sharedSize(size)] : shared))
67 size_t NBLog::Timeline::sharedSize(size_t size) argument
69 return sizeof(Shared) + roundup(size);
79 NBLog::Writer::Writer(size_t size, void *shared) argument
80 : mSize(roundup(size)), mShared((Shared *) shared), mRear(0), mEnabled(mShared != NULL)
84 NBLog::Writer::Writer(size_t size, const sp<IMemory>& iMemory) argument
85 : mSize(roundup(size)), mShared(iMemory != 0 ? (Shared *) iMemory->pointer() : NULL),
187 // The Entry could have a method copyTo(ptr, offset, size) t
219 LockedWriter(size_t size, void *shared) argument
274 Reader(size_t size, const void *shared) argument
279 Reader(size_t size, const sp<IMemory>& iMemory) argument
[all...]
/frameworks/av/media/libstagefright/
H A DOMXClient.cpp52 void *params, size_t size);
56 const void *params, size_t size);
60 void *params, size_t size);
64 const void *params, size_t size);
93 node_id node, OMX_U32 port_index, size_t size,
228 void *params, size_t size) {
229 return getOMX(node)->getParameter(node, index, params, size);
234 const void *params, size_t size) {
235 return getOMX(node)->setParameter(node, index, params, size);
240 void *params, size_t size) {
226 getParameter( node_id node, OMX_INDEXTYPE index, void *params, size_t size) argument
232 setParameter( node_id node, OMX_INDEXTYPE index, const void *params, size_t size) argument
238 getConfig( node_id node, OMX_INDEXTYPE index, void *params, size_t size) argument
244 setConfig( node_id node, OMX_INDEXTYPE index, const void *params, size_t size) argument
295 allocateBuffer( node_id node, OMX_U32 port_index, size_t size, buffer_id *buffer, void **buffer_data) argument
[all...]
/frameworks/av/media/libstagefright/rtsp/
H A DAMPEG4AudioAssembler.cpp64 if ((s.size() % 2) != 0) {
68 size_t outLen = s.size() / 2;
73 for (size_t i = 0; i < s.size(); ++i) {
365 sp<ABuffer> out = new ABuffer(buffer->size());
382 CHECK_LT(offset, buffer->size());
408 CHECK_LE(offset + payloadLength, buffer->size());
410 memcpy(out->data() + out->size(), &ptr[offset], payloadLength);
411 out->setRange(0, out->size() + payloadLength);
419 CHECK_LE(offset + (mOtherDataLenBits / 8), buffer->size());
424 if (offset < buffer->size()) {
[all...]
H A DASessionDescription.h35 bool setTo(const void *data, size_t size);
76 bool parse(const void *data, size_t size);
/frameworks/compile/mclinker/lib/Target/
H A DELFDynamic.cpp70 size_t ELFDynamic::size() const function in class:ELFDynamic
72 return (m_NeedList.size() + m_EntryList.size());
77 return size()*entrySize();
82 return m_pEntryFactory->size();
93 assert(m_Idx < m_EntryList.size());
219 applyOne(llvm::ELF::DT_INIT_ARRAYSZ, pFormat.getInitArray().size());
227 applyOne(llvm::ELF::DT_FINI_ARRAYSZ, pFormat.getFiniArray().size());
244 applyOne(llvm::ELF::DT_STRSZ, pFormat.getDynStrTab().size()); // DT_STRSZ
252 applyOne(llvm::ELF::DT_PLTRELSZ, pFormat.getRelPlt().size()); // DT_PLTRELS
[all...]
/frameworks/native/libs/utils/
H A DString16.cpp83 //printHexData(1, str, buf->size(), 16, 1);
142 : mString(allocFromUTF8(o.string(), o.size()))
170 const size_t N = other.size();
210 const size_t myLen = size();
211 const size_t otherLen = other.size();
232 const size_t myLen = size();
259 const size_t myLen = size();
286 printf("Result (%d chrs): %s\n", size(), String8(*this).string());
297 const char16_t* e = p + size();
311 const char16_t* e = p + size();
[all...]
/frameworks/av/media/libmedia/
H A DVisualizer.cpp125 status_t Visualizer::setCaptureSize(uint32_t size) argument
127 if (size > VISUALIZER_CAPTURE_SIZE_MAX ||
128 size < VISUALIZER_CAPTURE_SIZE_MIN ||
129 popcount(size) != 1) {
144 *((int32_t *)p->data + 1)= size;
147 ALOGV("setCaptureSize size %d status %d p->status %d", size, status, p->status);
152 mCaptureSize = size;
312 uint32_t size = 0; local
314 size
[all...]
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosrc/
H A DCameraSource.java57 /** Frame width to request from camera. Actual size may not match requested. */
61 /** Frame height to request from camera. Actual size may not match requested. */
289 for (Camera.Size size : previewSizes) {
291 // the requested size, but as close as possible. The below isn't a
292 // stable selection (reording the size list can give different
294 if ( size.width <= width &&
295 size.height <= height &&
296 size.width >= closestWidth &&
297 size.height >= closestHeight) {
298 closestWidth = size
[all...]
/frameworks/ex/common/java/com/android/common/widget/
H A DGroupingListAdapter.java201 protected void addGroup(int cursorPosition, int size, boolean expanded) { argument
210 long metadata = ((long)size << 32) | cursorPosition;
246 int size = (int)((metadata & GROUP_SIZE_MASK) >> 32);
251 count += size + 1;
256 cursorPosition = offset + size;
298 if (index >= mPositionCache.size()) {
347 int size = (int) ((group & GROUP_SIZE_MASK) >> 32);
354 metadata.childCount = size;
361 if (position < listPosition + size + 1) {
368 listPosition += size
[all...]
/frameworks/av/media/libstagefright/mpeg2ts/
H A DMPEG2PSExtractor.cpp68 const uint8_t *data, size_t size);
109 for (size_t i = mTracks.size(); i-- > 0;) {
122 return mTracks.size();
126 if (index >= mTracks.size()) {
134 if (index >= mTracks.size()) {
162 memmove(mBuffer->base(), mBuffer->data(), mBuffer->size());
163 mBuffer->setRange(0, mBuffer->size());
165 if (mBuffer->size() + kChunkSize > mBuffer->capacity()) {
168 memcpy(newBuffer->data(), mBuffer->data(), mBuffer->size());
169 newBuffer->setRange(0, mBuffer->size());
626 appendPESData( unsigned PTS_DTS_flags, uint64_t PTS, uint64_t DTS, const uint8_t *data, size_t size) argument
[all...]
H A DESQueue.h47 status_t appendData(const void *data, size_t size, int64_t timeUs);
75 // consume a logical (compressed) access unit of size "size",
77 int64_t fetchTimestamp(size_t size);
/frameworks/base/core/java/android/widget/
H A DGridLayout.java673 int size = minorRange.size();
675 return size;
678 return min(size, count - min);
697 final int majorSpan = majorRange.size();
790 if (span.size() > count) {
1110 int gravityOffsetX = hAlign.getGravityOffset(c, cellWidth - boundsX.size(true));
1111 int gravityOffsetY = vAlign.getGravityOffset(c, cellHeight - boundsY.size(true));
1211 result = max(result, span.size());
1301 int size
1330 include(List<Arc> arcs, Interval key, MutableInt size, boolean ignoreIfAlreadyPresent) argument
1354 include(List<Arc> arcs, Interval key, MutableInt size) argument
1666 private int size(int[] locations) { method in class:GridLayout.Axis
1704 layout(int size) argument
2201 protected int size(boolean min) { method in class:GridLayout.Bounds
2210 getOffset(GridLayout gl, View c, Alignment a, int size, boolean horizontal) argument
2270 int size() { method in class:GridLayout.Interval
2358 Spec(boolean startDefined, int start, int size, Alignment alignment) argument
2427 spec(int start, int size, Alignment alignment) argument
2462 spec(int start, int size) argument
[all...]
/frameworks/av/include/media/
H A DAudioParameter.h65 size_t size() { return mParameters.size(); } function in class:android::AudioParameter
H A DIHDCP.h49 // Encrypt data according to the HDCP spec. "size" bytes of data are
50 // available at "inData" (virtual address), "size" may not be a multiple
54 // until outData contains size bytes of encrypted data.
59 const void *inData, size_t size, uint32_t streamCTR,
64 // "size" bytes of encrypted data are available at "inData"
65 // (virtual address), "size" may not be a multiple of 128 bits (16 bytes).
69 // until outData contains size bytes of decrypted data.
72 const void *inData, size_t size,
/frameworks/av/include/media/stagefright/foundation/
H A DABuffer.h40 size_t size() const { return mRangeLength; } function in struct:android::ABuffer
43 void setRange(size_t offset, size_t size);
/frameworks/av/libvideoeditor/osal/inc/
H A DLVOSA_FileReader_optim.h41 M4OSA_FilePosition size,
73 M4OSA_UInt32* size );
/frameworks/av/media/libstagefright/foundation/
H A DABitReader.cpp23 ABitReader::ABitReader(const uint8_t *data, size_t size) argument
25 mSize(size),
/frameworks/av/media/libstagefright/wifi-display/
H A DANetworkSession.cpp86 const void *data, ssize_t size, bool timeValid, int64_t timeUs);
332 while (mInBuffer.size() >= 2) {
335 if (mInBuffer.size() < packetSize + 2) {
357 if (mInBuffer.size() > 0 && mInBuffer.c_str()[0] == '$') {
358 if (mInBuffer.size() < 4) {
364 if (mInBuffer.size() < 4 + length) {
388 mInBuffer.c_str(), mInBuffer.size(), err != OK, &length);
468 n = send(mSocket, datagram->data(), datagram->size(), 0);
488 ALOGI("%d datagrams remain queued.", mOutFragments.size());
537 n = send(mSocket, frag.mBuffer->data(), frag.mBuffer->size(),
597 sendRequest( const void *data, ssize_t size, bool timeValid, int64_t timeUs) argument
857 int size = 256 * 1024; local
1063 sendRequest( int32_t sessionID, const void *data, ssize_t size, bool timeValid, int64_t timeUs) argument
[all...]
/frameworks/base/core/java/android/accounts/
H A DAccount.java76 public Account[] newArray(int size) {
77 return new Account[size];

Completed in 3078 milliseconds

<<11121314151617181920>>