/external/iptables/extensions/ |
D | libxt_sctp.c | 94 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/cpuinfo/test/ |
D | init.cc | 849 TEST(L1I_CACHE, valid_flags) { in TEST() argument 852 …const uint32_t valid_flags = CPUINFO_CACHE_UNIFIED | CPUINFO_CACHE_INCLUSIVE | CPUINFO_CACHE_COMPL… in TEST() local 857 EXPECT_EQ(0, cache->flags & ~valid_flags); in TEST() 1014 TEST(L1D_CACHE, valid_flags) { in TEST() argument 1017 …const uint32_t valid_flags = CPUINFO_CACHE_UNIFIED | CPUINFO_CACHE_INCLUSIVE | CPUINFO_CACHE_COMPL… in TEST() local 1022 EXPECT_EQ(0, cache->flags & ~valid_flags); in TEST() 1181 TEST(L2_CACHE, valid_flags) { in TEST() argument 1184 …const uint32_t valid_flags = CPUINFO_CACHE_UNIFIED | CPUINFO_CACHE_INCLUSIVE | CPUINFO_CACHE_COMPL… in TEST() local 1189 EXPECT_EQ(0, cache->flags & ~valid_flags); in TEST() 1329 TEST(L3_CACHE, valid_flags) { in TEST() argument [all …]
|
/external/mesa3d/src/freedreno/ir3/ |
D | ir3_cp_postsched.c | 103 valid_flags(struct ir3_instruction *use, struct ir3_instruction *mov) in valid_flags() function 152 if (!valid_flags(use, mov)) in instr_cp_postsched()
|
D | ir3.c | 81 uint32_t repeat, uint32_t valid_flags) in reg() argument 86 if (reg->flags & ~valid_flags) { in reg() 88 reg->flags, valid_flags); in reg() 1316 unsigned valid_flags; in ir3_valid_flags() local 1354 valid_flags = IR3_REG_IMMED | IR3_REG_CONST | IR3_REG_RELATIV; in ir3_valid_flags() 1355 if (flags & ~valid_flags) in ir3_valid_flags() 1359 valid_flags = ir3_cat2_absneg(instr->opc) | in ir3_valid_flags() 1363 valid_flags |= IR3_REG_IMMED; in ir3_valid_flags() 1365 if (flags & ~valid_flags) in ir3_valid_flags() 1383 valid_flags = ir3_cat3_absneg(instr->opc) | in ir3_valid_flags() [all …]
|
/external/igt-gpu-tools/tests/ |
D | kms_vblank.c | 474 unsigned long valid_flags; in invalid_subtest() local 483 valid_flags = (_DRM_VBLANK_TYPES_MASK | in invalid_subtest() 489 vbl.request.type = _DRM_VBLANK_RELATIVE | ~valid_flags; in invalid_subtest() 494 if (valid_flags & (1 << bit)) in invalid_subtest()
|
/external/mesa3d/src/gallium/frontends/clover/api/ |
D | memory.cpp | 43 const cl_mem_flags valid_flags = in validate_flags() local 48 if ((d_flags & ~valid_flags) || in validate_flags()
|
/external/crosvm/devices/src/virtio/ |
D | block.rs | 682 let valid_flags = if req_type == VIRTIO_BLK_T_WRITE_ZEROES { in execute_request() localVariable 688 if (flags & !valid_flags) != 0 { in execute_request()
|
D | block_async.rs | 764 let valid_flags = if req_type == VIRTIO_BLK_T_WRITE_ZEROES { in execute_request() localVariable 770 if (flags & !valid_flags) != 0 { in execute_request()
|
/external/mesa3d/src/mesa/main/ |
D | bufferobj.c | 1748 GLbitfield valid_flags = GL_MAP_READ_BIT | in validate_buffer_storage() local 1756 valid_flags |= GL_SPARSE_STORAGE_BIT_ARB; in validate_buffer_storage() 1758 if (flags & ~valid_flags) { in validate_buffer_storage()
|
/external/vulkan-validation-layers/layers/ |
D | buffer_validation.cpp | 4145 …VkImageAspectFlags valid_flags = VK_IMAGE_ASPECT_COLOR_BIT | VK_IMAGE_ASPECT_PLANE_0_BIT | VK_IMAG… in ValidateImageAspectMask() local 4147 valid_flags = valid_flags | VK_IMAGE_ASPECT_PLANE_2_BIT; in ValidateImageAspectMask() 4149 if ((aspect_mask & valid_flags) != aspect_mask) { in ValidateImageAspectMask()
|
/external/mesa3d/docs/relnotes/ |
D | 20.2.0.rst | 4099 - freedreno/ir3/cp: extract valid_flags
|