Searched refs:rem (Results 1 – 7 of 7) sorted by relevance
/xen-4.10.0-shim-comet/xen/common/ |
A D | time.c | 48 long days, rem; in gmtime() local 65 rem = t % SECS_PER_DAY; in gmtime() 67 tbuf.tm_hour = rem / SECS_PER_HOUR; in gmtime() 68 rem %= SECS_PER_HOUR; in gmtime() 69 tbuf.tm_min = rem / 60; in gmtime() 70 tbuf.tm_sec = rem % 60; in gmtime() 75 while ( days >= (rem = __isleap(y) ? 366 : 365) ) in gmtime() 78 days -= rem; in gmtime()
|
A D | bitmap.c | 127 int off = shift/BITS_PER_LONG, rem = shift % BITS_PER_LONG; in __bitmap_shift_right() local 136 if (!rem || off + k + 1 >= lim) in __bitmap_shift_right() 146 dst[k] = rem in __bitmap_shift_right() 147 ? (upper << (BITS_PER_LONG - rem)) | (lower >> rem) in __bitmap_shift_right() 174 int off = shift/BITS_PER_LONG, rem = shift % BITS_PER_LONG; in __bitmap_shift_left() local 182 if (rem && k > 0) in __bitmap_shift_left() 189 dst[k + off] = rem ? (lower >> (BITS_PER_LONG - rem)) in __bitmap_shift_left() 190 | (upper << rem) in __bitmap_shift_left()
|
A D | lib.c | 382 u64 rem; in __umoddi3() local 383 __qdivrem(a, b, &rem); in __umoddi3() 384 return rem; in __umoddi3() 410 u64 ua, ub, rem, quot; in __ldivmod_helper() local 414 quot = __qdivrem(ua, ub, &rem); in __ldivmod_helper() 416 *r = -rem; in __ldivmod_helper() 418 *r = rem; in __ldivmod_helper()
|
A D | page_alloc.c | 211 unsigned long rem; member 1857 if ( r->rem && (cpumask_weight(&r->cpus) - 1 == cpu_idx) ) in smp_scrub_heap_pages() 1858 end += r->rem; in smp_scrub_heap_pages() 1902 unsigned long rem = 0; in scrub_heap_pages() local 1928 rem = 0; in scrub_heap_pages() 1933 rem = (end - start) % cpus; in scrub_heap_pages() 1939 region[i].rem = rem; in scrub_heap_pages() 2000 region[i].rem = region[i].per_cpu_sz % cpus; in scrub_heap_pages()
|
/xen-4.10.0-shim-comet/tools/misc/ |
A D | xen-livepatch.c | 279 struct timespec req, rem; in nanosleep_retry() local 282 rem.tv_sec = 0; in nanosleep_retry() 283 rem.tv_nsec = ns; in nanosleep_retry() 286 req = rem; in nanosleep_retry() 287 rc = nanosleep(&req, &rem); in nanosleep_retry()
|
/xen-4.10.0-shim-comet/tools/blktap2/drivers/ |
A D | block-qcow.c | 303 int current = 0, rem = 0; in qtruncate() local 320 rem = st.st_size % DEFAULT_SECTOR_SIZE; in qtruncate() 340 if (rem) { in qtruncate() 341 ret = write(fd, buf, rem); in qtruncate() 342 if (ret != rem) { in qtruncate()
|
/xen-4.10.0-shim-comet/tools/xentrace/ |
A D | xenalyze.c | 8966 void record_order_remove(struct pcpu_info *rem); 9808 void record_order_remove(struct pcpu_info *rem) in record_order_remove() argument 9813 for(i=0; record_order[i] && record_order[i]!=rem; i++) in record_order_remove()
|
Completed in 39 milliseconds