Searched refs:has_channel (Results 1 – 7 of 7) sorted by relevance
/external/mesa3d/src/mesa/main/ |
D | format_info.py | 32 elif fmat.has_channel('r'): 33 if fmat.has_channel('g'): 34 if fmat.has_channel('b'): 35 if fmat.has_channel('a'): 43 elif fmat.has_channel('l'): 44 if fmat.has_channel('a'): 48 elif fmat.has_channel('a') and fmat.num_channels() == 1: 50 elif fmat.has_channel('z'): 51 if fmat.has_channel('s'): 55 elif fmat.has_channel('s'): [all …]
|
D | format_fallback.py | 73 if not fmt.has_channel('r') or not fmt.has_channel('x'):
|
D | format_parser.py | 440 def has_channel(self, name): member in Format
|
/external/virglrenderer/src/gallium/auxiliary/util/ |
D | u_format_parse.py | 235 def has_channel(self, id): member in Format 239 return self.colorspace == ZS and self.has_channel(0) 242 return self.colorspace == ZS and self.has_channel(1)
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_format_parse.py | 234 def has_channel(self, id): member in Format 238 return self.colorspace == ZS and self.has_channel(0) 241 return self.colorspace == ZS and self.has_channel(1)
|
/external/mesa3d/src/amd/vulkan/ |
D | vk_format_parse.py | 242 def has_channel(self, id): member in Format 246 return self.colorspace == ZS and self.has_channel(0) 249 return self.colorspace == ZS and self.has_channel(1)
|
/external/wpa_supplicant_8/wpa_supplicant/ |
D | p2p_supplicant.c | 3412 static int has_channel(struct wpa_global *global, in has_channel() function 3482 res = has_channel(wpa_s->global, mode, adj_chan, &flags); in wpas_p2p_verify_80mhz() 3542 res = has_channel(wpa_s->global, mode, adj_chan, &flags); in wpas_p2p_verify_160mhz() 3578 res2 = res = has_channel(wpa_s->global, mode, channel, &flag); in wpas_p2p_verify_channel() 3582 res2 = has_channel(wpa_s->global, mode, channel - 4, NULL); in wpas_p2p_verify_channel() 3586 res2 = has_channel(wpa_s->global, mode, channel + 4, NULL); in wpas_p2p_verify_channel()
|