Searched defs:increment (Results 1 - 5 of 5) 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/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*));
/bionic/libc/kernel/uapi/linux/
H A Dpkt_sched.h596 __u32 increment; member in struct:tc_sfb_qopt

Completed in 7002 milliseconds