Searched refs:overflow (Results 1 - 25 of 88) sorted by relevance

1234

/illumos-gate/usr/src/lib/libuutil/common/
H A Duu_strtoint.c55 int overflow = 0; local
68 overflow = 1; /* becomes underflow below */
117 overflow = 1;
121 overflow = 1;
135 overflow = 1;
138 overflow = 1;
145 if (bad_char | bad_digit | overflow) {
150 else if (overflow) {
265 /* we have to be careful, since << can overflow */
/illumos-gate/usr/src/lib/libcmdutils/common/
H A Dgid.c52 boolean_t overflow = B_FALSE; local
60 overflow = B_TRUE;
71 if (overflow == B_TRUE) /* Find a hole */
H A Duid.c53 boolean_t overflow = B_FALSE; local
61 overflow = B_TRUE;
72 if (overflow == B_TRUE) /* Find a hole */
/illumos-gate/usr/src/lib/libast/common/string/
H A Dstrtoi.h45 * errno=ERANGE on overflow (LONG_MAX) or underflow (LONG_MIN)
241 int overflow = 0; local
344 overflow = 1;
350 overflow = 1;
367 if (overflow)
403 overflow = 1;
408 overflow = 1;
417 overflow = 1;
422 overflow = 1;
515 overflow
[all...]
/illumos-gate/usr/src/lib/libc/port/i18n/
H A Dwcstol.c120 goto overflow;
123 goto overflow;
130 overflow:
H A Dwcstoul.c111 goto overflow;
114 goto overflow;
121 overflow:
/illumos-gate/usr/src/common/util/
H A Dstrtol.c121 goto overflow;
124 goto overflow;
137 overflow:
H A Dstrtoll.c116 goto overflow;
119 goto overflow;
132 overflow:
H A Dstrtoul.c109 goto overflow;
112 goto overflow;
125 overflow:
H A Dstrtoull.c109 goto overflow;
112 goto overflow;
125 overflow:
/illumos-gate/usr/src/lib/libm/i386/src/
H A Dnextafterf.s87 je .overflow
89 .overflow:
92 fmul %st(0),%st / overflow-to-Inf, z
93 fstps PIC_L(ftmpf) / z & create overflow signal
H A Dnextafter.s102 je .overflow
104 .overflow:
H A Dexp.s85 je .overflow
90 .overflow:
/illumos-gate/usr/src/lib/libm/
H A DMakefile.libm.com62 # libm depends on integer overflow characteristics
63 CFLAGS += -_gcc=-fno-strict-overflow
64 CFLAGS64 += -_gcc=-fno-strict-overflow
/illumos-gate/usr/src/boot/lib/libstand/
H A Dnetif.h39 int overflow; member in struct:netif_stats
/illumos-gate/usr/src/test/zfs-tests/tests/functional/cli_root/zpool_import/
H A Dzpool_import_rename_001_pos.ksh167 log_must zpool create overflow $VDEV_FILE
168 log_must zfs create overflow/testfs
169 ID=$(zpool get -Ho value guid overflow)
170 log_must zpool export overflow
/illumos-gate/usr/src/lib/libumem/common/
H A Denvvar.c52 * form (doesn't overflow, doesn't contain any unexpected characters).
318 goto overflow;
325 goto overflow;
334 overflow:
357 goto overflow;
368 goto overflow;
374 goto overflow;
380 goto overflow;
386 goto overflow;
403 overflow
[all...]
/illumos-gate/usr/src/lib/libslp/javalib/com/sun/slp/
H A DSLPServerHeaderV2.java188 // Check for size overflow.
227 hdr.overflow = false;
280 hdr.overflow = false;
295 " overflow=``" + overflow + "''\n" +
H A DSLPHeaderV1.java118 overflow = ((flags & OVERFLOW) != 0x00);
223 // Check for size overflow.
279 // Set overflow flag if buffer is too large and this isn't going out
284 overflow = true;
295 putInt(length, baos); // what about overflow???
299 if (overflow) {
378 hdr.overflow = false;
466 hdr.overflow = false;
481 " overflow=``" + overflow
[all...]
H A DCAttrMsg.java71 // Ignore if overflow.
73 if (hdr.overflow) {
H A DCSrvTypeMsg.java72 if (hdr.overflow) {
/illumos-gate/usr/src/lib/libsqlite/tool/
H A Dspace_used.tcl31 ovfl_pages int, -- Number of overflow pages used
33 ovfl_unused int -- Number of unused bytes on overflow pages
95 puts "-- Total pages used: $total_primary primary and $total_overflow overflow"
104 puts -nonewline "-- Total unused bytes on overflow pages: $total_unused_ovfl"
H A Dspaceanal.tcl45 n_ovfl int, -- Number of entries that overflow
47 ovfl_pages int, -- Number of overflow pages used
49 ovfl_unused int -- Number of unused bytes on overflow pages
87 # if {[lindex $stat 8]==0} {error "overflow is empty with $payload"}
93 # if {[lindex $stat 8]!=0} {error "overflow not empty with $payload"}
180 statline "Entries that use overflow" $n_ovfl [percent $n_ovfl $nentry]
186 statline "Unused bytes on overflow pages" $ovfl_unused \
279 as overflow pages. The number at the right is the data pages divided by
380 Entries that use overflow
384 of overflow page
[all...]
/illumos-gate/usr/src/uts/sparc/fpu/
H A Dpack.c35 * Returns 1 if overflow should go to infinity, 0 if to max finite.
125 goto overflow;
130 goto overflow;
138 overflow:
166 goto overflow;
174 goto overflow;
184 overflow:
247 if (pu->significand[3] == 0x1000000) { /* rounding overflow */
328 if (pu->significand[2] == 0x200000) { /* rounding overflow */
332 if (pu->exponent >= 0x7ff) { /* overflow */
[all...]
/illumos-gate/usr/src/lib/libc/i386/gen/
H A D_mul64.s41 / We can ignore ac and top 32 bits of ad+bc: if <> 0, overflow happened.

Completed in 214 milliseconds

1234