Lines Matching defs:start
59 .start = 0,
166 unsigned long start;
170 start = (pmem_ranges[i].start_pfn << PAGE_SHIFT);
172 i, start, start + (size - 1), size >> 20);
176 res->start = start;
177 res->end = start + size - 1;
249 unsigned long start;
255 start = start_pfn << PAGE_SHIFT;
259 memblock_add(start, size);
317 data_resource.start = virt_to_phys(&data_start);
319 code_resource.start = virt_to_phys(_text);
442 unsigned long start = (unsigned long) __init_begin;
445 map_pages(start, __pa(start), end-start,
717 flush_cache_all_local(); /* start with known state */
724 static void alloc_btlb(unsigned long start, unsigned long end, int *slot,
736 while (start < end && *slot < slot_max && size >= PAGE_SIZE) {
739 if (((start & (2 * size - 1)) == 0) &&
740 (end - start) >= (2 * size)) {
745 if ((start & (size - 1)) != 0) {
749 if ((end - start) >= size) {
751 pdc_btlb_insert(start >> PAGE_SHIFT, __pa(start) >> PAGE_SHIFT,
754 start += size;