Searched refs:increment (Results 1 - 7 of 7) sorted by relevance

/bionic/libc/bionic/
H A Dbrk.cpp47 void* sbrk(ptrdiff_t increment) { argument
54 if (increment == 0) {
60 if ((increment > 0 && static_cast<uintptr_t>(increment) > (UINTPTR_MAX - old_brk)) ||
61 (increment < 0 && static_cast<uintptr_t>(-increment) > old_brk)) {
66 void* desired_brk = reinterpret_cast<void*>(old_brk + increment);
H A Dtime64.c462 int increment = (left_year > right_year) ? 1 : -1; local
479 right_year += increment;
482 return seconds * increment;
/bionic/libc/private/
H A Dbionic_atomic_x86.h55 int increment = -1; local
57 : "+r" (increment), "+m" (*ptr)
59 /* increment now holds the old value of *ptr */
60 return increment;
/bionic/libc/upstream-openbsd/lib/libc/gdtoa/
H A Dstrtodg.c49 increment(b) Bigint *b; function
51 increment(Bigint *b)
245 b = increment(b);
285 b = increment(b);
889 /*boundary case -- increment exponent*/
920 rvb = increment(rvb);
H A Dgdtoaimp.h546 #define increment __increment_D2A macro
597 extern Bigint *increment ANSI((Bigint*));
H A Dgethex.c336 b = increment(b);
/bionic/libc/kernel/uapi/linux/
H A Dpkt_sched.h595 __u32 increment; member in struct:tc_sfb_qopt

Completed in 124 milliseconds