Lines Matching defs:byte
183 /* The exponent byte is just the upper nibble of the Lux High Byte */
187 * The exponent value is base 2 to the power of the raw exponent byte.
234 * Using a stop bit causes disjoint upper/lower byte reads and
366 int byte, reg;
373 byte = i2c_smbus_read_byte_data(data->client, reg);
374 if (byte < 0)
375 return byte;
377 mantissa = byte & MAX44009_THRESH_MANT_MASK;
382 * value to the shifted byte value (see datasheet).
388 * Exponent is base 2 to the power of the threshold exponent byte
391 exponent = byte & MAX44009_THRESH_EXP_MASK;