Lines Matching refs:start
374 unsigned int start, nbits; in test_mem_optimisations() local
376 for (start = 0; start < 1024; start += 8) { in test_mem_optimisations()
377 for (nbits = 0; nbits < 1024 - start; nbits += 8) { in test_mem_optimisations()
381 bitmap_set(bmap1, start, nbits); in test_mem_optimisations()
382 __bitmap_set(bmap2, start, nbits); in test_mem_optimisations()
384 printk("set not equal %d %d\n", start, nbits); in test_mem_optimisations()
388 printk("set not __equal %d %d\n", start, nbits); in test_mem_optimisations()
392 bitmap_clear(bmap1, start, nbits); in test_mem_optimisations()
393 __bitmap_clear(bmap2, start, nbits); in test_mem_optimisations()
395 printk("clear not equal %d %d\n", start, nbits); in test_mem_optimisations()
399 printk("clear not __equal %d %d\n", start, in test_mem_optimisations()