OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:size_log2
(Results
1 - 4
of
4
) 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
188
int
size_log2
= 5;
local
189
for (int size = 1 <<
size_log2
; size <= max_size; size *= 2) {
221
GLuint source_texture = SetupTexture(
size_log2
);
237
size_log2
++;
/external/mesa3d/src/intel/vulkan/
anv_allocator.c
664
unsigned
size_log2
= ilog2_round_up(size < align ? align : size);
local
665
assert(
size_log2
<= ANV_MAX_STATE_SIZE_LOG2);
666
if (
size_log2
< ANV_MIN_STATE_SIZE_LOG2)
667
size_log2
= ANV_MIN_STATE_SIZE_LOG2;
668
unsigned bucket =
size_log2
- ANV_MIN_STATE_SIZE_LOG2;
671
state.alloc_size = 1 <<
size_log2
;
683
unsigned
size_log2
= ilog2_round_up(state.alloc_size);
local
684
assert(
size_log2
>= ANV_MIN_STATE_SIZE_LOG2 &&
685
size_log2
<= ANV_MAX_STATE_SIZE_LOG2);
686
unsigned bucket =
size_log2
- ANV_MIN_STATE_SIZE_LOG2
835
const unsigned
size_log2
= size < 4096 ? 12 : ilog2_round_up(size);
local
886
const unsigned
size_log2
= ilog2_round_up(bo.size);
local
[
all
...]
Completed in 637 milliseconds