Home
last modified time | relevance | path

Searched refs:bit_count (Results 1 – 7 of 7) sorted by relevance

/external/freetype/src/pshinter/
Dpshrec.c316 FT_UInt bit_count, in ps_mask_table_set_bits() argument
327 error = ps_mask_ensure( mask, bit_count, memory ); in ps_mask_table_set_bits()
331 mask->num_bits = bit_count; in ps_mask_table_set_bits()
342 for ( ; bit_count > 0; bit_count-- ) in ps_mask_table_set_bits()
997 FT_UInt bit_count, in ps_hints_t2mask() argument
1012 if ( bit_count != count1 + count2 ) in ps_hints_t2mask()
1016 bit_count, count1 + count2 )); in ps_hints_t2mask()
1042 FT_UInt bit_count, in ps_hints_t2counter() argument
1057 if ( bit_count != count1 + count2 ) in ps_hints_t2counter()
1061 bit_count, count1 + count2 )); in ps_hints_t2counter()
/external/freetype/include/freetype/internal/
Dpshints.h510 FT_UInt bit_count,
551 FT_UInt bit_count,
/external/llvm/test/CodeGen/X86/
D2011-05-27-CrossClassCoalescing.ll5 @bit_count = external constant [256 x i32], align 16
30 %arrayidx16.i = getelementptr inbounds [256 x i32]* @bit_count, i64 0, i64 %idxprom15.i
/external/libnfc-nci/src/nfc/tags/
Drw_t1t_ndef.c2010 UINT8 bit_count = 0; in rw_t1t_get_lock_bits_for_segment() local
2044 bit_count = 0; in rw_t1t_get_lock_bits_for_segment()
2045 while (bit_count < num_bits) in rw_t1t_get_lock_bits_for_segment()
2052 *p_start_bit = bit_count; in rw_t1t_get_lock_bits_for_segment()
2053 bit_count++; in rw_t1t_get_lock_bits_for_segment()
2057 bit_count++; in rw_t1t_get_lock_bits_for_segment()
2075 if ((bytes_locked_per_bit * (num_bits - bit_count)) + byte_count < upper_offset) in rw_t1t_get_lock_bits_for_segment()
2077 byte_count += bytes_locked_per_bit * (num_bits - bit_count); in rw_t1t_get_lock_bits_for_segment()
2078 total_bits += num_bits - bit_count; in rw_t1t_get_lock_bits_for_segment()
2079 bit_count = 0; in rw_t1t_get_lock_bits_for_segment()
[all …]
Drw_t2t_ndef.c2165 UINT8 bit_count = 0; in rw_t2t_get_lock_bits_for_segment() local
2210 bit_count = 0; in rw_t2t_get_lock_bits_for_segment()
2211 while (bit_count < num_bits) in rw_t2t_get_lock_bits_for_segment()
2219 *p_start_bit = bit_count; in rw_t2t_get_lock_bits_for_segment()
2220 bit_count++; in rw_t2t_get_lock_bits_for_segment()
2224 bit_count++; in rw_t2t_get_lock_bits_for_segment()
2240 if ((bytes_locked_per_bit * (num_bits - bit_count)) + byte_count < upper_offset) in rw_t2t_get_lock_bits_for_segment()
2243 byte_count += bytes_locked_per_bit * (num_bits - bit_count); in rw_t2t_get_lock_bits_for_segment()
2244 total_bits += num_bits - bit_count; in rw_t2t_get_lock_bits_for_segment()
2245 bit_count = 0; in rw_t2t_get_lock_bits_for_segment()
[all …]
/external/webrtc/src/modules/audio_processing/utility/
Ddelay_estimator.c226 int32_t bit_count = (handle->bit_counts[i] << 9); // Q9. in WebRtc_ProcessBinarySpectrum() local
235 WebRtc_MeanEstimatorFix(bit_count, shifts, &(handle->mean_bit_counts[i])); in WebRtc_ProcessBinarySpectrum()
/external/ppp/pppd/
Dauth.c2085 int bit_count; local
2088 bit_count = (int) strtol (ptr_mask+1, &endp, 10);
2089 if (bit_count <= 0 || bit_count > 32) {
2094 bit_count = 32 - bit_count; /* # bits in host part */
2104 mask <<= bit_count;