/third_party/abseil-cpp/absl/base/internal/ |
D | bits.h | 55 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/ |
D | bits.h | 151 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/ |
D | deflate-degenerate-huffman-unused.deflate.commentary.txt | 25 "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/ |
D | numbers.jam | 9 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/ |
D | chachapoly.c | 61 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/ |
D | aaccoder_twoloop.h | 61 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 …]
|
D | aaccoder.c | 100 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 …]
|
D | cbs_av1.c | 33 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 …]
|
D | aacenc_is.c | 116 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()
|
D | aaccoder_trellis.h | 82 if (sce->zeroes[win*16 + swb]) { in codebook_trellis_rate() 177 memset(sce->zeroes + win*16 + start, !cb, count); in codebook_trellis_rate()
|
D | aacenc_pred.c | 260 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()
|
D | wavpack.c | 79 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/ |
D | rsa_pss.c | 19 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/ |
D | test_std_hash.cpp | 27 bitset_type zeroes(long_string.size(), 0); in main() local 32 bitsets.insert(zeroes); in main()
|
D | test_boost_hash.cpp | 29 bitset_type zeroes(long_string.size(), 0); in main() local 37 results.insert(bitset_hasher(zeroes)); in main()
|
/third_party/mesa3d/src/panfrost/bifrost/ |
D | bi_lower_divergent_indirects.c | 96 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/ |
D | list.qbk | 53 // Return the number of zeroes in the list 54 long zeroes(list l)
|
/third_party/mesa3d/src/gallium/drivers/v3d/ |
D | v3d_context.c | 203 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/ |
D | README.iconv | 24 leading zeroes stripped. 26 where xxx is the integer MIBenum without leading zeroes.
|
/third_party/boost/tools/build/src/build/ |
D | version.jam | 53 local rule is-all-zeroes ( sequence * ) 94 if ( ! $(done) && ! $(lhs) && ! [ is-all-zeroes $(rhs) ] )
|
/third_party/curl/tests/data/ |
D | test1164 | 29 HTTP/0.9 GET and all zeroes
|
D | test262 | 43 HTTP GET with binary zeroes in header
|
/third_party/flutter/skia/third_party/externals/wuffs/std/deflate/ |
D | README.md | 257 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/ |
D | mir.c | 255 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/ |
D | clinic.py | 3226 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 …]
|