HomeSort by relevance Sort by last modified time
    Searched refs:cutlim (Results 1 - 12 of 12) sorted by null

  /bionic/libc/upstream-openbsd/lib/libc/locale/
_wcstol.h 55 int neg, any, cutlim; local
93 cutlim = (int)(cutoff % base);
96 if (cutlim > 0) {
97 cutlim -= base;
100 cutlim = -cutlim;
111 if (acc < cutoff || (acc == cutoff && i > cutlim)) {
121 if (acc > cutoff || (acc == cutoff && i > cutlim)) {
_wcstoul.h 54 int neg, any, cutlim; local
91 cutlim = (int)(MAX_VALUE % (uint_type)base);
100 if (acc > cutoff || (acc == cutoff && i > cutlim)) {
  /device/linaro/bootloader/edk2/StdLib/LibC/Locale/
_wcstol.h 66 int neg, any, cutlim; local
111 cutlim = (int)(cutoff % base);
114 if (cutlim > 0) {
115 cutlim -= base;
118 cutlim = -cutlim;
129 if (acc < cutoff || (acc == cutoff && i > cutlim)) {
139 if (acc > cutoff || (acc == cutoff && i > cutlim)) {
_wcstoul.h 68 int neg, any, cutlim; local
108 cutlim = (int) ModU64x32 ((UINT64) __wUINT_MAX, (UINT32) base);
118 if (acc > cutoff || (acc == cutoff && i > cutlim)) {
  /device/linaro/bootloader/edk2/StdLib/LibC/StdLib/
strtoimax.c 65 int neg, any, cutlim; local
110 * is 10, cutoff will be set to 922337203685477580 and cutlim to
120 cutlim = (int)(cutoff % base);
123 if (cutlim > 0) {
124 cutlim -= base;
127 cutlim = -cutlim;
141 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
151 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
strtoumax.c 74 int neg, any, cutlim; local
104 cutlim = (int) ModU64x32 ((UINT64) UINTMAX_MAX, (UINT32) base);
120 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
  /toolchain/binutils/binutils-2.27/libiberty/
strtol.c 96 register int neg = 0, any, cutlim; local
129 * cutoff will be set to 214748364 and cutlim to either
138 cutlim = cutoff % (unsigned long)base;
149 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
strtoll.c 104 register int neg = 0, any, cutlim; local
137 * cutoff will be set to 214748364 and cutlim to either
146 cutlim = cutoff % (ullong_type)base;
157 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
strtoul.c 67 register int neg = 0, any, cutlim; local
89 cutlim = (unsigned long)ULONG_MAX % (unsigned long)base;
99 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
strtoull.c 72 register int neg = 0, any, cutlim; local
94 cutlim = (ullong_type)ULLONG_MAX % (ullong_type)base;
104 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
  /bionic/libc/bionic/
strtol.cpp 72 int cutlim = -(Min % base); local
86 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
137 int cutlim = Max % static_cast<T>(base); local
150 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
  /toolchain/binutils/binutils-2.27/bfd/
bfd.c 1326 unsigned int cutlim; local
    [all...]

Completed in 110 milliseconds