Home
last modified time | relevance | path

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

/packages/modules/NeuralNetworks/common/operations/
DSplit.cpp43 const Scalar* inputPtr = inputData; in splitGeneric() local
47 memcpy(outputDataPtrs->at(i) + k * copySize, inputPtr, copySize * sizeof(Scalar)); in splitGeneric()
48 inputPtr += copySize; in splitGeneric()
DTransposeConv2D.cpp224 const T* inputPtr = inputData; in transposeConvNhwc() local
246 (static_cast<int32_t>(*inputPtr) + inputOffset) * in transposeConvNhwc()
254 inputPtr++; in transposeConvNhwc()
366 const T* inputPtr = inputData; in transposeConvQuant8PerChannelNhwc() local
388 (static_cast<int32_t>(*inputPtr) + inputOffset) * in transposeConvQuant8PerChannelNhwc()
395 inputPtr++; in transposeConvQuant8PerChannelNhwc()
/packages/modules/NeuralNetworks/runtime/test/android_fuzzing/
DDriverFuzzTest.cpp234 uint8_t* const inputPtr = static_cast<uint8_t*>(static_cast<void*>(mappedInput->getPointer())); in createRequest() local
235 CHECK(inputPtr != nullptr); in createRequest()
243 std::copy(begin, end, inputPtr + inputs[i].location.offset); in createRequest()