Searched refs:cutlim (Results 1 - 5 of 5) sorted by relevance
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Locale/ |
H A D | _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)) {
|
H A D | _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)) {
|
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/StdLib/ |
H A D | 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)) {
|
H A D | 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)) {
|
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/libWine/ |
H A D | string.c | 86 register unsigned int cutlim; local 131 cutlim = ULONG_MAX % (unsigned long int) base; 149 if (i > cutoff || (i == cutoff && c > cutlim)) 206 register unsigned int cutlim; local 251 cutlim = ULONG_MAX % (unsigned long int) base; 269 if (i > cutoff || (i == cutoff && c > cutlim))
|
Completed in 265 milliseconds