HomeSort by relevance Sort by last modified time
    Searched refs:totalData (Results 1 - 3 of 3) sorted by null

  /packages/apps/Settings/src/com/android/settings/widget/
ChartNetworkSeriesView.java 197 long totalData = 0;
216 totalData += entry.rxBytes + entry.txBytes;
219 final float endY = mVert.convertToPoint(totalData);
247 Log.d(TAG, "onLayout() rendered with bounds=" + bounds.toString() + " and totalData="
248 + totalData);
255 mMax = totalData;
279 totalData += (longWindow * 7 + shortWindow * 3) / 10;
282 lastY = mVert.convertToPoint(totalData);
287 mMaxEstimate = totalData;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
GCMBlockCipher.java 187 int totalData = len + bufOff;
191 return totalData + macSize;
194 return totalData < macSize ? 0 : totalData - macSize;
199 int totalData = len + bufOff;
202 if (totalData < macSize)
206 totalData -= macSize;
208 return totalData - totalData % BLOCK_SIZE;
CCMBlockCipher.java 171 int totalData = len + data.size();
175 return totalData + macSize;
178 return totalData < macSize ? 0 : totalData - macSize;

Completed in 481 milliseconds