/third_party/pcre2/pcre2/src/ |
D | pcre2_match.c | 59 #define NLBLOCK mb /* Block containing newline information */ 215 match_block *mb, pcre2_match_data *match_data, const char *s, ...) in display_frames() argument 235 i, Q->group_frame_type, Q->eptr - mb->start_subject, *(Q->ecode), in display_frames() 268 do_callout(heapframe *F, match_block *mb, PCRE2_SIZE *lengthptr) in do_callout() argument 278 if (mb->callout == NULL) return 0; /* No callout function provided */ in do_callout() 296 cb = mb->cb; in do_callout() 300 cb->mark = mb->nomatch_mark; in do_callout() 301 cb->current_position = (PCRE2_SIZE)(Feptr - mb->start_subject); in do_callout() 324 rc = mb->callout(cb, mb->callout_data); in do_callout() 356 match_ref(PCRE2_SIZE offset, BOOL caseless, heapframe *F, match_block *mb, in match_ref() argument [all …]
|
D | pcre2_dfa_match.c | 79 #define NLBLOCK mb /* Block containing newline information */ 354 PCRE2_SPTR ptr, dfa_match_block *mb, PCRE2_SIZE extracode, in do_callout_dfa() argument 357 pcre2_callout_block *cb = mb->cb; in do_callout_dfa() 363 if (mb->callout == NULL) return 0; /* No callout provided */ in do_callout_dfa() 369 cb->start_match = (PCRE2_SIZE)(current_subject - mb->start_subject); in do_callout_dfa() 370 cb->current_position = (PCRE2_SIZE)(ptr - mb->start_subject); in do_callout_dfa() 389 return (mb->callout)(cb, mb->callout_data); in do_callout_dfa() 413 more_workspace(RWS_anchor **rwsptr, unsigned int ovecsize, dfa_match_block *mb) in more_workspace() argument 432 if (newsizeK + mb->heap_used > mb->heap_limit) in more_workspace() 433 newsizeK = (uint32_t)(mb->heap_limit - mb->heap_used); in more_workspace() [all …]
|
/third_party/mesa3d/src/gallium/auxiliary/vl/ |
D | vl_mpeg12_bitstream.c | 656 motion_vector_frame(struct vl_mpg12_bs *bs, int s, struct pipe_mpeg12_macroblock *mb) in motion_vector_frame() argument 658 int dmv = mb->macroblock_modes.bits.frame_motion_type == PIPE_MPEG12_MO_TYPE_DUAL_PRIME; in motion_vector_frame() 661 if (mb->macroblock_modes.bits.frame_motion_type == PIPE_MPEG12_MO_TYPE_FIELD) { in motion_vector_frame() 662 mb->motion_vertical_field_select |= vl_vlc_get_uimsbf(&bs->vlc, 1) << s; in motion_vector_frame() 664 mb->PMV[0][s][0] = wrap(mb->PMV[0][s][0] + delta[0], bs->desc->f_code[s][0]); in motion_vector_frame() 665 mb->PMV[0][s][1] = wrap(DIV2DOWN(mb->PMV[0][s][1]) + delta[1], bs->desc->f_code[s][1]) * 2; in motion_vector_frame() 667 mb->motion_vertical_field_select |= vl_vlc_get_uimsbf(&bs->vlc, 1) << (s + 2); in motion_vector_frame() 669 mb->PMV[1][s][0] = wrap(mb->PMV[1][s][0] + delta[0], bs->desc->f_code[s][0]); in motion_vector_frame() 670 mb->PMV[1][s][1] = wrap(DIV2DOWN(mb->PMV[1][s][1]) + delta[1], bs->desc->f_code[s][1]) * 2; in motion_vector_frame() 674 mb->PMV[0][s][0] = wrap(mb->PMV[0][s][0] + delta[0], bs->desc->f_code[s][0]); in motion_vector_frame() [all …]
|
/third_party/node/deps/brotli/c/enc/ |
D | metablock.h | 42 static BROTLI_INLINE void InitMetaBlockSplit(MetaBlockSplit* mb) { in InitMetaBlockSplit() argument 43 BrotliInitBlockSplit(&mb->literal_split); in InitMetaBlockSplit() 44 BrotliInitBlockSplit(&mb->command_split); in InitMetaBlockSplit() 45 BrotliInitBlockSplit(&mb->distance_split); in InitMetaBlockSplit() 46 mb->literal_context_map = 0; in InitMetaBlockSplit() 47 mb->literal_context_map_size = 0; in InitMetaBlockSplit() 48 mb->distance_context_map = 0; in InitMetaBlockSplit() 49 mb->distance_context_map_size = 0; in InitMetaBlockSplit() 50 mb->literal_histograms = 0; in InitMetaBlockSplit() 51 mb->literal_histograms_size = 0; in InitMetaBlockSplit() [all …]
|
D | metablock.c | 136 MetaBlockSplit* mb) { in BrotliBuildMetaBlock() argument 190 &mb->literal_split, in BrotliBuildMetaBlock() 191 &mb->command_split, in BrotliBuildMetaBlock() 192 &mb->distance_split); in BrotliBuildMetaBlock() 198 BROTLI_ALLOC(m, ContextType, mb->literal_split.num_types); in BrotliBuildMetaBlock() 200 for (i = 0; i < mb->literal_split.num_types; ++i) { in BrotliBuildMetaBlock() 206 mb->literal_split.num_types * literal_context_multiplier; in BrotliBuildMetaBlock() 213 mb->distance_split.num_types << BROTLI_DISTANCE_CONTEXT_BITS; in BrotliBuildMetaBlock() 219 BROTLI_DCHECK(mb->command_histograms == 0); in BrotliBuildMetaBlock() 220 mb->command_histograms_size = mb->command_split.num_types; in BrotliBuildMetaBlock() [all …]
|
/third_party/skia/third_party/externals/brotli/c/enc/ |
D | metablock.h | 42 static BROTLI_INLINE void InitMetaBlockSplit(MetaBlockSplit* mb) { in InitMetaBlockSplit() argument 43 BrotliInitBlockSplit(&mb->literal_split); in InitMetaBlockSplit() 44 BrotliInitBlockSplit(&mb->command_split); in InitMetaBlockSplit() 45 BrotliInitBlockSplit(&mb->distance_split); in InitMetaBlockSplit() 46 mb->literal_context_map = 0; in InitMetaBlockSplit() 47 mb->literal_context_map_size = 0; in InitMetaBlockSplit() 48 mb->distance_context_map = 0; in InitMetaBlockSplit() 49 mb->distance_context_map_size = 0; in InitMetaBlockSplit() 50 mb->literal_histograms = 0; in InitMetaBlockSplit() 51 mb->literal_histograms_size = 0; in InitMetaBlockSplit() [all …]
|
D | metablock.c | 136 MetaBlockSplit* mb) { in BrotliBuildMetaBlock() argument 190 &mb->literal_split, in BrotliBuildMetaBlock() 191 &mb->command_split, in BrotliBuildMetaBlock() 192 &mb->distance_split); in BrotliBuildMetaBlock() 198 BROTLI_ALLOC(m, ContextType, mb->literal_split.num_types); in BrotliBuildMetaBlock() 200 for (i = 0; i < mb->literal_split.num_types; ++i) { in BrotliBuildMetaBlock() 206 mb->literal_split.num_types * literal_context_multiplier; in BrotliBuildMetaBlock() 213 mb->distance_split.num_types << BROTLI_DISTANCE_CONTEXT_BITS; in BrotliBuildMetaBlock() 219 BROTLI_DCHECK(mb->command_histograms == 0); in BrotliBuildMetaBlock() 220 mb->command_histograms_size = mb->command_split.num_types; in BrotliBuildMetaBlock() [all …]
|
/third_party/mesa3d/src/amd/vulkan/radix_sort/common/vk/ |
D | barrier.c | 18 static VkMemoryBarrier const mb = { in vk_barrier_compute_w_to_compute_r() local 31 &mb, in vk_barrier_compute_w_to_compute_r() 45 static VkMemoryBarrier const mb = { in vk_barrier_compute_w_to_transfer_r() local 58 &mb, in vk_barrier_compute_w_to_transfer_r() 72 static VkMemoryBarrier const mb = { in vk_barrier_transfer_w_to_compute_r() local 85 &mb, in vk_barrier_transfer_w_to_compute_r() 99 static VkMemoryBarrier const mb = { in vk_barrier_transfer_w_to_compute_w() local 112 &mb, in vk_barrier_transfer_w_to_compute_w() 126 static VkMemoryBarrier const mb = { in vk_barrier_compute_w_to_indirect_compute_r() local 140 &mb, in vk_barrier_compute_w_to_indirect_compute_r() [all …]
|
/third_party/python/Lib/idlelib/idle_test/ |
D | test_browser.py | 24 cls.mb = browser.ModuleBrowser(cls.root, __file__, _utest=True) 28 cls.mb.close() 31 del cls.root, cls.mb 34 mb = self.mb 36 eq(mb.path, __file__) 38 self.assertIsInstance(mb.node, TreeNode) 42 mb = self.mb 43 self.assertIn(os.path.basename(__file__), mb.top.title()) 44 self.assertEqual(mb.top.iconname(), 'Module Browser') 47 mb = self.mb [all …]
|
/third_party/ffmpeg/libavcodec/ |
D | indeo4.c | 474 IVIMbInfo *mb, *ref_mb; in decode_mb_info() local 477 mb = tile->mbs; in decode_mb_info() 497 mb->xpos = x; in decode_mb_info() 498 mb->ypos = y; in decode_mb_info() 499 mb->buf_offs = mb_offset; in decode_mb_info() 500 mb->b_mv_x = in decode_mb_info() 501 mb->b_mv_y = 0; in decode_mb_info() 513 mb->type = 1; /* empty macroblocks are always INTER */ in decode_mb_info() 514 mb->cbp = 0; /* all blocks are empty */ in decode_mb_info() 516 mb->q_delta = 0; in decode_mb_info() [all …]
|
D | dvdec.c | 265 static void dv_decode_ac(GetBitContext *gb, BlockInfo *mb, int16_t *block) in dv_decode_ac() argument 268 const uint8_t *scan_table = mb->scan_table; in dv_decode_ac() 269 const uint32_t *factor_table = mb->factor_table; in dv_decode_ac() 270 int pos = mb->pos; in dv_decode_ac() 271 int partial_bit_count = mb->partial_bit_count; in dv_decode_ac() 280 mb->partial_bit_buffer; in dv_decode_ac() 282 mb->partial_bit_count = 0; in dv_decode_ac() 303 mb->partial_bit_count = last_index - re_index; in dv_decode_ac() 304 mb->partial_bit_buffer = re_cache & ~(-1u >> mb->partial_bit_count); in dv_decode_ac() 322 mb->pos = pos; in dv_decode_ac() [all …]
|
D | indeo5.c | 460 IVIMbInfo *mb, *ref_mb; in decode_mb_info() local 463 mb = tile->mbs; in decode_mb_info() 485 mb->xpos = x; in decode_mb_info() 486 mb->ypos = y; in decode_mb_info() 487 mb->buf_offs = mb_offset; in decode_mb_info() 494 mb->type = 1; /* empty macroblocks are always INTER */ in decode_mb_info() 495 mb->cbp = 0; /* all blocks are empty */ in decode_mb_info() 497 mb->q_delta = 0; in decode_mb_info() 499 mb->q_delta = get_vlc2(&ctx->gb, ctx->mb_vlc.tab->table, in decode_mb_info() 501 mb->q_delta = IVI_TOSIGNED(mb->q_delta); in decode_mb_info() [all …]
|
D | cinepakenc.c | 121 mb_info *mb; // MB RD state member 209 if (!(s->mb = av_malloc_array(mb_count, sizeof(mb_info)))) in cinepak_encode_init() 267 mb_info *mb; in calculate_mode_score() local 280 mb = &s->mb[x]; in calculate_mode_score() 281 ret += FF_LAMBDA_SCALE * mb->v1_error; in calculate_mode_score() 284 mb->best_encoding = ENC_V1; in calculate_mode_score() 295 mb = &s->mb[x]; in calculate_mode_score() 296 if (mb->best_encoding == ENC_V1) in calculate_mode_score() 297 score1 = s->lambda * 9 + FF_LAMBDA_SCALE * (mberr = mb->v1_error); in calculate_mode_score() 299 score1 = s->lambda * 33 + FF_LAMBDA_SCALE * (mberr = mb->v4_error); in calculate_mode_score() [all …]
|
D | ivi.c | 604 IVIMbInfo *mb; in ivi_decode_blocks() local 626 for (mbn = 0, mb = tile->mbs; mbn < tile->num_MBs; mb++, mbn++) { in ivi_decode_blocks() 627 is_intra = !mb->type; in ivi_decode_blocks() 628 cbp = mb->cbp; in ivi_decode_blocks() 629 buf_offs = mb->buf_offs; in ivi_decode_blocks() 631 quant = band->glob_quant + mb->q_delta; in ivi_decode_blocks() 642 mv_x = mb->mv_x; in ivi_decode_blocks() 643 mv_y = mb->mv_y; in ivi_decode_blocks() 644 mv_x2 = mb->b_mv_x; in ivi_decode_blocks() 645 mv_y2 = mb->b_mv_y; in ivi_decode_blocks() [all …]
|
D | vp8.c | 921 int decode_splitmvs(VP8Context *s, VP56RangeCoder *c, VP8Macroblock *mb, in decode_splitmvs() argument 927 VP8Macroblock *left_mb = &mb[-1]; in decode_splitmvs() 932 VP56mv *cur_mv = mb->bmv; in decode_splitmvs() 935 top_mb = &mb[2]; in decode_splitmvs() 937 top_mb = &mb[-s->mb_width - 1]; in decode_splitmvs() 953 mb->partitioning = part_idx; in decode_splitmvs() 974 mb->bmv[n].y = mb->mv.y + in decode_splitmvs() 976 mb->bmv[n].x = mb->mv.x + in decode_splitmvs() 979 AV_ZERO32(&mb->bmv[n]); in decode_splitmvs() 982 AV_WN32A(&mb->bmv[n], above); in decode_splitmvs() [all …]
|
/third_party/node/deps/icu-small/source/tools/toolutil/ |
D | ucm.cpp | 276 UCMapping *mb, *mbLimit; in ucm_moveMappings() local 279 mb=base->mappings; in ucm_moveMappings() 280 mbLimit=mb+base->mappingsLength; in ucm_moveMappings() 282 while(mb<mbLimit) { in ucm_moveMappings() 283 flag=mb->moveFlag; in ucm_moveMappings() 286 mb->moveFlag=0; in ucm_moveMappings() 290 ucm_addMapping(ext, mb, UCM_GET_CODE_POINTS(base, mb), UCM_GET_BYTES(base, mb)); in ucm_moveMappings() 294 if(mb<(mbLimit-1)) { in ucm_moveMappings() 295 uprv_memcpy(mb, mbLimit-1, sizeof(UCMapping)); in ucm_moveMappings() 301 ++mb; in ucm_moveMappings() [all …]
|
/third_party/icu/icu4c/source/tools/toolutil/ |
D | ucm.cpp | 276 UCMapping *mb, *mbLimit; in ucm_moveMappings() local 279 mb=base->mappings; in ucm_moveMappings() 280 mbLimit=mb+base->mappingsLength; in ucm_moveMappings() 282 while(mb<mbLimit) { in ucm_moveMappings() 283 flag=mb->moveFlag; in ucm_moveMappings() 286 mb->moveFlag=0; in ucm_moveMappings() 290 ucm_addMapping(ext, mb, UCM_GET_CODE_POINTS(base, mb), UCM_GET_BYTES(base, mb)); in ucm_moveMappings() 294 if(mb<(mbLimit-1)) { in ucm_moveMappings() 295 uprv_memcpy(mb, mbLimit-1, sizeof(UCMapping)); in ucm_moveMappings() 301 ++mb; in ucm_moveMappings() [all …]
|
/third_party/skia/third_party/externals/icu/source/tools/toolutil/ |
D | ucm.cpp | 276 UCMapping *mb, *mbLimit; in ucm_moveMappings() local 279 mb=base->mappings; in ucm_moveMappings() 280 mbLimit=mb+base->mappingsLength; in ucm_moveMappings() 282 while(mb<mbLimit) { in ucm_moveMappings() 283 flag=mb->moveFlag; in ucm_moveMappings() 286 mb->moveFlag=0; in ucm_moveMappings() 290 ucm_addMapping(ext, mb, UCM_GET_CODE_POINTS(base, mb), UCM_GET_BYTES(base, mb)); in ucm_moveMappings() 294 if(mb<(mbLimit-1)) { in ucm_moveMappings() 295 uprv_memcpy(mb, mbLimit-1, sizeof(UCMapping)); in ucm_moveMappings() 301 ++mb; in ucm_moveMappings() [all …]
|
/third_party/icu/icu4c/source/data/locales/ |
D | nnh.txt | 113 "mbɔ́ɔntè mvfò lyɛ̌ʼ", 115 "mbɔ́ɔntè tsetsɛ̀ɛ lyɛ̌ʼ", 122 "mbɔ́ɔntè mvfò lyɛ̌ʼ", 124 "mbɔ́ɔntè tsetsɛ̀ɛ lyɛ̌ʼ", 131 "mbɔ́ɔntè mvfò lyɛ̌ʼ", 133 "mbɔ́ɔntè tsetsɛ̀ɛ lyɛ̌ʼ", 142 "mbɔ́ɔntè mvfò lyɛ̌ʼ", 144 "mbɔ́ɔntè tsetsɛ̀ɛ lyɛ̌ʼ", 151 "mbɔ́ɔntè mvfò lyɛ̌ʼ", 153 "mbɔ́ɔntè tsetsɛ̀ɛ lyɛ̌ʼ", [all …]
|
/third_party/skia/third_party/externals/icu/source/data/locales/ |
D | nnh.txt | 93 "mbɔ́ɔntè mvfò lyɛ̌ʼ", 95 "mbɔ́ɔntè tsetsɛ̀ɛ lyɛ̌ʼ", 102 "mbɔ́ɔntè mvfò lyɛ̌ʼ", 104 "mbɔ́ɔntè tsetsɛ̀ɛ lyɛ̌ʼ", 111 "mbɔ́ɔntè mvfò lyɛ̌ʼ", 113 "mbɔ́ɔntè tsetsɛ̀ɛ lyɛ̌ʼ", 122 "mbɔ́ɔntè mvfò lyɛ̌ʼ", 124 "mbɔ́ɔntè tsetsɛ̀ɛ lyɛ̌ʼ", 131 "mbɔ́ɔntè mvfò lyɛ̌ʼ", 133 "mbɔ́ɔntè tsetsɛ̀ɛ lyɛ̌ʼ", [all …]
|
/third_party/mesa3d/src/gallium/drivers/nouveau/ |
D | nouveau_video.c | 104 nouveau_vpe_mb_dct_blocks(struct nouveau_decoder *dec, const struct pipe_mpeg12_macroblock *mb) in nouveau_vpe_mb_dct_blocks() argument 107 unsigned cbp = mb->coded_block_pattern; in nouveau_vpe_mb_dct_blocks() 108 short *db = mb->blocks; in nouveau_vpe_mb_dct_blocks() 122 } else if (mb->macroblock_type & PIPE_MPEG12_MB_TYPE_INTRA) { in nouveau_vpe_mb_dct_blocks() 129 nouveau_vpe_mb_data_blocks(struct nouveau_decoder *dec, const struct pipe_mpeg12_macroblock *mb) in nouveau_vpe_mb_data_blocks() argument 132 unsigned cbp = mb->coded_block_pattern; in nouveau_vpe_mb_data_blocks() 133 short *db = mb->blocks; in nouveau_vpe_mb_data_blocks() 139 } else if (mb->macroblock_type & PIPE_MPEG12_MB_TYPE_INTRA) { in nouveau_vpe_mb_data_blocks() 148 const struct pipe_mpeg12_macroblock *mb, in nouveau_vpe_mb_dct_header() argument 152 bool intra = mb->macroblock_type & PIPE_MPEG12_MB_TYPE_INTRA; in nouveau_vpe_mb_dct_header() [all …]
|
/third_party/nghttp2/src/ |
D | allocator.h | 89 for (auto mb = retain; mb;) { in reset() local 90 auto next = mb->next; in reset() 91 delete[] reinterpret_cast<uint8_t *>(mb); in reset() 92 mb = next; in reset() 101 auto mb = reinterpret_cast<MemBlock *>(block); in alloc_mem_block() local 103 mb->next = retain; in alloc_mem_block() 104 mb->begin = mb->last = block + sizeof(MemBlock); in alloc_mem_block() 105 mb->end = mb->begin + size; in alloc_mem_block() 106 retain = mb; in alloc_mem_block() 107 return mb; in alloc_mem_block() [all …]
|
/third_party/skia/third_party/externals/libwebp/src/enc/ |
D | analysis_enc.c | 40 const VP8MBInfo* const mb = &enc->mb_info_[x + w * y]; in SmoothSegmentMap() local 41 int majority_seg = mb->segment_; in SmoothSegmentMap() 43 cnt[mb[-w - 1].segment_]++; // top-left in SmoothSegmentMap() 44 cnt[mb[-w + 0].segment_]++; // top in SmoothSegmentMap() 45 cnt[mb[-w + 1].segment_]++; // top-right in SmoothSegmentMap() 46 cnt[mb[ - 1].segment_]++; // left in SmoothSegmentMap() 47 cnt[mb[ + 1].segment_]++; // right in SmoothSegmentMap() 48 cnt[mb[ w - 1].segment_]++; // bottom-left in SmoothSegmentMap() 49 cnt[mb[ w + 0].segment_]++; // bottom in SmoothSegmentMap() 50 cnt[mb[ w + 1].segment_]++; // bottom-right in SmoothSegmentMap() [all …]
|
/third_party/node/deps/v8/tools/mb/docs/ |
D | user_guide.md | 7 `mb` is a simple python wrapper around the GYP and GN meta-build tools to 21 ### `mb analyze` 23 `mb analyze` is responsible for determining what targets are affected by 27 mb analyze -c chromium_linux_rel //out/Release input.json output.json 31 must be specified so that `mb` can figure out which config to use. 60 The third positional argument is a (normal) path to where mb will write 94 `-q/--quiet`, and `-v/--verbose` flags work as documented for `mb gen`. 96 ### `mb audit` 98 `mb audit` is used to track the progress of the GYP->GN migration. You can 100 `mb help audit` for more details (most people are not expected to care about [all …]
|
/third_party/toybox/toys/example/ |
D | demo_utf8towc.c | 20 mbstate_t mb; in demo_utf8towc_main() local 25 memset(&mb, 0, sizeof(mb)); in demo_utf8towc_main() 34 len1 = mbrtowc(&wc1, str, len2, &mb); in demo_utf8towc_main() 35 if (len1<0) memset(&mb, 0, sizeof(mb)); in demo_utf8towc_main()
|