OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:cutoff
(Results
1 - 25
of
67
) 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/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/
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))
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/binutils.old/dist/libiberty/
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))
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/
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))
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))
/src/external/gpl3/gcc.old/dist/libiberty/
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/gdb/dist/libiberty/
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/gdb.old/dist/libiberty/
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/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
...]
/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 49 milliseconds
1
2
3
Indexes created Thu Aug 06 00:25:04 UTC 2026