Lines Matching defs:codepoint
418 uint32_t codepoint = 0, count = 0;
427 codepoint = (codepoint << 6) + (unsigned char) **s;
433 return codepoint - offsets[count - 1];
1307 const uint32_t codepoint = _glfwKeySym2Unicode(keysym);
1308 if (codepoint != GLFW_INVALID_CODEPOINT)
1309 _glfwInputChar(window, codepoint, mods, plain);
2921 const uint32_t codepoint = _glfwKeySym2Unicode(keysym);
2922 if (codepoint == GLFW_INVALID_CODEPOINT)
2925 const size_t count = _glfwEncodeUTF8(_glfw.x11.keynames[key], codepoint);