Home
last modified time | relevance | path

Searched refs:totalData (Results 1 – 8 of 8) sorted by relevance

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
DGCMBlockCipher.java230 int totalData = len + bufOff; in getOutputSize() local
234 return totalData + macSize; in getOutputSize()
237 return totalData < macSize ? 0 : totalData - macSize; in getOutputSize()
250 int totalData = len + bufOff; in getUpdateOutputSize() local
253 if (totalData < macSize) in getUpdateOutputSize()
257 totalData -= macSize; in getUpdateOutputSize()
259 return totalData - totalData % BLOCK_SIZE; in getUpdateOutputSize()
DCCMBlockCipher.java182 int totalData = len + data.size(); in getOutputSize() local
186 return totalData + macSize; in getOutputSize()
189 return totalData < macSize ? 0 : totalData - macSize; in getOutputSize()
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/crypto/modes/
DGCMBlockCipher.java232 int totalData = len + bufOff; in getOutputSize() local
236 return totalData + macSize; in getOutputSize()
239 return totalData < macSize ? 0 : totalData - macSize; in getOutputSize()
252 int totalData = len + bufOff; in getUpdateOutputSize() local
255 if (totalData < macSize) in getUpdateOutputSize()
259 totalData -= macSize; in getUpdateOutputSize()
261 return totalData - totalData % BLOCK_SIZE; in getUpdateOutputSize()
DCCMBlockCipher.java184 int totalData = len + data.size(); in getOutputSize() local
188 return totalData + macSize; in getOutputSize()
191 return totalData < macSize ? 0 : totalData - macSize; in getOutputSize()
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/crypto/modes/
DGCMBlockCipher.java232 int totalData = len + bufOff; in getOutputSize() local
236 return totalData + macSize; in getOutputSize()
239 return totalData < macSize ? 0 : totalData - macSize; in getOutputSize()
252 int totalData = len + bufOff; in getUpdateOutputSize() local
255 if (totalData < macSize) in getUpdateOutputSize()
259 totalData -= macSize; in getUpdateOutputSize()
261 return totalData - totalData % BLOCK_SIZE; in getUpdateOutputSize()
DCCMBlockCipher.java184 int totalData = len + data.size(); in getOutputSize() local
188 return totalData + macSize; in getOutputSize()
191 return totalData < macSize ? 0 : totalData - macSize; in getOutputSize()
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/
DConnectivityManagerFacade.java960 long totalData = 0; in connectivityQueryDetailsForUid() local
965 totalData += bucket.getTxBytes() + bucket.getRxBytes(); in connectivityQueryDetailsForUid()
968 return totalData; in connectivityQueryDetailsForUid()
/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
DvktSpvAsmTypeTests.cpp1036 const deUint32 totalData = datasize * datasize; in combine() local
1037 const deUint32 totalPadding = (m_vectorSize == 3) ? (totalData / m_vectorSize) : 0; in combine()
1038 const deUint32 total = totalData + totalPadding; in combine()
1125 const deUint32 totalData = datasize * datasize * datasize; in combine() local
1126 const deUint32 totalPadding = (m_vectorSize == 3) ? (totalData / m_vectorSize) : 0; in combine()
1127 const deUint32 total = totalData + totalPadding; in combine()
1234 const deUint32 totalData = datasize * datasize; in combine() local
1235 const deUint32 totalPadding = (m_vectorSize == 3) ? (totalData / m_vectorSize) : 0; in combine()
1236 const deUint32 total = totalData + totalPadding; in combine()