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

/external/webkit/Source/JavaScriptCore/parser/
H A DSourceProviderCache.cpp45 unsigned SourceProviderCache::byteSize() const function in class:JSC::SourceProviderCache
H A DSourceProviderCache.h39 unsigned byteSize() const;
H A DJSParser.cpp651 unsigned oldFunctionCacheSize = m_functionCache ? m_functionCache->byteSize() : 0;
667 unsigned functionCacheSize = m_functionCache ? m_functionCache->byteSize() : 0;
/external/icu4c/i18n/
H A Ducol_bld.h43 uint32_t byteSize; uint32_t start; uint32_t limit; member in struct:__anon5885
H A Ducol_imp.h157 * uint32_t byteSize; - size of inverse UCA image in bytes
969 uint32_t byteSize; member in struct:__anon5901
/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/llvm/lib/MC/MCDisassembler/
H A DEDInst.h100 /// @arg byteSize - The size of the consumed instruction, in bytes
105 uint64_t byteSize,
110 /// byteSize - returns the number of bytes consumed by the machine code
112 uint64_t byteSize();
H A DEDInst.cpp27 uint64_t byteSize,
33 ByteSize(byteSize),
55 uint64_t EDInst::byteSize() { function in class:EDInst
26 EDInst(llvm::MCInst *inst, uint64_t byteSize, EDDisassembler &disassembler, const llvm::EDInstInfo *info) argument
H A DEDDisassembler.cpp228 uint64_t byteSize; local
231 S = Disassembler->getInstruction(*inst, byteSize, memoryObject, address,
247 EDInst* sdInst = new EDInst(inst, byteSize, *this, thisInstInfo);
H A DEDMain.cpp82 address += inst->byteSize();
93 return ((EDInst*)inst)->byteSize();
/external/webkit/Source/WebCore/loader/cache/
H A DCachedScript.cpp123 extraSize = m_sourceProviderCache ? m_sourceProviderCache->byteSize() : 0;
/external/icu4c/common/
H A Ducol_swp.cpp429 header.byteSize=udata_readInt32(ds, inHeader->byteSize);
432 (uint32_t)(length-headerSize)<(header.byteSize=udata_readInt32(ds, inHeader->byteSize)))
443 uprv_memcpy(outBytes, inBytes, header.byteSize);
448 /* read more of the InverseUCATableHeader (the byteSize field was read above) */
466 return headerSize+header.byteSize;
/external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/
H A DFloatToFixed.java54 private static final float byteSize = Byte.MAX_VALUE - Byte.MIN_VALUE; field in class:FloatToFixed
303 dataTypeSize = 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);
/external/llvm/tools/llvm-mc/
H A DDisassembler.cpp245 ByteArray.erase (ByteArray.begin(), ByteArray.begin() + inst->byteSize());

Completed in 3843 milliseconds