/external/lzma/CPP/Common/ |
D | UTFConvert.cpp | 12 size_t destPos = 0, srcPos = 0; in Utf8_To_Utf16() local 17 if (srcPos == srcLen) in Utf8_To_Utf16() 22 c = (Byte)src[srcPos++]; in Utf8_To_Utf16() 41 if (srcPos == srcLen) in Utf8_To_Utf16() 43 c2 = (Byte)src[srcPos++]; in Utf8_To_Utf16() 76 size_t destPos = 0, srcPos = 0; in Utf16_To_Utf8() local 81 if (srcPos == srcLen) in Utf16_To_Utf8() 86 value = src[srcPos++]; in Utf16_To_Utf8() 97 if (value >= 0xDC00 || srcPos == srcLen) in Utf16_To_Utf8() 99 c2 = src[srcPos++]; in Utf16_To_Utf8()
|
/external/lzma/C/ |
D | Lzma2Enc.c | 41 UInt64 srcPos; member 53 p->srcPos = 0; in Lzma2EncInt_Init() 115 …outBuf[destPos++] = (Byte)(p->srcPos == 0 ? LZMA2_CONTROL_COPY_RESET_DIC : LZMA2_CONTROL_COPY_NO_R… in Lzma2EncInt_EncodeSubblock() 121 p->srcPos += u; in Lzma2EncInt_EncodeSubblock() 140 unsigned mode = (p->srcPos == 0) ? 3 : (p->needInitState ? (p->needInitProp ? 2 : 1) : 0); in Lzma2EncInt_EncodeSubblock() 156 p->srcPos += unpackSize; in Lzma2EncInt_EncodeSubblock() 286 res = Progress(progress, p->srcPos, packTotal); in Lzma2Enc_EncodeMt1() 329 while (p->srcPos < srcSize) in MtCallbackImp_Code() 343 if (MtProgress_Set(&mainEncoder->mtCoder.mtProgress, index, p->srcPos, *destSize) != SZ_OK) in MtCallbackImp_Code()
|
/external/lzma/C/Util/7z/ |
D | 7zMain.c | 39 size_t destPos = 0, srcPos = 0; in Utf16_To_Utf8() local 44 if (srcPos == srcLen) in Utf16_To_Utf8() 49 value = src[srcPos++]; in Utf16_To_Utf8() 60 if (value >= 0xDC00 || srcPos == srcLen) in Utf16_To_Utf8() 62 c2 = src[srcPos++]; in Utf16_To_Utf8()
|
/external/deqp/modules/gles31/functional/ |
D | es31fCopyImageTests.cpp | 750 const IVec3& srcPos, in copyImageData() argument 759 const IVec3 srcTexelPos = srcPos / srcTexelBlockPixelSize; in copyImageData() 777 DE_ASSERT((srcPos.x() % srcTexelBlockPixelSize.x()) == 0); in copyImageData() 778 DE_ASSERT((srcPos.y() % srcTexelBlockPixelSize.y()) == 0); in copyImageData() 779 DE_ASSERT((srcPos.z() % srcTexelBlockPixelSize.z()) == 0); in copyImageData() 850 const IVec3& srcPos, in copyImage() argument 854 …gl.copyImageSubData(srcName, srcImageInfo.getTarget(), srcLevel, srcPos.x(), srcPos.y(), srcPos.z(… in copyImage() 861 srcImageData, srcImageInfo, srcLevel, srcPos, copySize); in copyImage() 1800 : srcPos (srcPos_) in Copy() 1809 IVec3 srcPos; member [all …]
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/ |
D | BlockRealMatrix.java | 824 int srcPos = srcStartRow * srcWidth + srcStartColumn; in copyBlockPart() local 827 System.arraycopy(srcBlock, srcPos, dstBlock, dstPos, length); in copyBlockPart() 828 srcPos += srcWidth; in copyBlockPart()
|
D | BlockFieldMatrix.java | 798 int srcPos = srcStartRow * srcWidth + srcStartColumn; in copyBlockPart() local 801 System.arraycopy(srcBlock, srcPos, dstBlock, dstPos, length); in copyBlockPart() 802 srcPos += srcWidth; in copyBlockPart()
|
/external/javassist/src/main/javassist/bytecode/ |
D | CodeIterator.java | 1302 abstract int write(int srcPos, byte[] code, int destPos, byte[] newcode); in write() argument 1327 int write(int srcPos, byte[] code, int destPos, byte[] newcode) { in write() argument
|
/external/valgrind/VEX/priv/ |
D | guest_mips_toIR.c | 14896 UInt srcPos = lsb; in disInstr_MIPS_WRK() local 14901 UChar lsAmt = 64 - (srcPos + dstSz); /* left shift amount; */ in disInstr_MIPS_WRK() 14914 UInt srcPos = lsb + 32; in disInstr_MIPS_WRK() local 14916 DIP("dextu r%u, r%u, %d, %d", rt, rs, srcPos, dstSz); in disInstr_MIPS_WRK() 14919 vassert(srcPos >= 32 && srcPos < 64); in disInstr_MIPS_WRK() 14921 vassert((srcPos + dstSz) > 32 && (srcPos + dstSz) <= 64); in disInstr_MIPS_WRK() 14923 UChar lsAmt = 64 - (srcPos + dstSz); /* left shift amount; */ in disInstr_MIPS_WRK()
|