HomeSort by relevance Sort by last modified time
    Searched defs:dst_bits (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_pack.c 525 unsigned dst_bits = dst_type.sign ? dst_type.width - 1 : dst_type.width; local
526 LLVMValueRef dst_max = lp_build_const_int_vec(gallivm, src_type, ((unsigned long long)1 << dst_bits) - 1);
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_pack.c 525 unsigned dst_bits = dst_type.sign ? dst_type.width - 1 : dst_type.width; local
526 LLVMValueRef dst_max = lp_build_const_int_vec(gallivm, src_type, ((unsigned long long)1 << dst_bits) - 1);
  /external/pixman/test/
composite-traps-test.c 59 uint32_t * dst_bits; local
154 dst_bits = (uint32_t *)make_random_bytes (dst_stride * dst_height);
160 dst_format, dst_width, dst_height, dst_bits, dst_stride);
221 dst_bits[i] &= 0xFFFFFF;
233 printf ("%02X ", *((uint8_t *)dst_bits + i * dst_stride + j));
239 crc32 = compute_crc32 (0, dst_bits, dst_stride * dst_height);
241 fence_free (dst_bits);
  /frameworks/native/libs/gui/
Surface.cpp 679 uint8_t* dst_bits = NULL; local
680 err = dst->lock(GRALLOC_USAGE_SW_WRITE_OFTEN, reg.bounds(), (void**)&dst_bits);
685 if (head != tail && src_bits && dst_bits) {
696 uint8_t * d = dst_bits + (r.left + dst->stride * r.top) * bpp;
712 if (dst_bits)
  /frameworks/native/opengl/libagl/
egl.cpp 470 uint8_t * const dst_bits = (uint8_t *)dst_vaddr; local
479 uint8_t * d = dst_bits + (r.left + dst->stride * r.top) * bpp;
    [all...]

Completed in 175 milliseconds