Searched refs:byteSize (Results 1 - 20 of 20) sorted by relevance

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
H A DOpenSSLDigest.java31 private final int byteSize; field in class:OpenSSLDigest
33 public OpenSSLDigest(String algorithm, int byteSize) { argument
36 this.byteSize = byteSize;
51 return byteSize;
/external/qemu/android/base/containers/
H A DPodVector.cpp30 initFrom(other.begin(), other.byteSize());
34 initFrom(other.begin(), other.byteSize());
41 ::memset(mBegin, 0xee, byteSize());
64 resize(other.byteSize(), 1U);
65 ::memmove(begin(), other.begin(), byteSize());
113 size_t oldByteSize = byteSize();
144 byteSize() - pos - itemSize);
H A DPodVector.h52 size_t byteSize() const { return mEnd - mBegin; } function in class:android::base::PodVectorBase
77 return byteSize() / itemSize;
/external/chromium_org/third_party/icu/source/i18n/
H A Ducol_bld.h43 uint32_t byteSize; uint32_t start; uint32_t limit; member in struct:__anon12109
/external/chromium_org/third_party/skia/src/animator/
H A DSkMemberInfo.cpp25 size_t byteSize; local
28 byteSize = sizeof(SkColor);
49 byteSize = sizeof(int);
55 byteSize = sizeof(void*);
58 byteSize = sizeof(SkMSec);
61 byteSize = sizeof(SkPoint);
64 byteSize = sizeof(Sk3D_Point);
67 byteSize = sizeof(int32_t);
70 byteSize = sizeof(SkScalar);
74 byteSize
95 size_t byteSize = GetSize(type); local
101 size_t byteSize; local
142 size_t byteSize = getSize(displayable); local
[all...]
H A DSkDisplayable.cpp107 size_t byteSize = elementSize * arrayCount; local
108 memcpy(copyArray->begin(), array->begin(), byteSize);
/external/skia/src/animator/
H A DSkMemberInfo.cpp25 size_t byteSize; local
28 byteSize = sizeof(SkColor);
49 byteSize = sizeof(int);
55 byteSize = sizeof(void*);
58 byteSize = sizeof(SkMSec);
61 byteSize = sizeof(SkPoint);
64 byteSize = sizeof(Sk3D_Point);
67 byteSize = sizeof(int32_t);
70 byteSize = sizeof(SkScalar);
74 byteSize
95 size_t byteSize = GetSize(type); local
101 size_t byteSize; local
142 size_t byteSize = getSize(displayable); local
[all...]
H A DSkDisplayable.cpp107 size_t byteSize = elementSize * arrayCount; local
108 memcpy(copyArray->begin(), array->begin(), byteSize);
/external/chromium_org/third_party/icu/source/common/
H A Ducol_data.h76 uint32_t byteSize; member in struct:__anon12005
H A Ducol_swp.cpp427 header.byteSize=udata_readInt32(ds, inHeader->byteSize);
430 (uint32_t)(length-headerSize)<(header.byteSize=udata_readInt32(ds, inHeader->byteSize)))
441 uprv_memcpy(outBytes, inBytes, header.byteSize);
446 /* read more of the InverseUCATableHeader (the byteSize field was read above) */
464 return headerSize+header.byteSize;
/external/icu/icu4c/source/common/
H A Ducol_data.h76 uint32_t byteSize; member in struct:__anon21793
H A Ducol_swp.cpp649 header.byteSize=udata_readInt32(ds, inHeader->byteSize);
652 (uint32_t)(length-headerSize)<(header.byteSize=udata_readInt32(ds, inHeader->byteSize)))
663 uprv_memcpy(outBytes, inBytes, header.byteSize);
668 /* read more of the InverseUCATableHeader (the byteSize field was read above) */
686 return headerSize+header.byteSize;
/external/lldb/test/python_api/process/
H A DTestProcessAPI.py243 byteSize = val.GetByteSize()
244 bytes = int_to_bytearray(256, byteSize)
263 if not error.Success() or result != byteSize:
280 content = process.ReadMemory(location, byteSize, error)
291 new_value = bytearray_to_int(new_bytes, byteSize)
/external/chromium_org/third_party/skia/src/gpu/effects/
H A DGrConvexPolyEffect.cpp254 size_t byteSize = 3 * cpe.getEdgeCount() * sizeof(SkScalar); local
255 if (0 != memcmp(fPrevEdges, cpe.getEdges(), byteSize)) {
257 memcpy(fPrevEdges, cpe.getEdges(), byteSize);
/external/skia/src/gpu/effects/
H A DGrConvexPolyEffect.cpp249 size_t byteSize = 3 * cpe.getEdgeCount() * sizeof(SkScalar); local
250 if (0 != memcmp(fPrevEdges, cpe.getEdges(), byteSize)) {
252 memcpy(fPrevEdges, cpe.getEdges(), byteSize);
/external/chromium_org/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
H A DEncoder.java478 private Encoder encoderForArrayByTotalSize(int byteSize, int length, int offset) { argument
481 new DataHeader(DataHeader.HEADER_SIZE + byteSize, length));
/external/chromium_org/third_party/webrtc/modules/media_file/source/
H A Dmedia_file_utility.cc1641 uint32_t byteSize = 0; local
1644 byteSize = 50;
1648 byteSize = 38;
1650 if(bufferSize < byteSize)
1659 bytesRead = in.Read(outData, byteSize);
1660 if(bytesRead != byteSize)
1665 bytesRead = in.Read(outData, byteSize);
1666 if(bytesRead != byteSize)
/external/svox/pico/lib/
H A Dpicoos.h164 void * picoos_allocate(picoos_MemoryManager this, picoos_objsize_t byteSize);
174 void *picoos_allocProtMem(picoos_MemoryManager mm, picoos_objsize_t byteSize);
H A Dpicoos.c435 void *picoos_allocProtMem(picoos_MemoryManager mm, picoos_objsize_t byteSize) argument
438 return picopal_mpr_alloc(byteSize);
440 return picoos_allocate(mm, byteSize);
508 picoos_objsize_t byteSize)
515 if (byteSize < this->minContSize) {
516 byteSize = this->minContSize;
518 byteSize = ((byteSize + PICOOS_ALIGN_SIZE - 1) / PICOOS_ALIGN_SIZE)
521 cellSize = byteSize + this->usedCellHdrSize;
507 picoos_allocate(picoos_MemoryManager this, picoos_objsize_t byteSize) argument
H A Dpicopr.c357 static void pr_ALLOCATE (picodata_ProcessingUnit this, pr_MemTypes mType, void * * adr, unsigned int byteSize) argument
358 /* allocates 'byteSize' bytes in the memery partition given by 'mType' */
364 if ((pr->workMemTop + byteSize) < PR_WORK_MEM_SIZE) {
366 byteSize = ((byteSize + PICOOS_ALIGN_SIZE - 1) / PICOOS_ALIGN_SIZE) * PICOOS_ALIGN_SIZE;
367 pr->workMemTop += byteSize;
369 PICODBG_INFO(("pr_WorkMem: +%u, tot:%i of %i", byteSize, pr->workMemTop, PR_WORK_MEM_SIZE));
387 (*adr) = picoos_allocate(pr->dynMemMM, byteSize);

Completed in 2740 milliseconds