Home
last modified time | relevance | path

Searched refs:valid_flags (Results 1 – 8 of 8) sorted by relevance

/external/iptables/extensions/
Dlibxt_sctp.c94 const char *valid_flags; member
99 = { { .name = "DATA", .chunk_type = 0, .valid_flags = "----IUBE"},
100 { .name = "INIT", .chunk_type = 1, .valid_flags = "--------"},
101 { .name = "INIT_ACK", .chunk_type = 2, .valid_flags = "--------"},
102 { .name = "SACK", .chunk_type = 3, .valid_flags = "--------"},
103 { .name = "HEARTBEAT", .chunk_type = 4, .valid_flags = "--------"},
104 { .name = "HEARTBEAT_ACK", .chunk_type = 5, .valid_flags = "--------"},
105 { .name = "ABORT", .chunk_type = 6, .valid_flags = "-------T"},
106 { .name = "SHUTDOWN", .chunk_type = 7, .valid_flags = "--------"},
107 { .name = "SHUTDOWN_ACK", .chunk_type = 8, .valid_flags = "--------"},
[all …]
/external/mesa3d/src/gallium/drivers/freedreno/ir3/
Dir3_cp.c92 static bool valid_flags(struct ir3_instruction *instr, unsigned n, in valid_flags() function
95 unsigned valid_flags; in valid_flags() local
116 valid_flags = IR3_REG_IMMED | IR3_REG_CONST | IR3_REG_RELATIV; in valid_flags()
117 if (flags & ~valid_flags) in valid_flags()
121 valid_flags = ir3_cat2_absneg(instr->opc) | in valid_flags()
125 valid_flags |= IR3_REG_IMMED; in valid_flags()
127 if (flags & ~valid_flags) in valid_flags()
149 valid_flags = ir3_cat3_absneg(instr->opc) | in valid_flags()
152 if (flags & ~valid_flags) in valid_flags()
182 valid_flags = IR3_REG_IMMED; in valid_flags()
[all …]
Dir3.c76 uint32_t repeat, uint32_t valid_flags) in reg() argument
80 if (reg->flags & ~valid_flags) { in reg()
82 reg->flags, valid_flags); in reg()
/external/mesa3d/src/gallium/state_trackers/clover/api/
Dmemory.cpp39 const cl_mem_flags valid_flags = in validate_flags() local
42 if ((d_flags & ~valid_flags) || in validate_flags()
/external/u-boot/include/
Dec_commands.h674 uint32_t valid_flags; member
1164 uint8_t valid_flags; /* which flags are valid */ member
/external/u-boot/drivers/misc/
Dcros_ec_sandbox.c407 resp->valid_flags = EC_FLASH_PROTECT_ALL_NOW; in process_cmd()
/external/mesa3d/src/mesa/main/
Dbufferobj.c1768 GLbitfield valid_flags = GL_MAP_READ_BIT | in validate_buffer_storage() local
1776 valid_flags |= GL_SPARSE_STORAGE_BIT_ARB; in validate_buffer_storage()
1778 if (flags & ~valid_flags) { in validate_buffer_storage()
/external/vulkan-validation-layers/layers/
Dbuffer_validation.cpp4032 …VkImageAspectFlags valid_flags = VK_IMAGE_ASPECT_COLOR_BIT | VK_IMAGE_ASPECT_PLANE_0_BIT | VK_IMAG… in ValidateImageAspectMask() local
4034 valid_flags = valid_flags | VK_IMAGE_ASPECT_PLANE_2_BIT; in ValidateImageAspectMask()
4036 if ((aspect_mask & valid_flags) != aspect_mask) { in ValidateImageAspectMask()