Home
last modified time | relevance | path

Searched refs:actualSize (Results 1 – 21 of 21) sorted by relevance

/external/webkit/Tools/TestWebKitAPI/Tests/WebKit2/
DWKString.cpp43 size_t actualSize = WKStringGetUTF8CString(string, buffer, maxSize); in TEST() local
44 TEST_ASSERT(actualSize == 6); in TEST()
54 actualSize = WKStringGetCharacters(string, uniBuffer, maxSize); in TEST()
55 TEST_ASSERT(actualSize == 5); in TEST()
61 actualSize = WKStringGetCharacters(string, uniBuffer, maxSize-1); in TEST()
62 TEST_ASSERT(actualSize == 4); in TEST()
65 actualSize = WKStringGetCharacters(string, uniBuffer, maxSize+1); in TEST()
66 TEST_ASSERT(actualSize == 5); in TEST()
/external/srec/shared/src/
DIntArrayListImpl.c53 impl->actualSize = INITIAL_SIZE; in IntArrayListCreate()
78 if (impl->virtualSize >= impl->actualSize) in IntArrayList_Add()
81 int* temp = REALLOC(impl->contents, (impl->actualSize * 2 + 1) * sizeof(int)); in IntArrayList_Add()
85 impl->actualSize *= 2; in IntArrayList_Add()
112 if (virtualSize <= impl->actualSize / 4) in IntArrayList_Remove()
115 impl->contents = REALLOC(contents, (impl->actualSize / 2 + 1) * sizeof(int)); in IntArrayList_Remove()
117 impl->actualSize /= 2; in IntArrayList_Remove()
DInt8ArrayListImpl.c54 impl->actualSize = INITIAL_SIZE; in Int8ArrayListCreate()
79 if (impl->virtualSize >= impl->actualSize) in Int8ArrayList_Add()
82 asr_int8_t* temp = REALLOC(impl->contents, (impl->actualSize * 2 + 1) * sizeof(asr_int8_t)); in Int8ArrayList_Add()
86 impl->actualSize *= 2; in Int8ArrayList_Add()
113 if (virtualSize <= impl->actualSize / 4) in Int8ArrayList_Remove()
116 impl->contents = REALLOC(contents, (impl->actualSize / 2 + 1) * sizeof(asr_int8_t)); in Int8ArrayList_Remove()
118 impl->actualSize /= 2; in Int8ArrayList_Remove()
/external/srec/portable/src/
Dpmemory.c575 size_t actualSize; in pmalloc() local
612 actualSize = sizeof(MemoryData) + nbBytes; in pmalloc()
614 data = (MemoryData *) malloc(actualSize); in pmalloc()
666 data->size = actualSize; in pmalloc()
668 e->curAlloc += actualSize; in pmalloc()
672 gCurAlloc += actualSize; in pmalloc()
688 pfprintf(gFile, L("pmem|alloc|%s|%d|0x%x|%s|\n"), tag, actualSize, result, data->stackTrace); in pmalloc()
690 pfprintf(gFile, L("pmem|alloc|%s|%d|0x%x|\n"), tag, actualSize, result); in pmalloc()
742 size_t actualSize; in prealloc() local
789 actualSize = newSize + sizeof(MemoryData); in prealloc()
[all …]
/external/libnfc-nxp/src/
DphFriNfc_NdefMap.c1239 …NdefMap_GetContainerSize(const phFriNfc_NdefMap_t *NdefMap,uint32_t *maxSize, uint32_t *actualSize) in phFriNfc_NdefMap_GetContainerSize() argument
1246 if( (NdefMap == NULL) || (maxSize == NULL) || (actualSize == NULL)) in phFriNfc_NdefMap_GetContainerSize()
1265 *actualSize = NdefMap->TLVStruct.ActualSize; in phFriNfc_NdefMap_GetContainerSize()
1283 *actualSize = NdefMap->DesfireCapContainer.NdefDataLen; in phFriNfc_NdefMap_GetContainerSize()
1296 *actualSize = NdefMap->TLVStruct.BytesRemainLinTLV; in phFriNfc_NdefMap_GetContainerSize()
1307 *actualSize = NdefMap->TopazContainer.ActualNDEFMsgSize; in phFriNfc_NdefMap_GetContainerSize()
1388 *actualSize = NdefMap->TLVStruct.BytesRemainLinTLV; in phFriNfc_NdefMap_GetContainerSize()
1400 *actualSize = NdefMap->FelicaAttrInfo.LenBytes[0]; in phFriNfc_NdefMap_GetContainerSize()
1401 *actualSize = *actualSize << 16; in phFriNfc_NdefMap_GetContainerSize()
1402 *actualSize += NdefMap->FelicaAttrInfo.LenBytes[1]; in phFriNfc_NdefMap_GetContainerSize()
[all …]
DphFriNfc_NdefMap.h1238 …defMap_GetContainerSize(const phFriNfc_NdefMap_t *NdefMap,uint32_t *maxSize, uint32_t *actualSize);
/external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/
DRenderFontJme.java44 private float actualSize; field in RenderFontJme
57 actualSize = font.getPreferredSize(); in RenderFontJme()
58 text.setSize(actualSize); in RenderFontJme()
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
DThreadGroupTest.java850 int actualSize = parent.enumerate(all, false); in threads() local
852 if (actualSize == all.length) { in threads()
855 result = new Thread[actualSize]; in threads()
856 System.arraycopy(all, 0, result, 0, actualSize); in threads()
998 int actualSize = 0; in groups() local
999 for (; actualSize < all.length; actualSize++) { in groups()
1000 if (all[actualSize] == null) { in groups()
1005 if (actualSize == all.length) { in groups()
1008 result = new ThreadGroup[actualSize]; in groups()
1009 System.arraycopy(all, 0, result, 0, actualSize); in groups()
/external/srec/shared/include/
DIntArrayListImpl.h48 size_t actualSize; member
DInt8ArrayListImpl.h48 size_t actualSize; member
/external/webkit/LayoutTests/dom/html/level2/events/
Dselfhtml.js14 var actualSize;
16 actualSize = actual.length;
17 assertEquals(descr, expected, actualSize);
/external/webkit/LayoutTests/dom/html/level1/core/
Dselfhtml.js14 var actualSize;
16 actualSize = actual.length;
17 assertEquals(descr, expected, actualSize);
/external/webkit/LayoutTests/dom/html/level2/html/
Dselfhtml.js14 var actualSize;
16 actualSize = actual.length;
17 assertEquals(descr, expected, actualSize);
/external/webkit/LayoutTests/dom/html/level2/core/
Dselfhtml.js14 var actualSize;
16 actualSize = actual.length;
17 assertEquals(descr, expected, actualSize);
/external/webkit/LayoutTests/dom/xhtml/level1/core/
Dselfxhtml.js13 var actualSize;
15 actualSize = actual.length;
16 assertEquals(descr, expected, actualSize);
/external/webkit/LayoutTests/dom/xhtml/level2/events/
Dselfxhtml.js13 var actualSize;
15 actualSize = actual.length;
16 assertEquals(descr, expected, actualSize);
/external/webkit/LayoutTests/dom/xhtml/level2/html/
Dselfxhtml.js13 var actualSize;
15 actualSize = actual.length;
16 assertEquals(descr, expected, actualSize);
/external/webkit/LayoutTests/dom/xhtml/level2/core/
Dselfxhtml.js13 var actualSize;
15 actualSize = actual.length;
16 assertEquals(descr, expected, actualSize);
/external/webkit/LayoutTests/dom/xhtml/level3/core/
Dselfxhtml.js13 var actualSize;
15 actualSize = actual.length;
16 assertEquals(descr, expected, actualSize);
/external/webkit/Tools/Scripts/
DVCSUtils.pm1797 my $actualSize = length($2) / 5 * 4;
1801 … die "$fullPath: unexpected size of a line: $&" if int(($expectedSize + 3) / 4) * 4 != $actualSize;
/external/icu4c/test/cintltst/
Dcloctst.c5357 static int32_t getBufferSize(const errorData* data, int32_t actualSize) in getBufferSize() argument
5361 return actualSize; in getBufferSize()