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

1 2 3

  /external/chromium_org/third_party/WebKit/Source/wtf/
ArrayBufferDeallocationObserver.h 38 virtual void arrayBufferDeallocated(unsigned sizeInBytes) = 0;
43 virtual void blinkAllocatedMemory(unsigned sizeInBytes) = 0;
ArrayBufferContents.h 52 ArrayBufferContents(void* data, unsigned sizeInBytes, ArrayBufferDeallocationObserver*);
59 unsigned sizeInBytes() const { return m_sizeInBytes; }
ArrayBufferContents.cpp 60 void* data, unsigned sizeInBytes, ArrayBufferDeallocationObserver* observer)
62 , m_sizeInBytes(sizeInBytes)
ArrayBuffer.h 148 return m_contents.sizeInBytes();
  /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)
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
SuperFloppyFormatter.java 305 public static FatType fatTypeFromSize(long sizeInBytes) {
306 final long sizeInMb = sizeInBytes / (1024 * 1024);
312 public static int clusterSizeFromSize(long sizeInBytes, int sectorSize){
313 switch(fatTypeFromSize(sizeInBytes)) {
315 return sectorsPerCluster12(sizeInBytes, sectorSize);
317 return sectorsPerCluster16FromSize(sizeInBytes, sectorSize);
319 return sectorsPerCluster32FromSize(sizeInBytes, sectorSize);
  /frameworks/base/media/java/android/media/
AudioRecord.java 684 * @param sizeInBytes the number of requested bytes.
688 * The number of bytes will not exceed sizeInBytes.
690 public int read(byte[] audioData, int offsetInBytes, int sizeInBytes) {
695 if ( (audioData == null) || (offsetInBytes < 0 ) || (sizeInBytes < 0)
696 || (offsetInBytes + sizeInBytes < 0) // detect integer overflow
697 || (offsetInBytes + sizeInBytes > audioData.length)) {
701 return native_read_in_byte_array(audioData, offsetInBytes, sizeInBytes);
736 * @param sizeInBytes the number of requested bytes.
740 * The number of bytes will not exceed sizeInBytes.
742 public int read(ByteBuffer audioBuffer, int sizeInBytes) {
    [all...]
AudioTrack.java     [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);
515 jint offsetInBytes, jint sizeInBytes, bool blocking = true) {
520 written = track->write(data + offsetInBytes, sizeInBytes, blocking);
533 if ((size_t)sizeInBytes > track->sharedBuffer()->size()) {
534 sizeInBytes = track->sharedBuffer()->size();
536 memcpy(track->sharedBuffer()->pointer(), data + offsetInBytes, sizeInBytes);
537 written = sizeInBytes;
545 if (((size_t)sizeInBytes)*2 > track->sharedBuffer()->size())
    [all...]
android_media_AudioRecord.cpp 363 jint offsetInBytes, jint sizeInBytes) {
392 sizeInBytes > (jint)recorderBuffSize ?
393 (jint)recorderBuffSize : sizeInBytes );
434 const size_t sizeInBytes = sizeInShorts * sizeof(short);
436 sizeInBytes > recorderBuffSize ?
437 recorderBuffSize : sizeInBytes);
451 jobject jBuffer, jint sizeInBytes) {
473 capacity < sizeInBytes ? capacity : sizeInBytes);
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
V8ArrayBufferCustom.h 39 virtual void arrayBufferDeallocated(unsigned sizeInBytes) OVERRIDE
41 v8::Isolate::GetCurrent()->AdjustAmountOfExternalAllocatedMemory(-static_cast<int>(sizeInBytes));
46 virtual void blinkAllocatedMemory(unsigned sizeInBytes) OVERRIDE
48 v8::Isolate::GetCurrent()->AdjustAmountOfExternalAllocatedMemory(static_cast<int>(sizeInBytes));
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
ScriptResource.cpp 82 setEncodedSize(script.sizeInBytes());
  /external/chromium_org/third_party/WebKit/Source/core/loader/
BeaconLoader.cpp 46 unsigned long long entitySize = entityBody->sizeInBytes();
116 unsigned long long entitySize = entityBody->sizeInBytes();
  /packages/apps/Camera2/src/com/android/camera/data/
LocalMediaData.java 86 int width, int height, long sizeInBytes, double latitude,
96 mSizeInBytes = sizeInBytes;
378 long sizeInBytes, double latitude, double longitude) {
380 path, width, height, sizeInBytes, latitude, longitude);
426 long sizeInBytes = c.getLong(COL_SIZE);
431 sizeInBytes, latitude, longitude);
660 String path, int width, int height, long sizeInBytes,
663 path, width, height, sizeInBytes, latitude, longitude);
740 long sizeInBytes = c.getLong(COL_SIZE);
745 dateModifiedInSeconds, path, width, height, sizeInBytes,
    [all...]
  /external/lzma/CPP/7zip/Archive/7z/
7zDecode.cpp 267 const UInt32 sizeInBytes = password.Length() * 2;
268 buffer.SetCapacity(sizeInBytes);
275 RINOK(cryptoSetPassword->CryptoSetPassword((const Byte *)buffer, sizeInBytes));
7zEncode.cpp 116 const UInt32 sizeInBytes = _options.Password.Length() * 2;
117 buffer.SetCapacity(sizeInBytes);
124 RINOK(cryptoSetPassword->CryptoSetPassword((const Byte *)buffer, sizeInBytes));
  /external/chromium_org/third_party/WebKit/Source/platform/network/
FormData.h 136 unsigned long long sizeInBytes() const;
FormData.cpp 165 unsigned long long FormData::sizeInBytes() const
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
NetworkResourcesData.cpp 90 return content.isNull() ? 0 : content.impl()->sizeInBytes();
  /external/chromium_org/third_party/lzma_sdk/
LzFind.c 165 size_t sizeInBytes = (size_t)num * sizeof(CLzRef);
166 if (sizeInBytes / sizeof(CLzRef) != num)
168 return (CLzRef *)alloc->Alloc(alloc, sizeInBytes);
  /external/chromium_org/third_party/ots/third_party/lzma_sdk/
LzFind.c 166 size_t sizeInBytes = (size_t)num * sizeof(CLzRef);
167 if (sizeInBytes / sizeof(CLzRef) != num)
169 return (CLzRef *)alloc->Alloc(alloc, sizeInBytes);
  /external/lzma/C/
LzFind.c 165 size_t sizeInBytes = (size_t)num * sizeof(CLzRef);
166 if (sizeInBytes / sizeof(CLzRef) != num)
168 return (CLzRef *)alloc->Alloc(alloc, sizeInBytes);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.repository.tools_2.0.1.R36x_v20100823.jar 

Completed in 582 milliseconds

1 2 3