HomeSort by relevance Sort by last modified time
    Searched full:size_t (Results 1126 - 1150 of 10511) sorted by null

<<41424344454647484950>>

  /external/skia/src/ports/
SkFontHost_none.cpp 20 const void* data, size_t bytelength,
59 size_t SkFontHost::GetFileName(SkFontID fontID, char path[], size_t length,
90 size_t SkFontHost::ShouldPurgeFontCache(size_t sizeAllocatedSoFar) {
  /external/sqlite/android/
PhoneticStringUtils.h 20 #include <string.h> // For size_t.
41 bool GetUtf8FromCodePoint(int codepoint, char *dst, size_t len, size_t *index);
48 bool GetPhoneticallySortableString(const char *src, char **dst, size_t *len);
55 bool GetNormalizedString(const char *src, char **dst, size_t *len);
  /external/srec/shared/include/
Int8ArrayListImpl.h 44 size_t virtualSize;
48 size_t actualSize;
76 ESR_SHARED_API ESR_ReturnCode Int8ArrayList_Get(Int8ArrayList* self, size_t index, asr_int8_t* element);
81 ESR_SHARED_API ESR_ReturnCode Int8ArrayList_Set(Int8ArrayList* self, size_t index, const asr_int8_t element);
86 ESR_SHARED_API ESR_ReturnCode Int8ArrayList_GetSize(Int8ArrayList* self, size_t* size);
IntArrayListImpl.h 44 size_t virtualSize;
48 size_t actualSize;
76 ESR_SHARED_API ESR_ReturnCode IntArrayList_Get(IntArrayList* self, size_t index, int* element);
81 ESR_SHARED_API ESR_ReturnCode IntArrayList_Set(IntArrayList* self, size_t index, const int element);
86 ESR_SHARED_API ESR_ReturnCode IntArrayList_GetSize(IntArrayList* self, size_t* size);
  /external/srec/srec/AcousticModels/src/
AcousticModels.c 56 ESR_ReturnCode SR_AcousticModelsGetParameter(SR_AcousticModels* self, const LCHAR* key, LCHAR* value, size_t* len)
66 ESR_ReturnCode SR_AcousticModelsGetCount(SR_AcousticModels* self, size_t* size)
76 ESR_ReturnCode SR_AcousticModelsGetID(SR_AcousticModels* self, size_t index, SR_AcousticModelID* id, size_t* size)
86 ESR_ReturnCode SR_AcousticModelsSetID(SR_AcousticModels* self, size_t index, SR_AcousticModelID* id)
  /external/stlport/test/eh/
test_construct.h 30 USING_CSTD_NAME(size_t)
61 test_construct_n( size_t _n ) : n(_n+1) {
70 size_t n;
75 test_construct_n_instance( size_t _n ) : n(_n+1) {
86 size_t n;
test_map.cpp 54 const size_t mapSize = random_number(random_base);
65 size_t insCnt = 1 + random_number(random_base);
93 size_t total = 0;
102 const size_t mapSize = random_number(random_base);
113 size_t insCnt = random_number(random_base);
  /external/webkit/Source/JavaScriptCore/wtf/
OSAllocatorWin.cpp 41 void* OSAllocator::reserveUncommitted(size_t bytes, Usage, bool writable, bool executable)
49 void* OSAllocator::reserveAndCommit(size_t bytes, Usage, bool writable, bool executable)
57 void OSAllocator::commit(void* address, size_t bytes, bool writable, bool executable)
64 void OSAllocator::decommit(void* address, size_t bytes)
71 void OSAllocator::releaseDecommitted(void* address, size_t bytes)
  /external/webkit/Source/JavaScriptCore/wtf/wince/
MemoryManager.h 41 static void* m_malloc(size_t size);
42 static void* m_calloc(size_t num, size_t size);
43 static void* m_realloc(void* p, size_t size);
45 static bool resizeMemory(void* p, size_t newSize);
  /external/webkit/Source/WebCore/bindings/cpp/
WebDOMCString.h 26 #include <stddef.h> // For size_t
49 WebDOMCString(const char* data, size_t len) : m_private(0)
64 void assign(const char* data, size_t len);
66 size_t length() const;
74 static WebDOMCString fromUTF16(const WebUChar* data, size_t length);
  /external/webkit/Source/WebCore/css/
StyleBase.h 77 void* operator new(size_t size);
78 void* operator new[](size_t size);
81 void operator delete(void* p, size_t size);
82 void operator delete[](void* p, size_t size);
84 static size_t reportStyleSize();
  /external/webkit/Source/WebCore/inspector/
ScriptCallStack.cpp 52 const ScriptCallFrame &ScriptCallStack::at(size_t index) const
58 size_t ScriptCallStack::size() const
68 size_t frameCount = o->m_frames.size();
72 for (size_t i = 0; i < frameCount; ++i) {
84 for (size_t i = 0; i < m_frames.size(); i++)
  /external/webkit/Source/WebCore/platform/
ContentType.cpp 44 size_t semi = strippedType.find(';');
46 size_t start = strippedType.find(parameterName, semi + 1, false);
50 size_t quote = strippedType.find('\"', start + 1);
51 size_t end = strippedType.find('\"', start + 2);
72 size_t semi = strippedType.find(';');
PurgeableBuffer.h 38 static PassOwnPtr<PurgeableBuffer> create(const char* data, size_t);
44 size_t size() const { return m_size; }
55 PurgeableBuffer(char* data, size_t);
58 size_t m_size;
66 inline PassOwnPtr<PurgeableBuffer> PurgeableBuffer::create(const char*, size_t) { return PassOwnPtr<PurgeableBuffer>(); }
  /external/webkit/Source/WebCore/platform/audio/
ReverbInputBuffer.cpp 37 ReverbInputBuffer::ReverbInputBuffer(size_t length)
43 void ReverbInputBuffer::write(float* sourceP, size_t numberOfFrames)
45 size_t bufferLength = m_buffer.size();
60 float* ReverbInputBuffer::directReadFrom(int* readIndex, size_t numberOfFrames)
62 size_t bufferLength = m_buffer.size();
ReverbInputBuffer.h 39 ReverbInputBuffer(size_t length);
44 void write(float* sourceP, size_t numberOfFrames);
47 size_t writeIndex() const { return m_writeIndex; }
53 float* directReadFrom(int* readIndex, size_t numberOfFrames);
59 size_t m_writeIndex;
  /external/webkit/Source/WebCore/platform/graphics/chromium/
TextureManager.h 43 static PassOwnPtr<TextureManager> create(GraphicsContext3D* context, size_t memoryLimitBytes, int maxTextureSize)
59 TextureManager(GraphicsContext3D*, size_t memoryLimitBytes, int maxTextureSize);
68 bool reduceMemoryToLimit(size_t);
78 size_t m_memoryLimitBytes;
79 size_t m_memoryUseBytes;
  /external/webkit/Source/WebCore/platform/graphics/win/
WKCAImageQueue.cpp 77 size_t WKCAImageQueue::collect()
87 uint64_t WKCAImageQueue::registerPixelBuffer(void *data, size_t data_size, size_t rowbytes, size_t width, size_t height, uint32_t pixel_format, CFDictionaryRef attachments, uint32_t flags)
WKCAImageQueue.h 72 size_t collect();
75 uint64_t registerPixelBuffer(void *data, size_t data_size, size_t rowbytes, size_t width, size_t height, uint32_t pixel_format, CFDictionaryRef attachments, uint32_t flags);
  /external/webkit/Source/WebCore/webaudio/
AudioBuffer.h 44 static PassRefPtr<AudioBuffer> create(unsigned numberOfChannels, size_t numberOfFrames, double sampleRate);
47 static PassRefPtr<AudioBuffer> createFromAudioFileData(const void* data, size_t dataSize, bool mixToMono, double sampleRate);
50 size_t length() const { return m_length; }
69 AudioBuffer(unsigned numberOfChannels, size_t numberOfFrames, double sampleRate);
74 size_t m_length;
  /external/webkit/Source/WebKit2/Platform/CoreIPC/
ArgumentEncoder.h 44 void encodeBytes(const uint8_t*, size_t);
68 size_t bufferSize() const { return m_bufferSize; }
79 uint8_t* grow(unsigned alignment, size_t size);
84 size_t m_bufferSize;
85 size_t m_bufferCapacity;
  /external/webkit/Source/WebKit2/Shared/
ImmutableArray.h 46 static PassRefPtr<ImmutableArray> create(APIObject** entries, size_t size)
58 T* at(size_t i) { if (m_entries[i]->type() != T::APIType) return 0; return static_cast<T*>(m_entries[i].get()); }
60 APIObject* at(size_t i) { return m_entries[i].get(); }
61 size_t size() { return m_entries.size(); }
67 ImmutableArray(APIObject** entries, size_t size);
WebData.h 43 static PassRefPtr<WebData> createWithoutCopying(const unsigned char* bytes, size_t size, FreeDataFunction freeDataFunction, const void* context)
48 static PassRefPtr<WebData> create(const unsigned char* bytes, size_t size)
71 size_t size() const { return m_size; }
74 WebData(const unsigned char* bytes, size_t size, FreeDataFunction freeDataFunction, const void* context)
91 size_t m_size;
  /external/wpa_supplicant/
pmksa_cache.h 25 size_t pmk_len;
46 int pmksa_cache_list(struct wpa_sm *sm, char *buf, size_t len);
48 pmksa_cache_add(struct rsn_pmksa_cache *pmksa, const u8 *pmk, size_t pmk_len,
86 static inline int pmksa_cache_list(struct wpa_sm *sm, char *buf, size_t len)
92 pmksa_cache_add(struct rsn_pmksa_cache *pmksa, const u8 *pmk, size_t pmk_len,
  /external/wpa_supplicant_6/wpa_supplicant/src/rsn_supp/
pmksa_cache.h 25 size_t pmk_len;
56 int pmksa_cache_list(struct wpa_sm *sm, char *buf, size_t len);
58 pmksa_cache_add(struct rsn_pmksa_cache *pmksa, const u8 *pmk, size_t pmk_len,
96 static inline int pmksa_cache_list(struct wpa_sm *sm, char *buf, size_t len)
102 pmksa_cache_add(struct rsn_pmksa_cache *pmksa, const u8 *pmk, size_t pmk_len,

Completed in 4918 milliseconds

<<41424344454647484950>>