HomeSort by relevance Sort by last modified time
    Searched refs:size_log2 (Results 1 - 6 of 6) sorted by null

  /bionic/libc/kernel/uapi/rdma/
cxgb3-abi.h 29 __u32 size_log2; member in struct:iwch_create_cq_resp_v0
34 __u32 size_log2; member in struct:iwch_create_cq_resp
42 __u32 size_log2; member in struct:iwch_create_qp_resp
  /external/kernel-headers/original/uapi/rdma/
cxgb3-abi.h 54 __u32 size_log2; member in struct:iwch_create_cq_resp_v0
60 __u32 size_log2; member in struct:iwch_create_cq_resp
69 __u32 size_log2; member in struct:iwch_create_qp_resp
  /external/autotest/client/deps/glbench/src/
fillratetest.cc 183 int size_log2 = 5; local
184 for (int size = 1 << size_log2; size <= max_size; size *= 2) {
216 GLuint source_texture = SetupTexture(size_log2);
232 size_log2++;
utils.h 77 GLuint SetupTexture(GLsizei size_log2);
utils.cc 182 GLuint SetupTexture(GLsizei size_log2) {
183 GLsizei size = 1 << size_log2;
  /external/mesa3d/src/intel/vulkan/
anv_allocator.c 679 unsigned size_log2 = ilog2_round_up(size); local
680 assert(size_log2 <= ANV_MAX_STATE_SIZE_LOG2);
681 if (size_log2 < ANV_MIN_STATE_SIZE_LOG2)
682 size_log2 = ANV_MIN_STATE_SIZE_LOG2;
683 return size_log2 - ANV_MIN_STATE_SIZE_LOG2;
689 uint32_t size_log2 = bucket + ANV_MIN_STATE_SIZE_LOG2; local
690 return 1 << size_log2;
992 const unsigned size_log2 = size < 4096 ? 12 : ilog2_round_up(size); local
1045 const unsigned size_log2 = ilog2_round_up(bo.size); local
    [all...]

Completed in 909 milliseconds