Home
last modified time | relevance | path

Searched defs:padValue (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/graphics/
DBitmapTest.java289 directBuffer.put(directBuffer.limit() - 1, padValue); in testCopyWithDirectByteBuffer() local
299 assertEquals(directBuffer.get(directBuffer.limit() - 1), padValue); in testCopyWithDirectByteBuffer() local
320 final short padValue = 0x55aa; in testCopyWithDirectShortBuffer() local
328 directBuffer.put(directBuffer.limit() - 1, padValue); in testCopyWithDirectShortBuffer() local
338 assertEquals(directBuffer.get(directBuffer.limit() - 1), padValue); in testCopyWithDirectShortBuffer() local
359 final int padValue = 0x55aa5a5a; in testCopyWithDirectIntBuffer() local
367 directBuffer.put(directBuffer.limit() - 1, padValue); in testCopyWithDirectIntBuffer() local
377 assertEquals(directBuffer.get(directBuffer.limit() - 1), padValue); in testCopyWithDirectIntBuffer() local
405 heapBuffer.put(heapBuffer.limit() - 1, padValue); in testCopyWithHeapByteBuffer() local
414 assertEquals(heapBuffer.get(heapBuffer.limit() - 1), padValue); in testCopyWithHeapByteBuffer() local
[all …]
/frameworks/ml/nn/common/operations/
DReshape.cpp77 bool padGeneric(const T* inputData, const Shape& inputShape, const int32_t* paddings, T padValue, in padGeneric()
/frameworks/ml/nn/runtime/test/
DTestValidateOperations.cpp946 ANeuralNetworksOperandType padValue = getOpType(ANEURALNETWORKS_FLOAT32); in padV2OpTest() local