Home
last modified time | relevance | path

Searched refs:SET_BIT (Results 1 – 11 of 11) sorted by relevance

/external/pcre/dist2/src/
Dpcre2_study.c55 #define SET_BIT(c) re->start_bitmap[(c)/8] |= (1 << ((c)&7)) macro
727 if (c > 0xff) SET_BIT(0xff); else in set_table_bit()
730 SET_BIT(c); in set_table_bit()
756 SET_BIT(buff[0]); in set_table_bit()
759 if (c > 0xff) SET_BIT(0xff); else SET_BIT(c); in set_table_bit()
765 else if (MAX_255(c)) SET_BIT(re->tables[fcc_offset + c]); in set_table_bit()
806 SET_BIT(buff[0]); in set_type_bits()
1001 if (c > 0xff) SET_BIT(0xff); else SET_BIT(c); in set_start_bits()
1160 SET_BIT(CHAR_HT); in set_start_bits()
1161 SET_BIT(CHAR_SPACE); in set_start_bits()
[all …]
/external/mesa3d/src/glx/
Dglxextensions.c38 #define SET_BIT(m,b) (m[ (b) / 8 ] |= (1U << ((b) % 8))) macro
371 SET_BIT(supported, ext[i].bit); in set_glx_extension()
465 SET_BIT(client_glx_support, bit); in __glXExtensionsCtr()
469 SET_BIT(direct_glx_support, bit); in __glXExtensionsCtr()
473 SET_BIT(client_glx_only, bit); in __glXExtensionsCtr()
477 SET_BIT(direct_glx_only, bit); in __glXExtensionsCtr()
485 SET_BIT(client_gl_support, bit); in __glXExtensionsCtr()
489 SET_BIT(client_gl_only, bit); in __glXExtensionsCtr()
651 SET_BIT(server_support, EXT_visual_info_bit); in __glXCalculateUsableExtensions()
652 SET_BIT(server_support, EXT_visual_rating_bit); in __glXCalculateUsableExtensions()
[all …]
/external/libavc/decoder/
Dih264d_parse_cabac.c226 SET_BIT(ps_tu_4x4->u2_sig_coeff_map, (i + first_coeff_offset)); in ih264d_read_coeff4x4_cabac()
283 SET_BIT(ps_tu_4x4->u2_sig_coeff_map, (i + first_coeff_offset)); in ih264d_read_coeff4x4_cabac()
711 SET_BIT(ps_tu_8x8->au4_sig_coeff_map[i>31], (i > 31 ? i - 32:i)); in ih264d_read_coeff8x8_cabac()
765 SET_BIT(ps_tu_8x8->au4_sig_coeff_map[i>31], (i > 31 ? i - 32:i)); in ih264d_read_coeff8x8_cabac()
1528 SET_BIT(u1_top_dc_csbp, i); in ih264d_parse_residual4x4_cabac()
1529 SET_BIT(u1_left_dc_csbp, i); in ih264d_parse_residual4x4_cabac()
1554 SET_BIT(ps_cur_mb_info->u1_yuv_dc_block_flag,(i+1)); in ih264d_parse_residual4x4_cabac()
Dih264d_mb_utils.h101SET_BIT(mb_map[u4_mb_number >> 3], u4_bit_number); \
133SET_BIT((*pu1_mb_flag), u4_bit_number); \
Dih264d_parse_cavlc.c396 SET_BIT(ps_tu_4x4->u2_sig_coeff_map, u4_scan_pos); in ih264d_cavlc_4x4res_block_totalcoeff_1()
639 SET_BIT(ps_tu_4x4->u2_sig_coeff_map, u4_scan_pos); in ih264d_cavlc_4x4res_block_totalcoeff_2to10()
659 SET_BIT(ps_tu_4x4->u2_sig_coeff_map, u4_scan_pos); in ih264d_cavlc_4x4res_block_totalcoeff_2to10()
676 SET_BIT(ps_tu_4x4->u2_sig_coeff_map, u4_scan_pos); in ih264d_cavlc_4x4res_block_totalcoeff_2to10()
941 SET_BIT(ps_tu_4x4->u2_sig_coeff_map, u4_scan_pos); in ih264d_cavlc_4x4res_block_totalcoeff_11to16()
957 SET_BIT(ps_tu_4x4->u2_sig_coeff_map, u4_scan_pos); in ih264d_cavlc_4x4res_block_totalcoeff_11to16()
1174 SET_BIT(ps_tu_4x4->u2_sig_coeff_map, u4_scan_pos); in ih264d_rest_of_residual_cav_chroma_dc_block()
1188 SET_BIT(ps_tu_4x4->u2_sig_coeff_map, u4_scan_pos); in ih264d_rest_of_residual_cav_chroma_dc_block()
1388 SET_BIT(ps_cur_mb_info->u1_yuv_dc_block_flag,1); in ih264d_cavlc_parse_chroma_dc()
1451 SET_BIT(ps_cur_mb_info->u1_yuv_dc_block_flag,2); in ih264d_cavlc_parse_chroma_dc()
Dih264d_parse_islice.c434 SET_BIT(ps_cur_mb_info->u1_yuv_dc_block_flag,0); in ih264d_parse_imb_cavlc()
711 SET_BIT(ps_cur_mb_info->u1_yuv_dc_block_flag,0); in ih264d_parse_imb_cabac()
Dih264d_process_intra_mb.c686 SET_BIT(u4_luma_dc_only_cbp,blk_8x8_cnt); in ih264d_unpack_luma_coeff8x8_mb()
/external/tpm2/
Dbits.h11 #define SET_BIT(bit, vector) BitSet((bit), (BYTE *)&(vector), sizeof(vector)) macro
DCryptSelfTest.c108 SET_BIT(alg, toTestVector); in CryptIncrementalSelfTest()
DAlgorithmCap.c180 SET_BIT(s_algorithms[index].algID, *implemented); in AlgorithmGetImplementedVector()
/external/libavc/common/
Dih264_macros.h104 #define SET_BIT(x, pos) (x) = (x) | (1 << pos); macro