Home
last modified time | relevance | path

Searched refs:mLength (Results 1 – 12 of 12) sorted by relevance

/external/replicaisland/src/com/replica/replicaisland/
DSpriteAnimation.java30 private float mLength; field in SpriteAnimation
37 mLength = 0.0f; in SpriteAnimation()
43 final float length = mLength; in getFrame()
84 mFrameStartTimes[mFrames.getCount()] = mLength; in addFrame()
86 mLength += frame.holdTime; in addFrame()
90 return mLength; in getLength()
/external/swiftshader/src/OpenGL/compiler/preprocessor/
DInput.cpp33 mLength.reserve(mCount); in Input()
37 mLength.push_back(len < 0 ? strlen(mString[i]) : len); in Input()
46 int size = mLength[mReadLoc.sIndex] - mReadLoc.cIndex; in read()
53 if (mReadLoc.cIndex == mLength[mReadLoc.sIndex]) in read()
DInput.h32 int length(int index) const { return mLength[index]; } in length()
49 std::vector<int> mLength; variable
/external/swiftshader/src/OpenGL/libGLESv2/
DBuffer.cpp35 mLength = 0; in Buffer()
93 mLength = length; in mapRange()
108 mLength = 0; in unmap()
DBuffer.h47 GLsizeiptr length() const { return mLength; } in length()
62 GLsizeiptr mLength; variable
/external/swiftshader/third_party/LLVM/test/Transforms/LoopStrengthReduce/
Dpost-inc-icmpzero.ll54 %mLength = getelementptr inbounds %struct.Vector2* %result, i64 0, i32 2
63 %tmp16 = load i32* %mLength, align 4
87 %tmp38 = load i32* %mLength, align 4
89 store i32 %add, i32* %mLength, align 4
/external/llvm/test/Transforms/LoopStrengthReduce/
Dpost-inc-icmpzero.ll54 %mLength = getelementptr inbounds %struct.Vector2, %struct.Vector2* %result, i64 0, i32 2
63 %tmp16 = load i32, i32* %mLength, align 4
87 %tmp38 = load i32, i32* %mLength, align 4
89 store i32 %add, i32* %mLength, align 4
/external/pdfium/core/fxcrt/
Dfx_basic_wstring.cpp310 FX_STRSIZE mLength = nIndex + nCount; in Delete() local
311 if (mLength >= nOldLength) { in Delete()
316 int nCharsToCopy = nOldLength - mLength + 1; in Delete()
317 wmemmove(m_pData->m_String + nIndex, m_pData->m_String + mLength, in Delete()
Dfx_basic_bstring.cpp361 FX_STRSIZE mLength = nIndex + nCount; in Delete() local
362 if (mLength >= nOldLength) { in Delete()
367 int nCharsToCopy = nOldLength - mLength + 1; in Delete()
368 FXSYS_memmove(m_pData->m_String + nIndex, m_pData->m_String + mLength, in Delete()
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DNormalizer2Impl.java818 int mLength=firstUnit&MAPPING_LENGTH_MASK; // length of normal mapping in getRawDecomposition() local
828 StringBuilder buffer=new StringBuilder(mLength-1).append(rm0); in getRawDecomposition()
830 return buffer.append(extraData, norm16, norm16+mLength-2).toString(); in getRawDecomposition()
834 return extraData.substring(norm16, norm16+mLength); in getRawDecomposition()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DNormalizer2Impl.java814 int mLength=firstUnit&MAPPING_LENGTH_MASK; // length of normal mapping in getRawDecomposition() local
824 StringBuilder buffer=new StringBuilder(mLength-1).append(rm0); in getRawDecomposition()
826 return buffer.append(extraData, norm16, norm16+mLength-2).toString(); in getRawDecomposition()
830 return extraData.substring(norm16, norm16+mLength); in getRawDecomposition()
/external/icu/icu4c/source/common/
Dnormalizer2impl.cpp670 int32_t mLength=firstUnit&MAPPING_LENGTH_MASK; // length of normal mapping in getRawDecomposition() local
682 u_memcpy(buffer+1, (const UChar *)mapping+1+2, mLength-2); in getRawDecomposition()
683 length=mLength-1; in getRawDecomposition()
687 length=mLength; in getRawDecomposition()