/external/kotlinx.coroutines/benchmarks/src/jmh/java/benchmarks/flow/scrabble/optimizations/ |
D | FlowableSplit.java | 72 String leftOver; field in FlowableSplit.SplitSubscriber 133 String lo = leftOver; in tryOnNext() 149 leftOver = null; in tryOnNext() 153 leftOver = a[0]; in tryOnNext() 156 leftOver = a[a.length - 1]; in tryOnNext() 168 String lo = leftOver; in onError() 170 leftOver = null; in onError() 182 String lo = leftOver; in onComplete() 184 leftOver = null; in onComplete()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/paddings/ |
D | PaddedBufferedBlockCipher.java | 97 int leftOver = total % buf.length; in getOutputSize() local 99 if (leftOver == 0) in getOutputSize() 109 return total - leftOver + buf.length; in getOutputSize() 124 int leftOver = total % buf.length; in getUpdateOutputSize() local 126 if (leftOver == 0) in getUpdateOutputSize() 131 return total - leftOver; in getUpdateOutputSize()
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/crypto/paddings/ |
D | PaddedBufferedBlockCipher.java | 99 int leftOver = total % buf.length; in getOutputSize() local 101 if (leftOver == 0) in getOutputSize() 111 return total - leftOver + buf.length; in getOutputSize() 126 int leftOver = total % buf.length; in getUpdateOutputSize() local 128 if (leftOver == 0) in getUpdateOutputSize() 133 return total - leftOver; in getUpdateOutputSize()
|
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/crypto/paddings/ |
D | PaddedBufferedBlockCipher.java | 99 int leftOver = total % buf.length; in getOutputSize() local 101 if (leftOver == 0) in getOutputSize() 111 return total - leftOver + buf.length; in getOutputSize() 126 int leftOver = total % buf.length; in getUpdateOutputSize() local 128 if (leftOver == 0) in getUpdateOutputSize() 133 return total - leftOver; in getUpdateOutputSize()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/ |
D | BufferedBlockCipher.java | 114 int leftOver; in getUpdateOutputSize() local 120 leftOver = total % buf.length - (cipher.getBlockSize() + 2); in getUpdateOutputSize() 124 leftOver = total % buf.length; in getUpdateOutputSize() 129 leftOver = total % buf.length; in getUpdateOutputSize() 132 return total - leftOver; in getUpdateOutputSize()
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/crypto/ |
D | BufferedBlockCipher.java | 116 int leftOver; in getUpdateOutputSize() local 122 leftOver = total % buf.length - (cipher.getBlockSize() + 2); in getUpdateOutputSize() 126 leftOver = total % buf.length; in getUpdateOutputSize() 131 leftOver = total % buf.length; in getUpdateOutputSize() 134 return total - leftOver; in getUpdateOutputSize()
|
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/crypto/ |
D | BufferedBlockCipher.java | 116 int leftOver; in getUpdateOutputSize() local 122 leftOver = total % buf.length - (cipher.getBlockSize() + 2); in getUpdateOutputSize() 126 leftOver = total % buf.length; in getUpdateOutputSize() 131 leftOver = total % buf.length; in getUpdateOutputSize() 134 return total - leftOver; in getUpdateOutputSize()
|
/external/arm-trusted-firmware/drivers/brcm/emmc/ |
D | emmc_chal_sd.c | 727 uint32_t i, leftOver = 0, blockSize, size, value = 0; in chal_sd_write_buffer() local 745 leftOver = length % 4; in chal_sd_write_buffer() 764 if (leftOver > 0) { in chal_sd_write_buffer() 765 value = ((*(uint32_t *)(data + i)) << (4 - leftOver)); in chal_sd_write_buffer() 782 uint32_t i, size, leftOver, blockSize, value; in chal_sd_read_buffer() local 797 leftOver = 0; in chal_sd_read_buffer() 799 leftOver = length % 4; in chal_sd_read_buffer() 810 if (leftOver > 0) { in chal_sd_read_buffer() 820 for (j = 0; j < leftOver; j++) { in chal_sd_read_buffer()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/ |
D | CTSBlockCipher.java | 52 int leftOver = total % buf.length; in getUpdateOutputSize() local 54 if (leftOver == 0) in getUpdateOutputSize() 59 return total - leftOver; in getUpdateOutputSize()
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/crypto/modes/ |
D | CTSBlockCipher.java | 54 int leftOver = total % buf.length; in getUpdateOutputSize() local 56 if (leftOver == 0) in getUpdateOutputSize() 61 return total - leftOver; in getUpdateOutputSize()
|
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/crypto/modes/ |
D | CTSBlockCipher.java | 54 int leftOver = total % buf.length; in getUpdateOutputSize() local 56 if (leftOver == 0) in getUpdateOutputSize() 61 return total - leftOver; in getUpdateOutputSize()
|
/external/llvm-project/openmp/libomptarget/deviceRTLs/common/src/ |
D | loop.cu | 79 T leftOver = loopSize - chunk * numberOfEntities; in ForStaticNoChunk() local 81 if (entityId < leftOver) { in ForStaticNoChunk() 85 lb = lb + entityId * chunk + leftOver; in ForStaticNoChunk()
|