Lines Matching refs:types
9123 const enum bpf_reg_type types[10]; member
9128 .types = {
9138 .types = {
9151 .types = {
9165 .types = {
9171 static const struct bpf_reg_types fullsock_types = { .types = { PTR_TO_SOCKET } };
9172 static const struct bpf_reg_types scalar_types = { .types = { SCALAR_VALUE } };
9173 static const struct bpf_reg_types context_types = { .types = { PTR_TO_CTX } };
9174 static const struct bpf_reg_types ringbuf_mem_types = { .types = { PTR_TO_MEM | MEM_RINGBUF } };
9175 static const struct bpf_reg_types const_map_ptr_types = { .types = { CONST_PTR_TO_MAP } };
9177 .types = {
9184 .types = {
9190 static const struct bpf_reg_types func_ptr_types = { .types = { PTR_TO_FUNC } };
9191 static const struct bpf_reg_types stack_ptr_types = { .types = { PTR_TO_STACK } };
9192 static const struct bpf_reg_types const_str_ptr_types = { .types = { PTR_TO_MAP_VALUE } };
9193 static const struct bpf_reg_types timer_types = { .types = { PTR_TO_MAP_VALUE } };
9195 .types = {
9201 .types = {
9274 for (i = 0; i < ARRAY_SIZE(compatible->types); i++) { in check_reg_type()
9275 expected = compatible->types[i]; in check_reg_type()
9285 verbose(env, "%s, ", reg_type_str(env, compatible->types[j])); in check_reg_type()
9286 verbose(env, "%s\n", reg_type_str(env, compatible->types[j])); in check_reg_type()