| /OK3568_Linux_fs/external/xserver/test/ |
| H A D | fixes.c | 79 barrier.y1 = y - 50; in fixes_pointer_barrier_direction_test() 101 int x1, y1, x2, y2; in fixes_pointer_barriers_test() local 110 barrier.y1 = y - 50; in fixes_pointer_barriers_test() 116 y1 = y; in fixes_pointer_barriers_test() 118 assert(barrier_is_blocking(&barrier, x1, y1, x2, y2, &distance)); in fixes_pointer_barriers_test() 124 assert(!barrier_is_blocking(&barrier, x1, y1, x2, y2, &distance)); in fixes_pointer_barriers_test() 129 y1 = y + 100; in fixes_pointer_barriers_test() 131 assert(!barrier_is_blocking(&barrier, x1, y1, x2, y2, &distance)); in fixes_pointer_barriers_test() 136 y1 = y + 5; in fixes_pointer_barriers_test() 138 assert(barrier_is_blocking(&barrier, x1, y1, x2, y2, &distance)); in fixes_pointer_barriers_test() [all …]
|
| /OK3568_Linux_fs/kernel/arch/x86/crypto/ |
| H A D | sha256-avx2-asm.S | 111 y1 = %r14d define 160 rorx $11, e, y1 # y1 = e >> 11 # S1B 168 xor y1, y0 # y0 = (e>>25) ^ (e>>11) # S1 170 vpaddd X0, XTMP0, XTMP0 # XTMP0 = W[-7] + W[-16]# y1 = (e >> 6)# S1 171 rorx $6, e, y1 # y1 = (e >> 6) # S1 174 xor y1, y0 # y0 = (e>>25) ^ (e>>11) ^ (e>>6) # S1 175 rorx $22, a, y1 # y1 = a >> 22 # S0A 180 xor T1, y1 # y1 = (a>>22) ^ (a>>13) # S0 185 xor T1, y1 # y1 = (a>>22) ^ (a>>13) ^ (a>>2) # S0 192 add y1, h # h = k + w + h + S0 # -- [all …]
|
| H A D | sha512-avx2-asm.S | 96 y1 = %r14 define 187 rorx $18, e, y1 # y1 = e >> 18 # S1B 193 xor y1, y0 # y0 = (e>>41) ^ (e>>18) # S1 195 rorx $14, e, y1 # y1 = (e >> 14) # S1 198 xor y1, y0 # y0 = (e>>41) ^ (e>>18) ^ (e>>14) # S1 199 rorx $39, a, y1 # y1 = a >> 39 # S0A 203 xor T1, y1 # y1 = (a>>39) ^ (a>>34) # S0 207 xor T1, y1 # y1 = (a>>39) ^ (a>>34) ^ (a>>28) # S0 213 add y1, h # h = k + w + h + S0 # -- 249 rorx $18, e, y1 # y1 = e >> 18 # S1B [all …]
|
| H A D | sha256-avx-asm.S | 114 y1 = %r14d define 159 mov a, y1 # y1 = a 161 MY_ROR (22-13), y1 # y1 = a >> (22-13) 165 xor a, y1 # y1 = a ^ (a >> (22-13) 170 MY_ROR (13-2), y1 # y1 = (a >> (13-2)) ^ (a >> (22-2)) 173 xor a, y1 # y1 = a ^ (a >> (13-2)) ^ (a >> (22-2)) 176 MY_ROR 2, y1 # y1 = S0 = (a>>2) ^ (a>>13) ^ (a>>22) 188 add y1, h # h = h + S1 + CH + k + w + S0 194 mov a, y1 # y1 = a 198 MY_ROR (22-13), y1 # y1 = a >> (22-13) [all …]
|
| H A D | sha256-ssse3-asm.S | 107 y1 = %r14d define 153 mov a, y1 # y1 = a 155 ror $(22-13), y1 # y1 = a >> (22-13) 160 xor a, y1 # y1 = a ^ (a >> (22-13) 165 ror $(13-2), y1 # y1 = (a >> (13-2)) ^ (a >> (22-2)) 168 xor a, y1 # y1 = a ^ (a >> (13-2)) ^ (a >> (22-2)) 172 ror $2, y1 # y1 = S0 = (a>>2) ^ (a>>13) ^ (a>>22) 185 add y1, h # h = h + S1 + CH + k + w + S0 193 mov a, y1 # y1 = a 198 ror $(22-13), y1 # y1 = a >> (22-13) [all …]
|
| /OK3568_Linux_fs/external/xserver/glamor/ |
| H A D | glamor_transfer.c | 62 int y1 = MAX(boxes->y1 + dy_dst, box->y1); in glamor_upload_boxes() local 65 size_t ofs = (y1 - dy_dst + dy_src) * byte_stride; in glamor_upload_boxes() 70 if (x2 <= x1 || y2 <= y1) in glamor_upload_boxes() 76 x1 - box->x1, y1 - box->y1, in glamor_upload_boxes() 77 x2 - x1, y2 - y1, in glamor_upload_boxes() 81 for (; y1 < y2; y1++, ofs += byte_stride) in glamor_upload_boxes() 83 x1 - box->x1, y1 - box->y1, in glamor_upload_boxes() 120 box.y1 = 0; in glamor_upload_pixmap() 163 int y1 = MAX(boxes->y1 + dy_src, box->y1); in glamor_download_boxes() local 165 size_t ofs = (y1 - dy_src + dy_dst) * byte_stride; in glamor_download_boxes() [all …]
|
| H A D | glamor_largepixmap.c | 55 start_y = MAX(y, extent->y1); in __glamor_compute_clipped_regions() 119 temp_box.y1 = y + j * block_h; in __glamor_compute_clipped_regions() 121 temp_box.y2 = MIN(temp_box.y1 + block_h, end_y); in __glamor_compute_clipped_regions() 188 small_box.x1 = small_box.y1 = 0; in glamor_compute_clipped_regions_ext() 222 y = box_array[clipped_regions[i].block_idx].y1; in glamor_compute_clipped_regions_ext() 274 if (pad_box.y1 < 0 && pad_box.y2 <= 0) in _glamor_convert_pad_region() 276 else if (pad_box.y1 >= h && pad_box.y2 > h) in _glamor_convert_pad_region() 277 pad_box.y1 = h - 1; in _glamor_convert_pad_region() 408 y_center_shift = extent->y1 / pixmap_height; in _glamor_compute_clipped_regions() 416 if (extent->y1 < 0) in _glamor_compute_clipped_regions() [all …]
|
| H A D | glamor_utils.h | 61 h = priv->box.y2 - priv->box.y1; \ 82 *(_yoff_) = - (_priv_)->box.y1; \ 136 * @bxy1,bxy2: current box edge's x1/x2 or y1/y2 207 DEBUGF("y2 %d y1 %d fbo->height %d \n", priv->box.y2, \ 208 priv->box.y1, priv->fbo->height); \ 214 priv->box.y1, priv->box.y2); \ 223 DEBUGF("x1 y1 %d %d\n", \ 240 ty1 = d - priv->box.y1; \ 243 ty1 = d - priv->box.y1; \ 248 ty1 = (d - priv->box.y1); \ [all …]
|
| H A D | glamor_copy.c | 434 v[0] = box->x1; v[1] = box->y1; in glamor_copy_fbo_fbo_draw() 437 v[6] = box->x2; v[7] = box->y1; in glamor_copy_fbo_fbo_draw() 453 args.dy = dy + src_off_y - src_box->y1; in glamor_copy_fbo_fbo_draw() 462 .y1 = max(-args.dy, bounds.y1), in glamor_copy_fbo_fbo_draw() 464 .y2 = min(-args.dy + src_box->y2 - src_box->y1, bounds.y2), in glamor_copy_fbo_fbo_draw() 466 if (scissor.x1 >= scissor.x2 || scissor.y1 >= scissor.y2) in glamor_copy_fbo_fbo_draw() 475 scissor.y1 + dst_off_y, in glamor_copy_fbo_fbo_draw() 477 scissor.y2 - scissor.y1); in glamor_copy_fbo_fbo_draw() 543 bounds.y1 = min(bounds.y1, box[n].y1); in glamor_copy_fbo_fbo_temp() 551 bounds.y2 - bounds.y1, in glamor_copy_fbo_fbo_temp() [all …]
|
| /OK3568_Linux_fs/external/xserver/fb/ |
| H A D | fbimage.c | 91 int x1, y1, x2, y2; in fbPutZImage() local 98 y1 = y; in fbPutZImage() 103 if (y1 < pbox->y1) in fbPutZImage() 104 y1 = pbox->y1; in fbPutZImage() 109 if (x1 >= x2 || y1 >= y2) in fbPutZImage() 111 fbBltStip(src + (y1 - y) * srcStride, in fbPutZImage() 114 dst + (y1 + dstYoff) * dstStride, in fbPutZImage() 117 (x2 - x1) * dstBpp, (y2 - y1), alu, pm, dstBpp); in fbPutZImage() 141 int x1, y1, x2, y2; in fbPutXYImage() local 168 y1 = y; in fbPutXYImage() [all …]
|
| H A D | fbcopy.c | 60 (pbox->y1 + dy + srcYoff), (pbox->x1 + dstXoff), in fbCopyNtoN() 61 (pbox->y1 + dstYoff), (pbox->x2 - pbox->x1), in fbCopyNtoN() 62 (pbox->y2 - pbox->y1))) in fbCopyNtoN() 69 fbBlt(src + (pbox->y1 + dy + srcYoff) * srcStride, in fbCopyNtoN() 72 dst + (pbox->y1 + dstYoff) * dstStride, in fbCopyNtoN() 76 (pbox->y2 - pbox->y1), alu, pm, dstBpp, reverse, upsidedown); in fbCopyNtoN() 110 fbBlt(src + (pbox->y1 + dy + srcYoff) * srcStride, in fbCopy1toN() 113 dst + (pbox->y1 + dstYoff) * dstStride, in fbCopy1toN() 117 (pbox->y2 - pbox->y1), in fbCopy1toN() 123 fbBltOne((FbStip *) (src + (pbox->y1 + dy + srcYoff) * srcStride), in fbCopy1toN() [all …]
|
| H A D | fbseg.c | 42 int axis, int x1, int y1, int e, int e1, int e3, int len) in fbBresSolid() argument 55 dst += ((y1 + dstYoff) * dstStride); in fbBresSolid() 113 int signdy, int axis, int x1, int y1, int e, int e1, int e3, int len) in fbBresDash() argument 136 dst += ((y1 + dstYoff) * dstStride); in fbBresDash() 186 int signdy, int axis, int x1, int y1, int e, int e1, int e3, int len) in fbBresFill() argument 189 fbFill(pDrawable, pGC, x1, y1, 1, 1); in fbBresFill() 195 y1 += signdy; in fbBresFill() 199 y1 += signdy; in fbBresFill() 227 int axis, int x1, int y1, int e, int e1, int e3, int len) in fbBresFillDash() argument 258 fbFill(pDrawable, pGC, x1, y1, 1, 1); in fbBresFillDash() [all …]
|
| /OK3568_Linux_fs/external/xserver/miext/damage/ |
| H A D | damage.c | 55 (a)->y1 == (b)->y1 && \ 231 box.y1 = draw_y; in _damageRegionAppend() 248 pDamageRegion->extents.y2 - pDamageRegion->extents.y1, in _damageRegionAppend() 249 pDamageRegion->extents.x1, pDamageRegion->extents.y1, in _damageRegionAppend() 442 if(box.y1 < extents->y1) box.y1 = extents->y1; \ 449 box.y1 += pDrawable->y; \ 459 (((box.x2 - box.x1) > 0) && ((box.y2 - box.y1) > 0)) 469 if(box.y1 < extents->y1) box.y1 = extents->y1; \ 496 box.y1 = yDst + pDst->pDrawable->y; in damageComposite() 498 box.y2 = box.y1 + height; in damageComposite() [all …]
|
| /OK3568_Linux_fs/external/xserver/miext/rootless/ |
| H A D | rootlessGC.c | 434 box.y2 = box.y1 = ppt->y; in RootlessFillSpans() 443 if (box.y1 > ppt->y) in RootlessFillSpans() 444 box.y1 = ppt->y; in RootlessFillSpans() 487 box.y2 = box.y1 = ppt->y; in RootlessSetSpans() 496 if (box.y1 > ppt->y) in RootlessSetSpans() 497 box.y1 = ppt->y; in RootlessSetSpans() 530 box.y1 = y + dst->y; in RootlessPutImage() 531 box.y2 = box.y1 + h; in RootlessPutImage() 570 box.y1 = dsty + dst->y; in RootlessCopyArea() 571 box.y2 = box.y1 + h; in RootlessCopyArea() [all …]
|
| /OK3568_Linux_fs/external/rk_pcba_test/pcba_minui/ |
| H A D | touch_test.c | 41 int draw_line(int x1, int y1, int x2, int y2) in draw_line() argument 45 // printf("line: (%d,%d)-(%d,%d)\n", x1, y1, x2, y2); in draw_line() 49 for(y = MIN(y1, y2); y <= MAX(y1, y2); y++) in draw_line() 51 }else if(y1 == y2){ in draw_line() 52 y = y1; in draw_line() 55 }else if(ABS(x1-x2) > ABS(y1-y2)){ in draw_line() 57 y = ((y2 - y1) * (x - x1)) / (x2 - x1) + y1; in draw_line() 61 for(y = MIN(y1, y2); y <= MAX(y1, y2); y++){ in draw_line() 62 x = ((x2 - x1) * (y - y1)) / (y2 - y1) + x1; in draw_line()
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/ |
| H A D | drm_rect.c | 47 r1->y1 = max(r1->y1, r2->y1); in drm_rect_intersect() 105 diff = clip->y1 - dst->y1; in drm_rect_clip_scaled() 110 src->y1 = src->y2 - new_src_h; in drm_rect_clip_scaled() 111 dst->y1 += diff; in drm_rect_clip_scaled() 126 src->y2 = src->y1 + new_src_h; in drm_rect_clip_scaled() 268 r->y1 = height - tmp.y2; in drm_rect_rotate() 269 r->y2 = height - tmp.y1; in drm_rect_rotate() 278 r->x1 = tmp.y1; in drm_rect_rotate() 280 r->y1 = width - tmp.x2; in drm_rect_rotate() 287 r->y1 = height - tmp.y2; in drm_rect_rotate() [all …]
|
| /OK3568_Linux_fs/external/xserver/dix/ |
| H A D | region.c | 112 * y coordinate first (y1), and then by left side x coordinate (x1). 115 * band has the same top y coordinate (y1), and each has the same bottom y 122 * the y1 to y2 area spanned by the band), then the rectangle may be broken 155 ((r1)->y2 <= (r2)->y1) || \ 156 ((r1)->y1 >= (r2)->y2) ) ) 163 ((r)->y1 <= y) ) 169 ((r1)->y1 <= (r2)->y1) && \ 185 pNextRect->y1 = ny1; \ 285 rgn->extents.x1, rgn->extents.y1, rgn->extents.x2, rgn->extents.y2); in RegionPrint() 288 rects[i].x1, rects[i].y1, rects[i].x2, rects[i].y2); in RegionPrint() [all …]
|
| /OK3568_Linux_fs/external/xserver/exa/ |
| H A D | exa_accel.c | 84 extentY1 = pextent->y1; in exaFillSpans() 115 if (pbox->y1 <= fullY1 && fullY1 < pbox->y2) { in exaFillSpans() 194 int y1 = y; in exaDoPutImage() local 202 if (y1 < pbox->y1) in exaDoPutImage() 203 y1 = pbox->y1; in exaDoPutImage() 208 if (x1 >= x2 || y1 >= y2) in exaDoPutImage() 211 src = bits + (y1 - y) * src_stride + (x1 - x) * (bpp / 8); in exaDoPutImage() 212 ok = pExaScr->info->UploadToScreen(pPix, x1 + xoff, y1 + yoff, in exaDoPutImage() 213 x2 - x1, y2 - y1, src, src_stride); in exaDoPutImage() 260 if (dx >= 0 && (src_off_y + pbox->y1 + dy) != pbox->y1) { in exaCopyNtoNTwoDir() [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/input/devices/ |
| H A D | alps.rst | 96 byte 2: Y7 Y6 Y5 Y4 Y3 Y2 Y1 Y0 113 byte 4: 0 y6 y5 y4 y3 y2 y1 y0 125 byte 4: 0 y6 y5 y4 y3 y2 y1 y0 144 byte 5: Y7 Y6 Y5 Y4 Y3 Y2 Y1 Y0 146 byte 7: 0 y6 y5 y4 y3 y2 y1 y0 167 byte 4: 0 mt x3 x2 y3 y2 y1 y0 181 byte 2: 0 y7 y6 y5 y4 y3 y2 y1 194 byte 2: 0 y6 y5 y4 y3 y2 y1 y0 210 byte 3: 0 1 x3 x2 y3 y2 y1 y0 221 byte 1: 0 x1 x0 y4 y3 y2 y1 y0 [all …]
|
| /OK3568_Linux_fs/app/forlinx/flapp/src/plugins/allwinner/camera/CameraUI/src/ |
| H A D | settings.cpp | 94 …" background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, stop:0 #0F7DBE, stop:1 #1582C3);… in on_previewButton_clicked() 100 …" background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, stop:0 #0F7DBE, stop:1 #1582C3);… in on_previewButton_clicked() 106 …" background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, stop:0 #0F7DBE, stop:1 #1582C3);… in on_previewButton_clicked() 112 …" background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, stop:0 #0F7DBE, stop:1 #1582C3);… in on_previewButton_clicked() 126 …" background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, stop:0 #0F7DBE, stop:1 #1582C3);… in on_AdasButton_clicked() 132 …" background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, stop:0 #0F7DBE, stop:1 #1582C3);… in on_AdasButton_clicked() 138 …" background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, stop:0 #0F7DBE, stop:1 #1582C3);… in on_AdasButton_clicked() 144 …" background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, stop:0 #0F7DBE, stop:1 #1582C3);… in on_AdasButton_clicked() 158 …" background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, stop:0 #0F7DBE, stop:1 #1582C3);… in on_reverseLineButton_clicked() 164 …" background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, stop:0 #0F7DBE, stop:1 #1582C3);… in on_reverseLineButton_clicked() [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-multimedia/libtiff/tiff/ |
| H A D | CVE-2022-2869.patch | 24 y1 = _TIFFClampDoubleToUInt32(crop->corners[i].Y1); 49 - if (y1 < 1) 50 - crop->regionlist[i].y1 = 0; 52 - crop->regionlist[i].y1 = (uint32_t) (y1 - 1); 53 + if (y1 > image->length - 1) 54 + crop->regionlist[i].y1 = image->length - 1; 55 + else if (y1 > 0) 56 + crop->regionlist[i].y1 = (uint32_t)(y1 - 1); 65 zlength = crop->regionlist[i].y2 - crop->regionlist[i].y1 + 1;
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/selftests/ |
| H A D | test-drm_rect.c | 53 src.y1 != 0 || src.y2 != 1 << 16, in igt_drm_rect_clip_scaled_not_clipped() 56 dst.y1 != 0 || dst.y2 != 1, in igt_drm_rect_clip_scaled_not_clipped() 69 src.y1 != 0 || src.y2 != 2 << 16, in igt_drm_rect_clip_scaled_not_clipped() 72 dst.y1 != 0 || dst.y2 != 1, in igt_drm_rect_clip_scaled_not_clipped() 85 src.y1 != 0 || src.y2 != 1 << 16, in igt_drm_rect_clip_scaled_not_clipped() 88 dst.y1 != 0 || dst.y2 != 2, in igt_drm_rect_clip_scaled_not_clipped() 109 src.y1 != 0 || src.y2 != 1 << 16, in igt_drm_rect_clip_scaled_clipped() 112 dst.y1 != 0 || dst.y2 != 1, in igt_drm_rect_clip_scaled_clipped() 125 src.y1 != 1 << 16 || src.y2 != 2 << 16, in igt_drm_rect_clip_scaled_clipped() 128 dst.y1 != 1 || dst.y2 != 2, in igt_drm_rect_clip_scaled_clipped() [all …]
|
| /OK3568_Linux_fs/external/xserver/Xi/ |
| H A D | xibarriers.c | 146 return barrier->y1 == barrier->y2; in barrier_is_horizontal() 157 * x1/y1 → x2/y2 represents. 160 barrier_get_direction(int x1, int y1, int x2, int y2) in barrier_get_direction() argument 169 if (y2 > y1) in barrier_get_direction() 171 if (y2 < y1) in barrier_get_direction() 179 * x1/y1 → x2/y2. This function only tests whether the directions could be 210 * Test if the movement vector x1/y1 → x2/y2 is intersecting with the 215 * @param y1 Y start coordinate of movement vector 224 int x1, int y1, int x2, int y2, double *distance) in barrier_is_blocking() argument 236 y = F(t, y1, y2); in barrier_is_blocking() [all …]
|
| /OK3568_Linux_fs/kernel/include/drm/ |
| H A D | drm_rect.h | 40 * @y1: vertical starting coordinate (inclusive) 44 int x1, y1, x2, y2; member 55 #define DRM_RECT_ARG(r) drm_rect_width(r), drm_rect_height(r), (r)->x1, (r)->y1 72 (r)->y1 >> 16, (((r)->y1 & 0xffff) * 15625) >> 10 86 r->y1 = y; in drm_rect_init() 106 r->y1 -= dh >> 1; in drm_rect_adjust_size() 123 r->y1 += dy; in drm_rect_translate() 139 drm_rect_translate(r, x - r->x1, y - r->y1); in drm_rect_translate_to() 153 r->y1 /= vert; in drm_rect_downscale() 179 return r->y2 - r->y1; in drm_rect_height() [all …]
|
| /OK3568_Linux_fs/app/forlinx/flapp/src/plugins/allwinner/camera/CameraUI/ui/ |
| H A D | settings.ui | 65 background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, stop:0 #0F7DBE, stop:1 #1582C3); 74 background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, stop:0 #0F7DBE, stop:1 #1582C3); 78 background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, stop:0 #50A3F0, stop:1 #489CEA); 82 background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, stop:0 #0F7DBE, stop:1 #1582C3); 121 background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, stop:0 #0F7DBE, stop:1 #1582C3); 130 background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, stop:0 #0F7DBE, stop:1 #1582C3); 134 background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, stop:0 #50A3F0, stop:1 #489CEA); 138 background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, stop:0 #0F7DBE, stop:1 #1582C3); 177 background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, stop:0 #0F7DBE, stop:1 #1582C3); 186 background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, stop:0 #0F7DBE, stop:1 #1582C3); [all …]
|