Lines Matching defs:NK_MEMSET
146 /// NK_MEMSET | You can define this to 'memset' or your own memset implementation replacement. If not nuklear will use its own version.
165 /// - NK_MEMSET
5714 #ifndef NK_MEMSET
5715 #define NK_MEMSET nk_memset
6445 NK_MEMSET(ptr, 0, size);
8785 NK_MEMSET(cmd, 0, size + alignment);
11889 NK_MEMSET(scanline , 0, (nk_size)result->w*sizeof(scanline[0]));
11890 NK_MEMSET(scanline2, 0, (nk_size)(result->w+1)*sizeof(scanline[0]));
12284 NK_MEMSET(pixels, 0, (nk_size)(pw*ph)); /* background of 0 around pixels */
12316 NK_MEMSET(buffer, 0, (nk_size)kernel_width);
12379 NK_MEMSET(buffer, 0, (nk_size)kernel_width);
15082 NK_MEMSET(&ctx->overlay, 0, sizeof(ctx->overlay));
22679 NK_MEMSET(state, 0, sizeof(struct nk_text_edit));
22689 NK_MEMSET(state, 0, sizeof(struct nk_text_edit));
22699 NK_MEMSET(state, 0, sizeof(struct nk_text_edit));
24287 NK_MEMSET(chart, 0, sizeof(*chart));
25720 /// - 2016/08/06 (1.04.5) - Changed memset calls to `NK_MEMSET`.