Lines Matching defs:array
2129 /// The array counterpart to API nk_layout_row_xxx is the single nk_layout_row
2131 /// it allows to define it by array. The trade of for less control is that
2243 /// nk_layout_row | Specifies row columns in array as either window ratio or size
2384 /// Specifies row columns in array as either window ratio or size
3943 /* glyph array offset inside the font glyph baking output array */
3945 /* number of glyphs of this font inside the glyph baking array output */
4222 * First of is the most basic way of just providing a simple char array with
10863 nk_rp_qsort(struct nk_rp_rect *array, unsigned int len, int(*cmp)(const void*,const void*))
10873 pivot = array[left+seed%(len-left)];
10877 while (cmp(&array[++right], &pivot) < 0);
10878 while (cmp(&pivot, &array[--len]) < 0);
10880 tmp = array[right];
10881 array[right] = array[len];
10882 array[len] = tmp;
10955 /* if non-zero, then this is an array of unicode codepoints */
11348 /* in first pass, we load uninterpreted data into the allocated array */
11349 /* above, shifted to the end of the array so we won't overwrite it when */
12447 /* rects array must be big enough to accommodate all characters in the given ranges */
12482 /* rects array must be big enough to accommodate all characters in the given ranges */
12904 /* fill own baked font glyph array */
18258 /* non-scaling array of panel pixel width for every widget */