Home
last modified time | relevance | path

Searched refs:dstBytes (Results 1 – 4 of 4) sorted by relevance

/external/tensorflow/tensorflow/lite/java/src/main/java/org/tensorflow/lite/
DTensor.java468 int dstBytes = in throwIfDstShapeIsIncompatible() local
470 if (bytes > dstBytes) { in throwIfDstShapeIsIncompatible()
475 name(), bytes, dstBytes)); in throwIfDstShapeIsIncompatible()
/external/swiftshader/src/Renderer/
DBlitter.cpp1212 int dstBytes = Surface::bytes(state.destFormat); in generate() local
1251 …ine + (dstQuadLayout ? (((j & Int(1)) << 1) + (i * 2) - (i & Int(1))) : RValue<Int>(i)) * dstBytes; in generate()
DSurface.cpp3451 int dstBytes = dst->bytes(dst->Surface::getInternalFormat()); in copyCubeEdge() local
3459 ASSERT(srcW == srcH && dstW == dstH && srcW == dstW && srcBytes == dstBytes); in copyCubeEdge()
3466 …int dstDelta = (((dstEdge == TOP) || (dstEdge == BOTTOM)) ? dstBytes : dstPitch) * (reverse ? -1 :… in copyCubeEdge()
3467 …int dstStart = ((dstEdge == BOTTOM) ? dstPitch * (dstH + 1) : ((dstEdge == RIGHT) ? dstBytes * (ds… in copyCubeEdge()
/external/swiftshader/src/Device/
DBlitter.cpp1625 int dstBytes = state.destFormat.bytes(); in generate() local
1660 Pointer<Byte> d = destLine + i * dstBytes; in generate()