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

/u-boot/drivers/misc/
H A Di2c_eeprom_emul.c101 int overflow = offset + len - plat->size; local
102 int initial = len - overflow;
106 overflow);
133 int overflow = offset + len - plat->size; local
134 int initial = len - overflow;
137 memcpy(priv->data, ptr + initial, overflow);
/u-boot/drivers/spi/
H A Dtegra20_slink.c211 int num_bytes, overflow; local
218 overflow = bitlen % 8;
255 if (overflow && !num_bytes)
257 (bytes - 1) * 8 + overflow - 1);
/u-boot/lib/zlib/
H A Dtrees.c510 int overflow = 0; /* number of elements with bit length too large */ local
515 * overflow in the case of the bit length tree).
522 if (bits > max_length) bits = max_length, overflow++;
535 if (overflow == 0) return;
537 Trace((stderr,"\nbit length overflow\n"));
545 s->bl_count[bits+1] += 2; /* move one overflow item as its brother */
547 /* The brother of the overflow item also moves one step up,
550 overflow -= 2;
551 } while (overflow > 0);
1095 Assert(s->pending < s->lit_bufsize + sx, "pendingBuf overflow");
[all...]
/u-boot/
H A DMakefile768 KBUILD_CFLAGS += $(call cc-disable-warning, stringop-overflow)

Completed in 62 milliseconds