Lines Matching defs:endpt
670 char *endpt;
674 dmxConfigCurrent->width = strtol(value, &endpt, 10);
675 dmxConfigCurrent->height = strtol(endpt+1, NULL, 10);
807 char *endpt;
816 endpt = value;
818 dmxConfigCurrentDisplay->scrnWidth = strtol(value, &endpt, 10);
819 dmxConfigCurrentDisplay->scrnHeight = strtol(endpt+1, &endpt, 10);
821 if (*endpt) {
822 dmxConfigCurrentDisplay->scrnXSign = (*endpt == '-') ? -1 : 1;
823 dmxConfigCurrentDisplay->scrnX = strtol(endpt+1, &endpt, 10);
824 dmxConfigCurrentDisplay->scrnYSign = (*endpt == '-') ? -1 : 1;
825 dmxConfigCurrentDisplay->scrnY = strtol(endpt+1, NULL, 10);
832 dmxConfigCurrentDisplay->rootXOrigin = strtol(value+1, &endpt, 10);
833 dmxConfigCurrentDisplay->rootYOrigin = strtol(endpt+1, NULL, 10);