Home
last modified time | relevance | path

Searched refs:endx (Results 1 – 6 of 6) sorted by relevance

/OK3568_Linux_fs/yocto/poky/meta/recipes-multimedia/libtiff/tiff/
H A Db258ed69a485a9cfb299d9f060eb2a46c54e5903.patch23 off->endx = endx;
26 - crop_width = endx - startx + 1;
29 if (endx + 1 <= startx)
35 + crop_width = endx - startx + 1;
H A DCVE-2022-2869.patch68 crop_width = endx - startx + 1;
72 + if (endx + 1 <= startx)
H A D0001-tiffcrop-Fix-issue-330-and-some-more-from-320-to-349.patch411 + if (crop->regionlist[i].x1 > offsets.endx) {
412 + crop->regionlist[i].x1 = offsets.endx;
421 + } else if (crop->regionlist[i].x2 > offsets.endx) {
422 + crop->regionlist[i].x2 = offsets.endx;
434 crop->regionlist[i].x2 = offsets.endx;
506 + if (uaux <= offsets.endx + 1) {
507 + crop->regionlist[i].x1 = offsets.endx - uaux + 1;
523 + if (uaux <= offsets.endx) {
524 + crop->regionlist[i].x2 = offsets.endx - uaux;
544 crop->regionlist[i].x2 = offsets.endx;
/OK3568_Linux_fs/u-boot/scripts/dtc/
H A Dutil.c142 char *endx; in get_oct_char() local
148 val = strtol(x, &endx, 8); in get_oct_char()
150 assert(endx > x); in get_oct_char()
152 (*i) += endx - x; in get_oct_char()
165 char *endx; in get_hex_char() local
171 val = strtol(x, &endx, 16); in get_hex_char()
172 if (!(endx > x)) in get_hex_char()
175 (*i) += endx - x; in get_hex_char()
/OK3568_Linux_fs/kernel/scripts/dtc/
H A Dutil.c147 char *endx; in get_oct_char() local
153 val = strtol(x, &endx, 8); in get_oct_char()
155 assert(endx > x); in get_oct_char()
157 (*i) += endx - x; in get_oct_char()
170 char *endx; in get_hex_char() local
176 val = strtol(x, &endx, 16); in get_hex_char()
177 if (!(endx > x)) in get_hex_char()
180 (*i) += endx - x; in get_hex_char()
/OK3568_Linux_fs/kernel/arch/x86/pci/
H A Damd_bus.c245 u64 endx = 0; in early_root_info_init() local
261 endx = fam10h_mmconf_start - 1; in early_root_info_init()
262 update_res(info, start, endx, IORESOURCE_MEM, 0); in early_root_info_init()
264 endx + 1); in early_root_info_init()
265 printk(KERN_CONT " ==> [%llx, %llx]", start, endx); in early_root_info_init()
271 printk(KERN_CONT " %s [%llx, %llx]", endx ? "and" : "==>", start, end); in early_root_info_init()
273 printk(KERN_CONT "%s\n", endx?"":" ==> none"); in early_root_info_init()