HomeSort by relevance Sort by last modified time
    Searched full:down_shift (Results 1 - 3 of 3) sorted by null

  /external/libvpx/libvpx/
tools_common.c 418 int down_shift) {
423 dst->fmt != src->fmt || down_shift < 0) {
450 *p_dst++ = *p_src++ >> down_shift;
456 int down_shift) {
462 down_shift < 0) {
488 *p_dst++ = *p_src++ >> down_shift;
495 int down_shift) {
497 highbd_img_downshift(dst, src, down_shift);
499 lowbd_img_downshift(dst, src, down_shift);
tools_common.h 156 void vpx_img_downshift(vpx_image_t *dst, vpx_image_t *src, int down_shift);
  /external/dbus/dbus/
dbus-hash.c 113 * The down_shift drops off the high bits of the hash index, and
123 (((((intptr_t) (i))*1103515245) >> (table)->down_shift) & (table)->mask)
191 int down_shift; /**< Shift count used in hashing member in struct:DBusHashTable
313 table->down_shift = 28;
944 table->down_shift >= 0)
973 table->down_shift -= 2; /* keep 2 more high bits */
981 table->down_shift += 2; /* keep 2 fewer high bits */
990 table->down_shift,
    [all...]

Completed in 46 milliseconds