Home
last modified time | relevance | path

Searched refs:dstIndex (Results 1 – 11 of 11) sorted by relevance

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
DBlowfishEngine.java515 int dstIndex) in encryptBlock() argument
530 Bits32ToBytes(xr, dst, dstIndex); in encryptBlock()
531 Bits32ToBytes(xl, dst, dstIndex + 4); in encryptBlock()
543 int dstIndex) in decryptBlock() argument
558 Bits32ToBytes(xr, dst, dstIndex); in decryptBlock()
559 Bits32ToBytes(xl, dst, dstIndex+4); in decryptBlock()
DTwofishEngine.java449 int dstIndex) in encryptBlock() argument
473 Bits32ToBytes(x2 ^ gSubKeys[OUTPUT_WHITEN], dst, dstIndex); in encryptBlock()
474 Bits32ToBytes(x3 ^ gSubKeys[OUTPUT_WHITEN + 1], dst, dstIndex + 4); in encryptBlock()
475 Bits32ToBytes(x0 ^ gSubKeys[OUTPUT_WHITEN + 2], dst, dstIndex + 8); in encryptBlock()
476 Bits32ToBytes(x1 ^ gSubKeys[OUTPUT_WHITEN + 3], dst, dstIndex + 12); in encryptBlock()
488 int dstIndex) in decryptBlock() argument
512 Bits32ToBytes(x0 ^ gSubKeys[INPUT_WHITEN], dst, dstIndex); in decryptBlock()
513 Bits32ToBytes(x1 ^ gSubKeys[INPUT_WHITEN + 1], dst, dstIndex + 4); in decryptBlock()
514 Bits32ToBytes(x2 ^ gSubKeys[INPUT_WHITEN + 2], dst, dstIndex + 8); in decryptBlock()
515 Bits32ToBytes(x3 ^ gSubKeys[INPUT_WHITEN + 3], dst, dstIndex + 12); in decryptBlock()
/external/skia/tools/debugger/
DSkOverdrawMode.cpp57 SkDEBUGCODE(int dstIndex = )this->registerChildProcessor(dst); in GrOverdrawFP()
58 SkASSERT(0 == dstIndex); in GrOverdrawFP()
/external/skia/src/effects/
DSkArithmeticMode_gpu.cpp93 SkDEBUGCODE(int dstIndex = )this->registerChildProcessor(dst); in GrArithmeticFP()
94 SkASSERT(0 == dstIndex); in GrArithmeticFP()
DSkPixelXorXfermode.cpp160 SkDEBUGCODE(int dstIndex = )this->registerChildProcessor(dst); in PixelXorFP()
161 SkASSERT(0 == dstIndex); in PixelXorFP()
DSkAvoidXfermode.cpp231 SkDEBUGCODE(int dstIndex = )this->registerChildProcessor(dst); in AvoidFP()
232 SkASSERT(0 == dstIndex); in AvoidFP()
/external/skia/src/gpu/effects/
DGrXfermodeFragmentProcessor.cpp149 SkDEBUGCODE(int dstIndex = )this->registerChildProcessor(dst); in ComposeOneFragmentProcessor()
150 SkASSERT(0 == dstIndex); in ComposeOneFragmentProcessor()
/external/icu/icu4c/source/test/cintltst/
Dnucnvtst.c3462 int32_t dstIndex=0; in unescape() local
3483 if(dstIndex < dstLen){ in unescape()
3485 dst[dstIndex++] = U16_LEAD(c); in unescape()
3486 if(dstIndex<dstLen){ in unescape()
3487 dst[dstIndex]=U16_TRAIL(c); in unescape()
3492 dst[dstIndex]=(UChar)c; in unescape()
3498 dstIndex++; /* for preflighting */ in unescape()
3500 return dstIndex; in unescape()
/external/dng_sdk/source/
Ddng_lens_correction.cpp1339 uint32 dstIndex = 0; in ProcessArea() local
1341 for (int32 dstCol = dstArea.l; dstCol < dstArea.r; dstCol++, dstIndex++) in ProcessArea()
1419 dPtr [dstIndex] = Pin_real32 (total); in ProcessArea()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/
DUCharacter.java6171 public static final int toChars(int cp, char[] dst, int dstIndex) { in toChars() argument
6172 return Character.toChars(cp, dst, dstIndex); in toChars()
/external/icu/android_icu4j/src/main/java/android/icu/lang/
DUCharacter.java5508 public static final int toChars(int cp, char[] dst, int dstIndex) { in toChars() argument
5509 return Character.toChars(cp, dst, dstIndex); in toChars()