HomeSort by relevance Sort by last modified time
    Searched refs:byteSize (Results 1 - 18 of 18) sorted by null

  /external/webkit/Source/JavaScriptCore/parser/
SourceProviderCache.cpp 45 unsigned SourceProviderCache::byteSize() const
SourceProviderCache.h 39 unsigned byteSize() const;
JSParser.cpp 651 unsigned oldFunctionCacheSize = m_functionCache ? m_functionCache->byteSize() : 0;
667 unsigned functionCacheSize = m_functionCache ? m_functionCache->byteSize() : 0;
    [all...]
  /external/icu4c/i18n/
ucol_bld.h 43 uint32_t byteSize; uint32_t start; uint32_t limit;
ucol_imp.h 157 * uint32_t byteSize; - size of inverse UCA image in bytes
    [all...]
  /external/skia/src/animator/
SkMemberInfo.cpp 33 size_t byteSize;
36 byteSize = sizeof(SkColor);
57 byteSize = sizeof(int);
63 byteSize = sizeof(void*);
66 byteSize = sizeof(SkMSec);
69 byteSize = sizeof(SkPoint);
72 byteSize = sizeof(Sk3D_Point);
75 byteSize = sizeof(int32_t);
78 byteSize = sizeof(SkScalar);
82 byteSize = sizeof(SkString); // assume we'll copy by reference, not valu
    [all...]
SkDisplayable.cpp 115 size_t byteSize = elementSize * arrayCount;
116 memcpy(copyArray->begin(), array->begin(), byteSize);
  /external/llvm/lib/MC/MCDisassembler/
EDInst.h 68 uint64_t ByteSize;
100 /// @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();
EDInst.cpp 27 uint64_t byteSize,
33 ByteSize(byteSize),
55 uint64_t EDInst::byteSize() {
56 return ByteSize;
EDDisassembler.cpp 245 uint64_t byteSize;
248 S = Disassembler->getInstruction(*inst, byteSize, memoryObject, address,
264 EDInst* sdInst = new EDInst(inst, byteSize, *this, thisInstInfo);
  /external/webkit/Source/WebCore/loader/cache/
CachedScript.cpp 123 extraSize = m_sourceProviderCache ? m_sourceProviderCache->byteSize() : 0;
  /external/icu4c/common/
ucol_swp.cpp 429 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/llvm/tools/edis/
EDMain.cpp 86 address += inst->byteSize();
97 return ((EDInst*)inst)->byteSize();
  /external/svox/pico/lib/
picoos.c 435 void *picoos_allocProtMem(picoos_MemoryManager mm, picoos_objsize_t byteSize)
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;
    [all...]
picoos.h 164 void * picoos_allocate(picoos_MemoryManager this, picoos_objsize_t byteSize);
174 void *picoos_allocProtMem(picoos_MemoryManager mm, picoos_objsize_t byteSize);
picopr.c 357 static void pr_ALLOCATE (picodata_ProcessingUnit this, pr_MemTypes mType, void * * adr, unsigned int byteSize)
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);
    [all...]
  /external/llvm/tools/llvm-mc/
Disassembler.cpp 270 ByteArray.erase (ByteArray.begin(), ByteArray.begin() + inst->byteSize());
  /external/icu4c/tools/genuca/
genuca.cpp 347 result->byteSize = headerByteSize + inverseTableByteSize + contsByteSize;
408 udata_writeBlock(pData, data, data->byteSize);
    [all...]

Completed in 219 milliseconds