Home
last modified time | relevance | path

Searched refs:initialLength (Results 1 – 3 of 3) sorted by relevance

/packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
DPublicApiFunctionalTest.java188 int initialLength = 5; in testInterruptedDownload() local
189 enqueueInterruptedDownloadResponses(initialLength); in testInterruptedDownload()
193 assertEquals(initialLength, in testInterruptedDownload()
205 headers.contains("Range: bytes=" + initialLength + "-")); in testInterruptedDownload()
218 private void enqueueInterruptedDownloadResponses(int initialLength) { in enqueueInterruptedDownloadResponses() argument
220 enqueueResponse(buildPartialResponse(0, initialLength)); in enqueueInterruptedDownloadResponses()
222 enqueueResponse(buildPartialResponse(initialLength, FILE_CONTENT.length())); in enqueueInterruptedDownloadResponses()
/packages/modules/NeuralNetworks/runtime/
DExecutionPlan.cpp287 const Dimensions& initialDimensions, uint32_t initialLength, in declare() argument
292 << ", initialLength = " << initialLength << ", alignment = " << alignment in declare()
295 CHECK_GT(initialLength, 0u); in declare()
296 const uint32_t paddedLength = roundUp(initialLength, padding); in declare()
DExecutionPlan.h146 const Dimensions& initialDimensions, uint32_t initialLength, uint32_t alignment,