Searched defs:increment (Results 1 - 3 of 3) sorted by relevance

/bionic/libc/bionic/
H A Dsbrk.cpp37 void* sbrk(ptrdiff_t increment) { argument
43 void* desired_brk = (void*) ((uintptr_t) original_brk + increment);
H A Dtime64.c467 int increment = (left_year > right_year) ? 1 : -1; local
484 right_year += increment;
487 return seconds * increment;
/bionic/libc/private/
H A Dbionic_atomic_x86.h64 /* Atomic increment, without explicit barriers */
68 int increment = 1; local
70 : "+r" (increment), "+m" (*ptr)
72 /* increment now holds the old value of *ptr */
73 return increment;
80 int increment = -1; local
82 : "+r" (increment), "+m" (*ptr)
84 /* increment now holds the old value of *ptr */
85 return increment;

Completed in 183 milliseconds