OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:cutoff
(Results
1 - 25
of
54
) sorted by relevancy
1
2
3
/src/external/bsd/unbound/dist/util/
rfc_1982.c
48
const uint32_t
cutoff
= ((uint32_t) 1 << (32 - 1));
local
52
} else if ((a < b && b - a <
cutoff
) || (a > b && a - b >
cutoff
)) {
63
const uint32_t
cutoff
= ((uint32_t) 1 << (32 - 1));
local
67
if(a < b && b - a <
cutoff
) {
70
if(a > b && a - b >
cutoff
) {
/src/common/lib/libc/stdlib/
_strtol.h
59
__INT acc,
cutoff
;
local
123
* Compute the
cutoff
value between legal numbers and illegal
131
*
cutoff
will be set to 214748364 and cutlim to either
139
cutoff
= (__INT)(neg ? __INT_MIN : __INT_MAX);
140
cutlim = (int)(
cutoff
% base);
141
cutoff
/= base;
145
cutoff
+= 1;
163
if (acc <
cutoff
|| (acc ==
cutoff
&& i > cutlim)) {
178
if (acc >
cutoff
|| (acc == cutoff && i > cutlim))
[
all
...]
_strtoul.h
59
__UINT acc,
cutoff
;
local
125
cutoff
= ((__UINT)__UINT_MAX / (__UINT)base);
140
if (acc >
cutoff
|| (acc ==
cutoff
&& i > cutlim)) {
/src/sys/arch/ia64/stand/common/
strtol.c
62
unsigned long
cutoff
;
local
93
* Compute the
cutoff
value between legal numbers and illegal
101
*
cutoff
will be set to 214748364 and cutlim to either
109
cutoff
= neg ? -(unsigned long)LONG_MIN : LONG_MAX;
110
cutlim =
cutoff
% (unsigned long)base;
111
cutoff
/= (unsigned long)base;
123
if (any < 0 || acc >
cutoff
|| (acc ==
cutoff
&& c > cutlim))
/src/crypto/external/bsd/heimdal/dist/lib/roken/
strtoll.c
65
unsigned long long
cutoff
;
local
101
* Compute the
cutoff
value between legal numbers and illegal
109
* is 10,
cutoff
will be set to 922337203685477580 and cutlim to
118
cutoff
= neg ? (unsigned long long)-(LLONG_MIN + LLONG_MAX) + LLONG_MAX
120
cutlim =
cutoff
% base;
121
cutoff
/= base;
133
if (any < 0 || acc >
cutoff
|| (acc ==
cutoff
&& c > cutlim))
strtoull.c
65
unsigned long long
cutoff
;
local
98
cutoff
= ULLONG_MAX / base;
111
if (any < 0 || acc >
cutoff
|| (acc ==
cutoff
&& c > cutlim))
/src/external/bsd/nvi/dist/clib/
strtol.c
64
register unsigned long
cutoff
;
local
90
* Compute the
cutoff
value between legal numbers and illegal
98
*
cutoff
will be set to 214748364 and cutlim to either
106
cutoff
= neg ? -(unsigned long)LONG_MIN : LONG_MAX;
107
cutlim =
cutoff
% (unsigned long)base;
108
cutoff
/= (unsigned long)base;
118
if (any < 0 || acc >
cutoff
|| acc ==
cutoff
&& c > cutlim)
strtoul.c
64
register unsigned long
cutoff
;
local
86
cutoff
= (unsigned long)ULONG_MAX / (unsigned long)base;
97
if (any < 0 || acc >
cutoff
|| acc ==
cutoff
&& c > cutlim)
/src/external/gpl3/binutils/dist/libiberty/
strtoul.c
66
register unsigned long
cutoff
;
local
88
cutoff
= (unsigned long)ULONG_MAX / (unsigned long)base;
99
if (any < 0 || acc >
cutoff
|| (acc ==
cutoff
&& c > cutlim))
strtoull.c
71
register ullong_type
cutoff
;
local
93
cutoff
= (ullong_type)ULLONG_MAX / (ullong_type)base;
104
if (any < 0 || acc >
cutoff
|| (acc ==
cutoff
&& c > cutlim))
strtol.c
95
register unsigned long
cutoff
;
local
121
* Compute the
cutoff
value between legal numbers and illegal
129
*
cutoff
will be set to 214748364 and cutlim to either
137
cutoff
= neg ? -(unsigned long)LONG_MIN : LONG_MAX;
138
cutlim =
cutoff
% (unsigned long)base;
139
cutoff
/= (unsigned long)base;
149
if (any < 0 || acc >
cutoff
|| (acc ==
cutoff
&& c > cutlim))
strtoll.c
103
register ullong_type
cutoff
;
local
129
* Compute the
cutoff
value between legal numbers and illegal
137
*
cutoff
will be set to 214748364 and cutlim to either
145
cutoff
= neg ? -(ullong_type)LLONG_MIN : LLONG_MAX;
146
cutlim =
cutoff
% (ullong_type)base;
147
cutoff
/= (ullong_type)base;
157
if (any < 0 || acc >
cutoff
|| (acc ==
cutoff
&& c > cutlim))
/src/external/gpl3/binutils.old/dist/libiberty/
strtoul.c
66
register unsigned long
cutoff
;
local
88
cutoff
= (unsigned long)ULONG_MAX / (unsigned long)base;
99
if (any < 0 || acc >
cutoff
|| (acc ==
cutoff
&& c > cutlim))
strtoull.c
71
register ullong_type
cutoff
;
local
93
cutoff
= (ullong_type)ULLONG_MAX / (ullong_type)base;
104
if (any < 0 || acc >
cutoff
|| (acc ==
cutoff
&& c > cutlim))
/src/external/gpl3/gcc/dist/libiberty/
strtoul.c
66
register unsigned long
cutoff
;
local
88
cutoff
= (unsigned long)ULONG_MAX / (unsigned long)base;
99
if (any < 0 || acc >
cutoff
|| (acc ==
cutoff
&& c > cutlim))
strtoull.c
71
register ullong_type
cutoff
;
local
93
cutoff
= (ullong_type)ULLONG_MAX / (ullong_type)base;
104
if (any < 0 || acc >
cutoff
|| (acc ==
cutoff
&& c > cutlim))
/src/external/gpl3/gcc.old/dist/libiberty/
strtoul.c
66
register unsigned long
cutoff
;
local
88
cutoff
= (unsigned long)ULONG_MAX / (unsigned long)base;
99
if (any < 0 || acc >
cutoff
|| (acc ==
cutoff
&& c > cutlim))
strtoull.c
71
register ullong_type
cutoff
;
local
93
cutoff
= (ullong_type)ULLONG_MAX / (ullong_type)base;
104
if (any < 0 || acc >
cutoff
|| (acc ==
cutoff
&& c > cutlim))
/src/external/gpl3/gdb/dist/libiberty/
strtoul.c
66
register unsigned long
cutoff
;
local
88
cutoff
= (unsigned long)ULONG_MAX / (unsigned long)base;
99
if (any < 0 || acc >
cutoff
|| (acc ==
cutoff
&& c > cutlim))
strtoull.c
71
register ullong_type
cutoff
;
local
93
cutoff
= (ullong_type)ULLONG_MAX / (ullong_type)base;
104
if (any < 0 || acc >
cutoff
|| (acc ==
cutoff
&& c > cutlim))
/src/external/gpl3/gdb.old/dist/libiberty/
strtoul.c
66
register unsigned long
cutoff
;
local
88
cutoff
= (unsigned long)ULONG_MAX / (unsigned long)base;
99
if (any < 0 || acc >
cutoff
|| (acc ==
cutoff
&& c > cutlim))
strtoull.c
71
register ullong_type
cutoff
;
local
93
cutoff
= (ullong_type)ULLONG_MAX / (ullong_type)base;
104
if (any < 0 || acc >
cutoff
|| (acc ==
cutoff
&& c > cutlim))
/src/lib/libc/locale/
_wcstol.h
57
__INT acc,
cutoff
;
local
66
(void)&acc; (void)&
cutoff
;
104
cutoff
= neg ? __INT_MIN : __INT_MAX;
105
cutlim = (int)(
cutoff
% base);
106
cutoff
/= base;
110
cutoff
+= 1;
123
if (acc <
cutoff
|| (acc ==
cutoff
&& i > cutlim)) {
133
if (acc >
cutoff
|| (acc ==
cutoff
&& i > cutlim))
[
all
...]
_wcstoul.h
56
__UINT acc,
cutoff
;
local
98
cutoff
= __UINT_MAX / (__UINT)base;
108
if (acc >
cutoff
|| (acc ==
cutoff
&& i > cutlim)) {
/src/external/bsd/libbind/dist/bsd/
strtoul.c
66
u_long acc,
cutoff
;
local
90
cutoff
= (u_long)ULONG_MAX / (u_long)base;
101
if (any < 0 || acc >
cutoff
|| (acc ==
cutoff
&& c > cutlim))
Completed in 41 milliseconds
1
2
3
Indexes created Tue Mar 03 05:31:39 UTC 2026