Lines Matching refs:tmp

676             char tmp[3] = { '\0', '\0', '\0' };  in _toColor()  local
677 tmp[0] = str[1]; in _toColor()
678 tmp[1] = str[1]; in _toColor()
679 *r = strtol(tmp, nullptr, 16); in _toColor()
680 tmp[0] = str[2]; in _toColor()
681 tmp[1] = str[2]; in _toColor()
682 *g = strtol(tmp, nullptr, 16); in _toColor()
683 tmp[0] = str[3]; in _toColor()
684 tmp[1] = str[3]; in _toColor()
685 *b = strtol(tmp, nullptr, 16); in _toColor()
690 char tmp[3] = { '\0', '\0', '\0' }; in _toColor() local
691 tmp[0] = str[1]; in _toColor()
692 tmp[1] = str[2]; in _toColor()
693 *r = strtol(tmp, nullptr, 16); in _toColor()
694 tmp[0] = str[3]; in _toColor()
695 tmp[1] = str[4]; in _toColor()
696 *g = strtol(tmp, nullptr, 16); in _toColor()
697 tmp[0] = str[5]; in _toColor()
698 tmp[1] = str[6]; in _toColor()
699 *b = strtol(tmp, nullptr, 16); in _toColor()
851 … Matrix tmp = {points[0], points[2], points[4], points[1], points[3], points[5], 0, 0, 1}; in _parseTransformationMatrix() local
852 *matrix *= tmp; in _parseTransformationMatrix()
855 Matrix tmp = {1, 0, points[0], 0, 1, 0, 0, 0, 1}; in _parseTransformationMatrix() local
856 *matrix *= tmp; in _parseTransformationMatrix()
858 Matrix tmp = {1, 0, points[0], 0, 1, points[1], 0, 0, 1}; in _parseTransformationMatrix() local
859 *matrix *= tmp; in _parseTransformationMatrix()
868 Matrix tmp = { c, -s, 0, s, c, 0, 0, 0, 1 }; in _parseTransformationMatrix() local
869 *matrix *= tmp; in _parseTransformationMatrix()
871 Matrix tmp = { 1, 0, points[1], 0, 1, points[2], 0, 0, 1 }; in _parseTransformationMatrix() local
872 *matrix *= tmp; in _parseTransformationMatrix()
873 tmp = { c, -s, 0, s, c, 0, 0, 0, 1 }; in _parseTransformationMatrix()
874 *matrix *= tmp; in _parseTransformationMatrix()
875 tmp = { 1, 0, -points[1], 0, 1, -points[2], 0, 0, 1 }; in _parseTransformationMatrix()
876 *matrix *= tmp; in _parseTransformationMatrix()
885 Matrix tmp = { sx, 0, 0, 0, sy, 0, 0, 0, 1 }; in _parseTransformationMatrix() local
886 *matrix *= tmp; in _parseTransformationMatrix()
890 Matrix tmp = { 1, deg, 0, 0, 1, 0, 0, 0, 1 }; in _parseTransformationMatrix() local
891 *matrix *= tmp; in _parseTransformationMatrix()
895 Matrix tmp = { 1, 0, 0, deg, 1, 0, 0, 0, 1 }; in _parseTransformationMatrix() local
896 *matrix *= tmp; in _parseTransformationMatrix()