Home
last modified time | relevance | path

Searched refs:zeroes (Results 1 – 25 of 158) sorted by relevance

1234567

/third_party/abseil-cpp/absl/base/internal/
Dbits.h55 int zeroes = 60; in CountLeadingZeros64Slow() local
57 zeroes -= 32; in CountLeadingZeros64Slow()
61 zeroes -= 16; in CountLeadingZeros64Slow()
65 zeroes -= 8; in CountLeadingZeros64Slow()
69 zeroes -= 4; in CountLeadingZeros64Slow()
72 return "\4\3\2\2\1\1\1\1\0\0\0\0\0\0\0"[n] + zeroes; in CountLeadingZeros64Slow()
113 int zeroes = 28; in CountLeadingZeros32Slow() local
115 zeroes -= 16; in CountLeadingZeros32Slow()
119 zeroes -= 8; in CountLeadingZeros32Slow()
123 zeroes -= 4; in CountLeadingZeros32Slow()
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/numeric/internal/
Dbits.h151 int zeroes = 28; in CountLeadingZeroes32()
153 zeroes -= 16; in CountLeadingZeroes32()
157 zeroes -= 8; in CountLeadingZeroes32()
161 zeroes -= 4; in CountLeadingZeroes32()
164 return "\4\3\2\2\1\1\1\1\0\0\0\0\0\0\0"[x] + zeroes; in CountLeadingZeroes32()
211 int zeroes = 60; in CountLeadingZeroes64()
213 zeroes -= 32; in CountLeadingZeroes64()
217 zeroes -= 16; in CountLeadingZeroes64()
221 zeroes -= 8; in CountLeadingZeroes64()
225 zeroes -= 4; in CountLeadingZeroes64()
[all …]
/third_party/flutter/skia/third_party/externals/wuffs/test/data/artificial/
Ddeflate-degenerate-huffman-unused.deflate.commentary.txt25 "10" -> CodeLength=17 which means a block of ( 3 + 3_extra_bits) zeroes
26 "11" -> CodeLength=18 which means a block of (11 + 7_extra_bits) zeroes
32 000009 0x0009 . 0xB7 0b_1011_011. 7extra=91: 102 zeroes
35 000010 0x000A V 0x56 0b_.101_.... 3extra=5: 8 zeroes
39 000011 0x000B . 0xFE 0b_1111_1... 7extra=127: 138 zeroes
42 000012 0x000C 7 0x37 0b_.011_.... 3extra=3: 6 zeroes
/third_party/boost/tools/build/src/util/
Dnumbers.jam9 rule trim-leading-zeroes ( value )
135 assert.result 0 : trim-leading-zeroes 0 ;
136 assert.result 1234 : trim-leading-zeroes 1234 ;
137 assert.result 123456 : trim-leading-zeroes 0000123456 ;
138 assert.result 1000123456 : trim-leading-zeroes 1000123456 ;
139 assert.result 10000 : trim-leading-zeroes 10000 ;
140 assert.result 10000 : trim-leading-zeroes 00010000 ;
/third_party/mbedtls/library/
Dchachapoly.c61 unsigned char zeroes[15]; in chachapoly_pad_aad() local
66 memset( zeroes, 0, sizeof( zeroes ) ); in chachapoly_pad_aad()
69 zeroes, in chachapoly_pad_aad()
81 unsigned char zeroes[15]; in chachapoly_pad_ciphertext() local
86 memset( zeroes, 0, sizeof( zeroes ) ); in chachapoly_pad_ciphertext()
88 zeroes, in chachapoly_pad_ciphertext()
/third_party/ffmpeg/libavcodec/
Daaccoder_twoloop.h61 return (!g || !sce->zeroes[w*16+g-1] || !sce->can_pns[w*16+g-1]) ? 9 : 5; in ff_pns_bits()
226 sce->zeroes[(w+w2)*16+g] = 1; in search_for_quantizers_twoloop()
248 sce->zeroes[w*16+g] = !nz; in search_for_quantizers_twoloop()
266 if (sce->zeroes[w*16+g]) { in search_for_quantizers_twoloop()
289 if (!sce->zeroes[w*16+g]) in search_for_quantizers_twoloop()
385 if (sce->zeroes[w*16+g] || sce->sf_idx[w*16+g] >= 218) { in search_for_quantizers_twoloop()
466 if (sce->zeroes[w*16+g] || sce->sf_idx[w*16+g] >= 218) { in search_for_quantizers_twoloop()
508 …if (!sce->zeroes[w*16+g] && sce->sf_idx[w*16+g] > SCALE_ONE_POS && dists[w*16+g] > uplims[w*16+g]*… in search_for_quantizers_twoloop()
527 … if (start >= pns_start_pos && !sce->zeroes[w*16+g] && sce->can_pns[w*16+g]) { in search_for_quantizers_twoloop()
557 … if (!sce->zeroes[w*16+g] && sce->can_pns[w*16+g] && spread_thr_r[w*16+g] <= zspread in search_for_quantizers_twoloop()
[all …]
Daaccoder.c100 if (sce->zeroes[win*16 + swb]) { in encode_window_bands_info()
173 memset(sce->zeroes + win*16 + start, !cb, count); in encode_window_bands_info()
204 if (sce->zeroes[w*16+g]) in set_special_band_scalefactors()
224 if (sce->zeroes[w*16+g]) in set_special_band_scalefactors()
261 memset(sce->zeroes, 1, sizeof(sce->zeroes)); in search_for_quantizers_anmr()
316 sce->zeroes[(w+w2)*16+g] = 1; in search_for_quantizers_anmr()
319 sce->zeroes[(w+w2)*16+g] = 0; in search_for_quantizers_anmr()
369 sce->zeroes[w*16+g] = !nz; in search_for_quantizers_anmr()
423 sce->zeroes[(w+w2)*16+g] = 1; in search_for_quantizers_fast()
430 sce->zeroes[w*16+g] = !nz; in search_for_quantizers_fast()
[all …]
Dcbs_av1.c33 uint32_t zeroes, bits_value, value; in cbs_av1_read_uvlc() local
39 zeroes = 0; in cbs_av1_read_uvlc()
49 ++zeroes; in cbs_av1_read_uvlc()
52 if (zeroes >= 32) { in cbs_av1_read_uvlc()
55 if (get_bits_left(gbc) < zeroes) { in cbs_av1_read_uvlc()
61 bits_value = get_bits_long(gbc, zeroes); in cbs_av1_read_uvlc()
62 value = bits_value + (UINT32_C(1) << zeroes) - 1; in cbs_av1_read_uvlc()
69 if (zeroes >= 32) { in cbs_av1_read_uvlc()
70 while (zeroes > 32) { in cbs_av1_read_uvlc()
71 k = FFMIN(zeroes - 32, 32); in cbs_av1_read_uvlc()
[all …]
Daacenc_is.c116 cpe->ch[0].band_type[w*16+g] != NOISE_BT && !cpe->ch[0].zeroes[w*16+g] && in ff_aac_search_for_is()
117 cpe->ch[1].band_type[w*16+g] != NOISE_BT && !cpe->ch[1].zeroes[w*16+g] && in ff_aac_search_for_is()
151 if (!sce1->zeroes[w*16+g] && sce1->band_type[w*16+g] < RESERVED_BT) in ff_aac_search_for_is()
Daaccoder_trellis.h82 if (sce->zeroes[win*16 + swb]) { in codebook_trellis_rate()
177 memset(sce->zeroes + win*16 + start, !cb, count); in codebook_trellis_rate()
Daacenc_pred.c260 const int cb_n = sce->zeroes[sfb] ? 0 : sce->band_type[sfb]; in ff_aac_search_for_pred()
261 const int cb_min = sce->zeroes[sfb] ? 0 : 1; in ff_aac_search_for_pred()
262 const int cb_max = sce->zeroes[sfb] ? 0 : RESERVED_BT; in ff_aac_search_for_pred()
Dwavpack.c79 int zero, one, zeroes; member
184 if (ctx->zeroes) { in wv_get_value()
185 ctx->zeroes--; in wv_get_value()
186 if (ctx->zeroes) { in wv_get_value()
200 ctx->zeroes = t; in wv_get_value()
201 if (ctx->zeroes) { in wv_get_value()
789 s->one = s->zero = s->zeroes = 0; in wv_unpack_stereo()
917 s->one = s->zero = s->zeroes = 0; in wv_unpack_mono()
/third_party/openssl/crypto/rsa/
Drsa_pss.c19 static const unsigned char zeroes[] = { 0, 0, 0, 0, 0, 0, 0, 0 }; variable
114 || !EVP_DigestUpdate(ctx, zeroes, sizeof(zeroes)) in RSA_verify_PKCS1_PSS_mgf1()
212 || !EVP_DigestUpdate(ctx, zeroes, sizeof(zeroes)) in RSA_padding_add_PKCS1_PSS_mgf1()
/third_party/boost/libs/dynamic_bitset/test/
Dtest_std_hash.cpp27 bitset_type zeroes(long_string.size(), 0); in main() local
32 bitsets.insert(zeroes); in main()
Dtest_boost_hash.cpp29 bitset_type zeroes(long_string.size(), 0); in main() local
37 results.insert(bitset_hasher(zeroes)); in main()
/third_party/mesa3d/src/panfrost/bifrost/
Dbi_lower_divergent_indirects.c96 nir_ssa_def *zeroes[4] = { zero, zero, zero, zero }; in bi_lower_divergent_indirects_impl() local
98 nir_vec(b, zeroes, nir_dest_num_components(intr->dest)) : NULL; in bi_lower_divergent_indirects_impl()
/third_party/boost/libs/python/doc/reference/
Dlist.qbk53 // Return the number of zeroes in the list
54 long zeroes(list l)
/third_party/mesa3d/src/gallium/drivers/v3d/
Dv3d_context.c203 uint32_t zeroes[8] = { 0 }; in v3d_ensure_prim_counts_allocated() local
205 0, sizeof(zeroes), 32, zeroes, in v3d_ensure_prim_counts_allocated()
/third_party/libxml2/os400/iconv/
DREADME.iconv24 leading zeroes stripped.
26 where xxx is the integer MIBenum without leading zeroes.
/third_party/boost/tools/build/src/build/
Dversion.jam53 local rule is-all-zeroes ( sequence * )
94 if ( ! $(done) && ! $(lhs) && ! [ is-all-zeroes $(rhs) ] )
/third_party/curl/tests/data/
Dtest116429 HTTP/0.9 GET and all zeroes
Dtest26243 HTTP GET with binary zeroes in header
/third_party/flutter/skia/third_party/externals/wuffs/std/deflate/
DREADME.md257 lcode_lengths has 3 + 7 = 10 consecutive zeroes
259 lcode_lengths has 11 + 10 = 21 consecutive zeroes
262 lcode_lengths has 3 + 2 = 5 consecutive zeroes
264 lcode_lengths has 3 + 1 = 4 consecutive zeroes
274 lengths (zeroes are not shown here):
/third_party/mesa3d/src/panfrost/midgard/
Dmir.c255 unsigned zeroes = __builtin_ctz(ins->mask); in mir_upper_override() local
258 return (zeroes >= threshold) ? threshold : 0; in mir_upper_override()
/third_party/python/Tools/clinic/
Dclinic.py3226 def str_converter_key(types, encoding, zeroes): argument
3227 return (frozenset(types), bool(encoding), bool(zeroes))
3236 def converter_init(self, *, accept={str}, encoding=None, zeroes=False): argument
3238 key = str_converter_key(accept, encoding, zeroes)
3244 self.length = bool(zeroes)
3314 def r(format_unit, *, accept, encoding=False, zeroes=False): argument
3327 if zeroes:
3333 key = str_converter_key(accept, encoding, zeroes)
3339 r('es#', encoding=True, zeroes=True, accept={str})
3341 r('et#', encoding=True, zeroes=True, accept={bytes, bytearray, str})
[all …]

1234567