Lines Matching defs:count
152 size_t count = 0;
155 s[count++] = (char) codepoint;
158 s[count++] = (codepoint >> 6) | 0xc0;
159 s[count++] = (codepoint & 0x3f) | 0x80;
163 s[count++] = (codepoint >> 12) | 0xe0;
164 s[count++] = ((codepoint >> 6) & 0x3f) | 0x80;
165 s[count++] = (codepoint & 0x3f) | 0x80;
169 s[count++] = (codepoint >> 18) | 0xf0;
170 s[count++] = ((codepoint >> 12) & 0x3f) | 0x80;
171 s[count++] = ((codepoint >> 6) & 0x3f) | 0x80;
172 s[count++] = (codepoint & 0x3f) | 0x80;
175 return count;
181 char** _glfwParseUriList(char* text, int* count)
187 *count = 0;
206 (*count)++;
209 paths = _glfw_realloc(paths, *count * sizeof(char*));
210 paths[*count - 1] = path;
249 void* _glfw_calloc(size_t count, size_t size)
251 if (count && size)
255 if (count > SIZE_MAX / size)
261 block = _glfw.allocator.allocate(count * size, _glfw.allocator.user);
263 return memset(block, 0, count * size);