HomeSort by relevance Sort by last modified time
    Searched refs:sizeInBytes (Results 1 - 25 of 34) sorted by null

1 2

  /external/skia/gpu/include/
GrIndexBuffer.h 32 GrIndexBuffer(GrGpu* gpu, size_t sizeInBytes, bool dynamic)
33 : INHERITED(gpu, sizeInBytes, dynamic) {}
GrVertexBuffer.h 25 GrVertexBuffer(GrGpu* gpu, size_t sizeInBytes, bool dynamic)
26 : INHERITED(gpu, sizeInBytes, dynamic) {}
GrGeometryBuffer.h 98 GrGeometryBuffer(GrGpu* gpu, size_t sizeInBytes, bool dynamic)
100 , fSizeInBytes(sizeInBytes)
GrGLIndexBuffer.h 46 size_t sizeInBytes,
GrGLVertexBuffer.h 44 size_t sizeInBytes,
GrTexture.h 197 size_t sizeInBytes() const {
  /external/srec/portable/src/
pmemory_ext.h 36 void* PortNew(size_t sizeInBytes);
41 void PortMemSetPoolSize(size_t sizeInBytes);
pmemory_ext.c 70 #define MEM_MGR_SetPoolSize(sizeInBytes) PortMallocSetPoolSize(sizeInBytes)
73 #define MEM_MGR_Allocate(sizeInBytes) PortMalloc(sizeInBytes)
211 void PortMemSetPoolSize(size_t sizeInBytes)
213 MEM_MGR_SetPoolSize(sizeInBytes);
252 void* PortNew(size_t sizeInBytes)
264 sizeInBytes += GUARD_EXTRA; /* space for: requestedSize,guardStart,guardEnd */
267 pMemory = MEM_MGR_Allocate(sizeInBytes);
278 unsigned int * guardEndPtr = GUARD_PTR_FIELD(pMemory, GUARD_OFF_END(sizeInBytes));
    [all...]
pmemblock.c 480 void PortMemBlockSetPoolSize(size_t sizeInBytes)
  /frameworks/base/libs/rs/
rsLocklessFifo.cpp 44 bool LocklessCommandFifo::init(uint32_t sizeInBytes) {
46 mBuffer = static_cast<uint8_t *>(malloc(sizeInBytes + 4));
59 mSize = sizeInBytes;
62 mEnd = mBuffer + (sizeInBytes) - 1;
90 void * LocklessCommandFifo::reserve(uint32_t sizeInBytes) {
92 sizeInBytes += 8;
95 if (getFreeSpace() < sizeInBytes) {
96 makeSpace(sizeInBytes);
102 void LocklessCommandFifo::commit(uint32_t command, uint32_t sizeInBytes) {
108 reinterpret_cast<uint16_t *>(mPut)[1] = sizeInBytes;
    [all...]
  /external/webkit/Source/WebCore/html/canvas/
ArrayBuffer.h 47 ArrayBuffer(void* data, unsigned sizeInBytes);
ArrayBuffer.cpp 56 ArrayBuffer::ArrayBuffer(void* data, unsigned sizeInBytes)
57 : m_sizeInBytes(sizeInBytes)
  /frameworks/base/media/java/android/media/
AudioRecord.java 555 * @param sizeInBytes the number of requested bytes.
559 * The number of bytes will not exceed sizeInBytes.
561 public int read(byte[] audioData, int offsetInBytes, int sizeInBytes) {
566 if ( (audioData == null) || (offsetInBytes < 0 ) || (sizeInBytes < 0)
567 || (offsetInBytes + sizeInBytes > audioData.length)) {
571 return native_read_in_byte_array(audioData, offsetInBytes, sizeInBytes);
603 * @param sizeInBytes the number of requested bytes.
607 * The number of bytes will not exceed sizeInBytes.
609 public int read(ByteBuffer audioBuffer, int sizeInBytes) {
614 if ( (audioBuffer == null) || (sizeInBytes < 0) )
    [all...]
AudioTrack.java     [all...]
  /external/skia/gpu/src/
GrGLIndexBuffer.cpp 25 size_t sizeInBytes,
27 : INHERITED(gpu, sizeInBytes, dynamic)
GrTextureCache.cpp 100 fClientDetachedBytes += entry->texture()->sizeInBytes();
103 fEntryBytes -= entry->texture()->sizeInBytes();
122 fClientDetachedBytes -= entry->texture()->sizeInBytes();
125 fEntryBytes += entry->texture()->sizeInBytes();
181 entry, fEntryCount, texture->sizeInBytes(), fEntryBytes);
297 bytes += entry->texture()->sizeInBytes();
GrGLVertexBuffer.cpp 25 size_t sizeInBytes,
27 : INHERITED(gpu, sizeInBytes, dynamic)
  /frameworks/base/core/jni/
android_media_AudioTrack.cpp 91 bool allocSharedMem(int sizeInBytes) {
92 mMemHeap = new MemoryHeapBase(sizeInBytes, 0, "AudioTrack Heap Base");
96 mMemBase = new MemoryBase(mMemHeap, 0, sizeInBytes);
484 jint offsetInBytes, jint sizeInBytes) {
489 written = pTrack->write(data + offsetInBytes, sizeInBytes);
493 if ((size_t)sizeInBytes > pTrack->sharedBuffer()->size()) {
494 sizeInBytes = pTrack->sharedBuffer()->size();
496 memcpy(pTrack->sharedBuffer()->pointer(), data + offsetInBytes, sizeInBytes);
497 written = sizeInBytes;
503 if (((size_t)sizeInBytes)*2 > pTrack->sharedBuffer()->size())
    [all...]
android_media_AudioRecord.cpp 327 jint offsetInBytes, jint sizeInBytes) {
359 sizeInBytes > (jint)recorderBuffSize ?
360 (jint)recorderBuffSize : sizeInBytes );
379 jobject jBuffer, jint sizeInBytes) {
405 capacity < sizeInBytes ? capacity : sizeInBytes);
  /external/webkit/Source/WebKit2/Shared/
ShareableBitmap.h 122 size_t sizeInBytes() const { return numBytesForSize(m_size); }
  /external/webkit/Source/WebKit2/Shared/cg/
ShareableBitmapCG.cpp 80 RetainPtr<CGDataProvider> dataProvider(AdoptCF, CGDataProviderCreateWithData(this, data(), sizeInBytes(), releaseDataProviderData));
  /external/webkit/Source/WebKit/mac/Plugins/
WebBasePluginPackage.mm 362 NSUInteger sizeInBytes = [data length];
363 Vector<uint32_t, 128> rawData((sizeInBytes + 3) / 4);
364 memcpy(rawData.data(), [data bytes], sizeInBytes);
370 if (sizeInBytes >= sizeof(struct mach_header_64)) {
410 unsigned maxArchs = (sizeInBytes - sizeof(struct fat_header)) / sizeof(struct fat_arch);
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
ClientData.java 108 public final static String HEAP_SIZE_BYTES = "sizeInBytes"; //$NON-NLS-1$
472 * @param sizeInBytes The size of the heap, in bytes
479 long sizeInBytes, long bytesAllocated, long objectsAllocated) {
482 heapInfo.put(HEAP_SIZE_BYTES, sizeInBytes);
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
HeapPanel.java 727 long sizeInBytes = heapInfo.get(ClientData.HEAP_SIZE_BYTES);
734 item.setText(1, prettyByteCount(sizeInBytes));
736 item.setText(3, prettyByteCount(sizeInBytes - bytesAllocated));
737 item.setText(4, fractionalPercent(bytesAllocated, sizeInBytes));
    [all...]
  /external/webkit/Source/JavaScriptCore/bytecode/
CodeBlock.cpp     [all...]

Completed in 2566 milliseconds

1 2