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

1 2

  /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)
  /external/webkit/WebCore/html/canvas/
WebGLArrayBuffer.h 36 static PassRefPtr<WebGLArrayBuffer> create(unsigned sizeInBytes);
46 WebGLArrayBuffer(unsigned sizeInBytes);
WebGLArrayBuffer.cpp 36 PassRefPtr<WebGLArrayBuffer> WebGLArrayBuffer::create(unsigned sizeInBytes)
38 return adoptRef(new WebGLArrayBuffer(sizeInBytes));
48 WebGLArrayBuffer::WebGLArrayBuffer(unsigned sizeInBytes) {
49 m_sizeInBytes = sizeInBytes;
50 m_data = WTF::fastZeroedMalloc(sizeInBytes);
WebGLRenderingContext.h 64 int sizeInBytes(int type, ExceptionCode& ec);
WebGLRenderingContext.cpp 153 int WebGLRenderingContext::sizeInBytes(int type, ExceptionCode& ec)
156 int result = m_context->sizeInBytes(type);
    [all...]
WebGLRenderingContext.idl 460 long sizeInBytes(in unsigned long type) raises(DOMException);
    [all...]
  /frameworks/base/libs/rs/
rsLocklessFifo.cpp 40 bool LocklessCommandFifo::init(uint32_t sizeInBytes)
43 mBuffer = static_cast<uint8_t *>(malloc(sizeInBytes + 4));
56 mSize = sizeInBytes;
59 mEnd = mBuffer + (sizeInBytes) - 1;
87 void * LocklessCommandFifo::reserve(uint32_t sizeInBytes)
90 sizeInBytes += 8;
93 if (getFreeSpace() < sizeInBytes) {
94 makeSpace(sizeInBytes);
100 void LocklessCommandFifo::commit(uint32_t command, uint32_t sizeInBytes)
107 reinterpret_cast<uint16_t *>(mPut)[1] = sizeInBytes;
    [all...]
  /frameworks/base/media/java/android/media/
AudioRecord.java 534 * @param sizeInBytes the number of requested bytes.
538 * The number of bytes will not exceed sizeInBytes.
540 public int read(byte[] audioData, int offsetInBytes, int sizeInBytes) {
545 if ( (audioData == null) || (offsetInBytes < 0 ) || (sizeInBytes < 0)
546 || (offsetInBytes + sizeInBytes > audioData.length)) {
550 return native_read_in_byte_array(audioData, offsetInBytes, sizeInBytes);
582 * @param sizeInBytes the number of requested bytes.
586 * The number of bytes will not exceed sizeInBytes.
588 public int read(ByteBuffer audioBuffer, int sizeInBytes) {
593 if ( (audioBuffer == null) || (sizeInBytes < 0) )
    [all...]
AudioTrack.java 830 * @param sizeInBytes the number of bytes to read in audioData after the offset.
836 public int write(byte[] audioData,int offsetInBytes, int sizeInBytes) {
839 && (sizeInBytes > 0)) {
847 if ( (audioData == null) || (offsetInBytes < 0 ) || (sizeInBytes < 0)
848 || (offsetInBytes + sizeInBytes > audioData.length)) {
852 return native_write_byte(audioData, offsetInBytes, sizeInBytes, mAudioFormat);
    [all...]
  /frameworks/base/core/jni/
android_media_AudioTrack.cpp 89 bool allocSharedMem(int sizeInBytes) {
90 mMemHeap = new MemoryHeapBase(sizeInBytes, 0, "AudioTrack Heap Base");
94 mMemBase = new MemoryBase(mMemHeap, 0, sizeInBytes);
441 jint offsetInBytes, jint sizeInBytes) {
446 written = pTrack->write(data + offsetInBytes, sizeInBytes);
450 if ((size_t)sizeInBytes > pTrack->sharedBuffer()->size()) {
451 sizeInBytes = pTrack->sharedBuffer()->size();
453 memcpy(pTrack->sharedBuffer()->pointer(), data + offsetInBytes, sizeInBytes);
454 written = sizeInBytes;
460 if (((size_t)sizeInBytes)*2 > pTrack->sharedBuffer()->size())
    [all...]
android_media_AudioRecord.cpp 300 jint offsetInBytes, jint sizeInBytes) {
328 sizeInBytes > (jint)recorderBuffSize ?
329 (jint)recorderBuffSize : sizeInBytes );
348 jobject jBuffer, jint sizeInBytes) {
374 capacity < sizeInBytes ? capacity : sizeInBytes);
  /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);
  /external/opencore/nodes/streaming/streamingmanager/plugins/rtspunicast/src/
pvmf_sm_fsp_rtsp_unicast.cpp     [all...]
  /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/opencore/nodes/streaming/jitterbuffernode/src/
pvmf_jitter_buffer_node.cpp     [all...]
  /external/webkit/JavaScriptCore/bytecode/
CodeBlock.cpp     [all...]
  /external/webkit/WebCore/platform/graphics/
GraphicsContext3D.h 420 int sizeInBytes(int type);
  /external/webkit/WebCore/platform/graphics/mac/
GraphicsContext3DMac.cpp     [all...]
  /external/webkit/WebKit/chromium/src/
GraphicsContext3D.cpp     [all...]
  /prebuilt/common/ecj/
ecj.jar 
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 

Completed in 912 milliseconds

1 2