HomeSort by: relevance | last modified time | path
    Searched defs:bit_shift (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/arch/arm/ti/
ti_div_clock.c 160 u_int div, max_div, bit_shift; local in function:ti_div_clock_get_rate
170 if (of_getprop_uint32(sc->sc_phandle, "ti,bit-shift", &bit_shift) != 0)
171 bit_shift = 0;
177 mask = (max_val - 1) << bit_shift;
ti_div_clock.c 160 u_int div, max_div, bit_shift; local in function:ti_div_clock_get_rate
170 if (of_getprop_uint32(sc->sc_phandle, "ti,bit-shift", &bit_shift) != 0)
171 bit_shift = 0;
177 mask = (max_val - 1) << bit_shift;
  /src/sys/dev/pci/igc/
igc_mac.c 209 uint8_t bit_shift = 0; local in function:igc_hash_mc_addr_generic
216 /* For a mc_filter_type of 0, bit_shift is the number of left-shifts
219 while (hash_mask >> bit_shift != 0xFF)
220 bit_shift++;
225 * The bit_shift for a mc_filter_type of 0 represents the number of
229 * remaining number of bits. Thus 8 - bit_shift. The rest of the
236 * we can see that the bit_shift for case 0 is 4. These are the hash
252 bit_shift += 1;
255 bit_shift += 2;
258 bit_shift += 4
    [all...]
igc_mac.c 209 uint8_t bit_shift = 0; local in function:igc_hash_mc_addr_generic
216 /* For a mc_filter_type of 0, bit_shift is the number of left-shifts
219 while (hash_mask >> bit_shift != 0xFF)
220 bit_shift++;
225 * The bit_shift for a mc_filter_type of 0 represents the number of
229 * remaining number of bits. Thus 8 - bit_shift. The rest of the
236 * we can see that the bit_shift for case 0 is 4. These are the hash
252 bit_shift += 1;
255 bit_shift += 2;
258 bit_shift += 4
    [all...]

Completed in 22 milliseconds