Home
last modified time | relevance | path

Searched refs:mLength (Results 1 – 13 of 13) 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/robolectric-shadows/resources/src/main/java/org/robolectric/res/android/
DAsset.java42 fileAsset.mLength = fsFile.length(); in newFileAsset()
601 public long getLength() { return mLength; } in getLength()
604 public long getRemainingLength() { return mLength-mOffset; } in getRemainingLength()
622 long mLength; // length of the chunk field in Asset._FileAsset
728 mLength = dataMap.getDataLength(); in openChunk()
744 assert(mOffset >= 0 && mOffset <= mLength); in read()
758 maxLen = toIntExact(mLength - mOffset); in read()
819 newPosn = handleSeek(offset, whence, mOffset, mLength); in seek()
891 allocLen = toIntExact(mLength); in getBuffer()
892 if (mLength == 0) in getBuffer()
[all …]
/external/swiftshader/src/OpenGL/compiler/preprocessor/
DInput.cpp35 mLength.reserve(mCount); in Input()
39 mLength.push_back(len < 0 ? std::strlen(mString[i]) : len); in Input()
46 assert(mReadLoc.cIndex < mLength[mReadLoc.sIndex]); in skipChar()
48 if (mReadLoc.cIndex == mLength[mReadLoc.sIndex]) in skipChar()
109 size_t size = mLength[mReadLoc.sIndex] - mReadLoc.cIndex; in read()
127 if (mReadLoc.cIndex == mLength[mReadLoc.sIndex]) in read()
DInput.h35 size_t length(size_t index) const { return mLength[index]; } in length()
56 std::vector<size_t> 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/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/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/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/LoopStrengthReduce/
Dpost-inc-icmpzero.ll55 %mLength = getelementptr inbounds %struct.Vector2, %struct.Vector2* %result, i64 0, i32 2
64 %tmp16 = load i32, i32* %mLength, align 4
88 %tmp38 = load i32, i32* %mLength, align 4
90 store i32 %add, i32* %mLength, align 4
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/
DDataUsageController.java213 final int mLength = policies.length; in findNetworkPolicy() local
214 for (int i = 0; i < mLength; i++) { in findNetworkPolicy()
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DNormalizer2Impl.java850 int mLength=firstUnit&MAPPING_LENGTH_MASK; // length of normal mapping in getRawDecomposition() local
860 StringBuilder buffer=new StringBuilder(mLength-1).append(rm0); in getRawDecomposition()
862 return buffer.append(extraData, mapping, mapping+mLength-2).toString(); in getRawDecomposition()
866 return extraData.substring(mapping, mapping+mLength); in getRawDecomposition()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DNormalizer2Impl.java841 int mLength=firstUnit&MAPPING_LENGTH_MASK; // length of normal mapping in getRawDecomposition() local
851 StringBuilder buffer=new StringBuilder(mLength-1).append(rm0); in getRawDecomposition()
853 return buffer.append(extraData, mapping, mapping+mLength-2).toString(); in getRawDecomposition()
857 return extraData.substring(mapping, mapping+mLength); in getRawDecomposition()
/external/icu/icu4c/source/common/
Dnormalizer2impl.cpp867 int32_t mLength=firstUnit&MAPPING_LENGTH_MASK; // length of normal mapping in getRawDecomposition() local
879 u_memcpy(buffer+1, (const UChar *)mapping+1+2, mLength-2); in getRawDecomposition()
880 length=mLength-1; in getRawDecomposition()
884 length=mLength; in getRawDecomposition()