Home
last modified time | relevance | path

Searched refs:ptdst (Results 1 – 7 of 7) sorted by relevance

/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/jdk/com/sun/crypto/provider/Cipher/AES/
H A DTestKATForGCM.java327 ByteBuffer ptdst; in executeByteBuffer() local
333 ptdst = ByteBuffer.allocateDirect(tv.plainText.length + offset); in executeByteBuffer()
338 ptdst = ByteBuffer.allocate(tv.plainText.length + offset); in executeByteBuffer()
357 ptdst.position(offset); in executeByteBuffer()
358 ptdst.mark(); in executeByteBuffer()
371 c.doFinal(ctdst, ptdst); // should fail if tag mismatched in executeByteBuffer()
373 ptdst.reset(); in executeByteBuffer()
375 if (ptdst.compareTo(ByteBuffer.wrap(tv.plainText)) != 0) { in executeByteBuffer()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/jdk/com/sun/crypto/provider/Cipher/AES/
H A DTestKATForGCM.java327 ByteBuffer ptdst; in executeByteBuffer() local
333 ptdst = ByteBuffer.allocateDirect(tv.plainText.length + offset); in executeByteBuffer()
338 ptdst = ByteBuffer.allocate(tv.plainText.length + offset); in executeByteBuffer()
357 ptdst.position(offset); in executeByteBuffer()
358 ptdst.mark(); in executeByteBuffer()
371 c.doFinal(ctdst, ptdst); // should fail if tag mismatched in executeByteBuffer()
373 ptdst.reset(); in executeByteBuffer()
375 if (ptdst.compareTo(ByteBuffer.wrap(tv.plainText)) != 0) { in executeByteBuffer()
/dports/graphics/azpainter/azpainter-2.1.7/src/widget/
H A DTransformViewArea_sub.c81 void TransformViewArea_affine_canv_to_source_dpt(TransformViewArea *p,mDoublePoint *ptdst,int x,int… in TransformViewArea_affine_canv_to_source_dpt() argument
95 ptdst->x = ( xx * p->dcos + yy * p->dsin) * p->scalex_div + p->centerx; in TransformViewArea_affine_canv_to_source_dpt()
96 ptdst->y = (-xx * p->dsin + yy * p->dcos) * p->scaley_div + p->centery; in TransformViewArea_affine_canv_to_source_dpt()
101 void TransformViewArea_affine_canv_to_source_pt(TransformViewArea *p,mPoint *ptdst,int x,int y) in TransformViewArea_affine_canv_to_source_pt() argument
107 ptdst->x = floor(dpt.x); in TransformViewArea_affine_canv_to_source_pt()
108 ptdst->y = floor(dpt.y); in TransformViewArea_affine_canv_to_source_pt()
127 void TransformViewArea_affine_canv_to_source_for_drag(TransformViewArea *p,mDoublePoint *ptdst,int … in TransformViewArea_affine_canv_to_source_for_drag() argument
142 ptdst->x = ( xx * p->dcos + yy * p->dsin) * p->dtmp[2] + p->centerx; in TransformViewArea_affine_canv_to_source_for_drag()
143 ptdst->y = (-xx * p->dsin + yy * p->dcos) * p->dtmp[3] + p->centery; in TransformViewArea_affine_canv_to_source_for_drag()
H A DTransformDlg_def.h128 void TransformViewArea_affine_canv_to_source_dpt(TransformViewArea *p,mDoublePoint *ptdst,int x,int…
129 void TransformViewArea_affine_canv_to_source_pt(TransformViewArea *p,mPoint *ptdst,int x,int y);
131 void TransformViewArea_affine_canv_to_source_for_drag(TransformViewArea *p,mDoublePoint *ptdst,int …
/dports/math/gap/gap-4.11.0/src/
H A Dtrans.cc3293 UInt4 *ptsrc, *ptdst, *ptp; in FuncTRANS_IMG_CONJ() local
3308 ptdst = ptsrc + max; in FuncTRANS_IMG_CONJ()
3318 ptdst[ptg2[i]] = 1; in FuncTRANS_IMG_CONJ()
3325 ptdst[ptg2[i]] = 1; in FuncTRANS_IMG_CONJ()
3332 ptdst[i] = 1; in FuncTRANS_IMG_CONJ()
3342 ptdst[ptg4[i]] = 1; in FuncTRANS_IMG_CONJ()
3349 ptdst[ptg4[i]] = 1; in FuncTRANS_IMG_CONJ()
3361 ptdst[i] = 1; in FuncTRANS_IMG_CONJ()
3371 ptdst[ptg2[i]] = 1; in FuncTRANS_IMG_CONJ()
3390 ptdst[i] = 1; in FuncTRANS_IMG_CONJ()
[all …]
/dports/graphics/azpainterb/azpainterb-1.1.3/src/image/
H A DTileImage_edit.c552 void TileImage_replaceImage_box(TileImage *p,mBox *box,mPoint *ptdst) in TileImage_replaceImage_box() argument
558 dy = ptdst->y; in TileImage_replaceImage_box()
563 dx = ptdst->x; in TileImage_replaceImage_box()
/dports/graphics/azpainterb/azpainterb-1.1.3/src/include/
H A DTileImage.h270 void TileImage_replaceImage_box(TileImage *p,mBox *box,mPoint *ptdst);