Lines Matching defs:count
418 uint32_t codepoint = 0, count = 0;
429 count++;
432 assert(count <= 6);
433 return codepoint - offsets[count - 1];
636 int count = 0;
641 states[count++] = _glfw.x11.NET_WM_STATE_ABOVE;
649 states[count++] = _glfw.x11.NET_WM_STATE_MAXIMIZED_VERT;
650 states[count++] = _glfw.x11.NET_WM_STATE_MAXIMIZED_HORZ;
655 if (count)
659 PropModeReplace, (unsigned char*) states, count);
836 const unsigned long count =
842 for (unsigned long i = 0; i < count; i += 2)
874 count);
1086 if (_glfw.x11.saver.count == 0)
1101 _glfw.x11.saver.count++;
1131 _glfw.x11.saver.count--;
1133 if (_glfw.x11.saver.count == 0)
1269 int count;
1274 count = Xutf8LookupString(window->x11.ic,
1281 chars = _glfw_calloc(count + 1, 1);
1282 count = Xutf8LookupString(window->x11.ic,
1284 chars, count,
1291 chars[count] = '\0';
1292 while (c - chars < count)
1577 unsigned long count;
1590 count = _glfwGetWindowPropertyX11(_glfw.x11.xdnd.source,
1597 count = 3;
1601 for (unsigned int i = 0; i < count; i++)
1707 int count;
1708 char** paths = _glfwParseUriList(data, &count);
1710 _glfwInputDrop(window, count, (const char**) paths);
1712 for (int i = 0; i < count; i++)
2105 void _glfwSetWindowIconX11(_GLFWwindow* window, int count, const GLFWimage* images)
2107 if (count)
2111 for (int i = 0; i < count; i++)
2117 for (int i = 0; i < count; i++)
2384 unsigned long count =
2400 for (unsigned long i = 0; i < count; i++)
2559 const unsigned long count =
2565 for (unsigned long i = 0; i < count; i++)
2663 const unsigned long count =
2676 for (i = 0; i < count; i++)
2682 if (i == count)
2693 for (unsigned long i = 0; i < count; i++)
2697 states[i] = states[count - 1];
2700 PropModeReplace, (unsigned char*) states, count - 1);
2925 const size_t count = _glfwEncodeUTF8(_glfw.x11.keynames[key], codepoint);
2926 if (count == 0)
2929 _glfw.x11.keynames[key][count] = '\0';