Home
last modified time | relevance | path

Searched refs:tmp_mask (Results 1 – 4 of 4) sorted by relevance

/external/libyuv/files/source/
Drow_dspr2.cc604 uint32 tmp_mask = 0x7fff7fff; in I422ToARGBRow_DSPR2() local
665 [rgb_buf] "r"(rgb_buf), [tmp_mask] "r"(tmp_mask)); in I422ToARGBRow_DSPR2()
730 uint32 tmp_mask = 0xff; in RGB24ToARGBRow_DSPR2() local
744 : [tmp_mask] "r"(tmp_mask) in RGB24ToARGBRow_DSPR2()
758 uint32 tmp_mask = 0xff; in RAWToARGBRow_DSPR2() local
775 : [tmp_mask] "r"(tmp_mask) in RAWToARGBRow_DSPR2()
791 uint32 tmp_mask = 0xff; in RGB565ToARGBRow_DSPR2() local
814 : [tmp_mask] "r"(tmp_mask)); in RGB565ToARGBRow_DSPR2()
885 uint32 tmp_mask = 0x7fff7fff; in I444ToARGBRow_DSPR2() local
948 [rgb_buf] "r"(rgb_buf), [tmp_mask] "r"(tmp_mask)); in I444ToARGBRow_DSPR2()
[all …]
/external/selinux/libsepol/src/
Dnode_record.c458 char *tmp_mask = NULL; in hidden_def() local
460 if (node_alloc_addr_string(handle, node->proto, &tmp_mask) < 0) in hidden_def()
463 if (node_expand_addr(handle, node->mask, node->proto, tmp_mask) < 0) in hidden_def()
466 *mask = tmp_mask; in hidden_def()
470 free(tmp_mask); in hidden_def()
500 char *tmp_mask = NULL; in hidden_def() local
503 if (node_alloc_addr(handle, proto, &tmp_mask, &tmp_mask_sz) < 0) in hidden_def()
506 if (node_parse_addr(handle, mask, proto, tmp_mask) < 0) in hidden_def()
510 node->mask = tmp_mask; in hidden_def()
515 free(tmp_mask); in hidden_def()
[all …]
/external/openssh/
Daddrmatch.c298 struct xaddr tmp_addr, tmp_mask, tmp_result; in addr_host_is_all0s() local
301 if (addr_hostmask(a->af, masklen, &tmp_mask) == -1) in addr_host_is_all0s()
303 if (addr_and(&tmp_result, &tmp_addr, &tmp_mask) == -1) in addr_host_is_all0s()
352 struct xaddr tmp_mask, tmp_result; in addr_netmatch() local
357 if (addr_netmask(host->af, masklen, &tmp_mask) == -1) in addr_netmatch()
359 if (addr_and(&tmp_result, host, &tmp_mask) == -1) in addr_netmatch()
/external/webrtc/webrtc/modules/audio_processing/beamformer/
Dnonlinear_beamformer.cc444 float tmp_mask = CalculatePostfilterMask(*interf_cov_mats_[i][j], in ProcessAudioBlock() local
448 if (tmp_mask < new_mask_[i]) { in ProcessAudioBlock()
449 new_mask_[i] = tmp_mask; in ProcessAudioBlock()