/third_party/ffmpeg/libavcodec/ |
D | aacenc.c | 240 static void encode_ms_info(PutBitContext *pb, ChannelElement *cpe) in encode_ms_info() argument 244 put_bits(pb, 2, cpe->ms_mode); in encode_ms_info() 245 if (cpe->ms_mode == 1) in encode_ms_info() 246 for (w = 0; w < cpe->ch[0].ics.num_windows; w += cpe->ch[0].ics.group_len[w]) in encode_ms_info() 247 for (i = 0; i < cpe->ch[0].ics.max_sfb; i++) in encode_ms_info() 248 put_bits(pb, 1, cpe->ms_mask[w*16 + i]); in encode_ms_info() 254 static void adjust_frame_information(ChannelElement *cpe, int chans) in adjust_frame_information() argument 260 IndividualChannelStream *ics = &cpe->ch[ch].ics; in adjust_frame_information() 262 cpe->ch[ch].pulse.num_pulse = 0; in adjust_frame_information() 265 … for (cmaxsfb = ics->num_swb; cmaxsfb > 0 && cpe->ch[ch].zeroes[w*16+cmaxsfb-1]; cmaxsfb--) in adjust_frame_information() [all …]
|
D | aacenc_is.c | 33 struct AACISError ff_aac_is_encoding_err(AACEncContext *s, ChannelElement *cpe, in ff_aac_is_encoding_err() argument 39 SingleChannelElement *sce0 = &cpe->ch[0]; in ff_aac_is_encoding_err() 40 SingleChannelElement *sce1 = &cpe->ch[1]; in ff_aac_is_encoding_err() 98 void ff_aac_search_for_is(AACEncContext *s, AVCodecContext *avctx, ChannelElement *cpe) in ff_aac_search_for_is() argument 100 SingleChannelElement *sce0 = &cpe->ch[0]; in ff_aac_search_for_is() 101 SingleChannelElement *sce1 = &cpe->ch[1]; in ff_aac_search_for_is() 106 if (!cpe->common_window) in ff_aac_search_for_is() 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() 131 ph_err1 = ff_aac_is_encoding_err(s, cpe, start, w, g, in ff_aac_search_for_is() [all …]
|
D | libfdk-aacenc.c | 129 int sce = 0, cpe = 0; in aac_encode_init() local 163 case 1: mode = MODE_1; sce = 1; cpe = 0; break; in aac_encode_init() 176 cpe = 0; in aac_encode_init() 183 cpe = 1; in aac_encode_init() 186 case 3: mode = MODE_1_2; sce = 1; cpe = 1; break; in aac_encode_init() 187 case 4: mode = MODE_1_2_1; sce = 2; cpe = 1; break; in aac_encode_init() 188 case 5: mode = MODE_1_2_2; sce = 1; cpe = 2; break; in aac_encode_init() 189 case 6: mode = MODE_1_2_2_1; sce = 2; cpe = 2; break; in aac_encode_init() 195 cpe = 3; in aac_encode_init() 245 cpe = 0; in aac_encode_init() [all …]
|
D | aacenc_ltp.c | 56 ChannelElement *cpe; in ff_aac_ltp_insert_new_frame() local 59 cpe = &s->cpe[i]; in ff_aac_ltp_insert_new_frame() 63 sce = &cpe->ch[ch]; in ff_aac_ltp_insert_new_frame() 130 void ff_aac_adjust_common_ltp(AACEncContext *s, ChannelElement *cpe) in ff_aac_adjust_common_ltp() argument 133 SingleChannelElement *sce0 = &cpe->ch[0]; in ff_aac_adjust_common_ltp() 134 SingleChannelElement *sce1 = &cpe->ch[1]; in ff_aac_adjust_common_ltp() 136 if (!cpe->common_window || in ff_aac_adjust_common_ltp()
|
D | aacenc.h | 68 void (*adjust_common_pred)(struct AACEncContext *s, ChannelElement *cpe); 69 void (*adjust_common_ltp)(struct AACEncContext *s, ChannelElement *cpe); 79 void (*search_for_ms)(struct AACEncContext *s, ChannelElement *cpe); 80 void (*search_for_is)(struct AACEncContext *s, AVCodecContext *avctx, ChannelElement *cpe); 396 ChannelElement *cpe; ///< channel elements member
|
D | aacenc_is.h | 45 struct AACISError ff_aac_is_encoding_err(AACEncContext *s, ChannelElement *cpe, 49 void ff_aac_search_for_is(AACEncContext *s, AVCodecContext *avctx, ChannelElement *cpe);
|
D | aacdec_template.c | 1728 static void decode_mid_side_stereo(ChannelElement *cpe, GetBitContext *gb, in decode_mid_side_stereo() argument 1732 int max_idx = cpe->ch[0].ics.num_window_groups * cpe->ch[0].ics.max_sfb; in decode_mid_side_stereo() 1735 cpe->ms_mask[idx] = get_bits1(gb); in decode_mid_side_stereo() 1737 memset(cpe->ms_mask, 1, max_idx * sizeof(cpe->ms_mask[0])); in decode_mid_side_stereo() 2202 static void apply_mid_side_stereo(AACContext *ac, ChannelElement *cpe) argument 2204 const IndividualChannelStream *ics = &cpe->ch[0].ics; 2205 INTFLOAT *ch0 = cpe->ch[0].coeffs; 2206 INTFLOAT *ch1 = cpe->ch[1].coeffs; 2211 if (cpe->ms_mask[idx] && 2212 cpe->ch[0].band_type[idx] < NOISE_BT && [all …]
|
D | aacenc_pred.c | 151 void ff_aac_adjust_common_pred(AACEncContext *s, ChannelElement *cpe) in ff_aac_adjust_common_pred() argument 154 SingleChannelElement *sce0 = &cpe->ch[0]; in ff_aac_adjust_common_pred() 155 SingleChannelElement *sce1 = &cpe->ch[1]; in ff_aac_adjust_common_pred() 160 if (!cpe->common_window || in ff_aac_adjust_common_pred() 187 ph_err1 = ff_aac_is_encoding_err(s, cpe, start, w, g, in ff_aac_adjust_common_pred() 189 ph_err2 = ff_aac_is_encoding_err(s, cpe, start, w, g, in ff_aac_adjust_common_pred()
|
D | aaccoder.c | 756 static void search_for_ms(AACEncContext *s, ChannelElement *cpe) in search_for_ms() argument 765 SingleChannelElement *sce0 = &cpe->ch[0]; in search_for_ms() 766 SingleChannelElement *sce1 = &cpe->ch[1]; in search_for_ms() 767 if (!cpe->common_window) in search_for_ms() 780 if (!cpe->is_mask[w*16+g]) in search_for_ms() 781 cpe->ms_mask[w*16+g] = 0; in search_for_ms() 782 if (!sce0->zeroes[w*16+g] && !sce1->zeroes[w*16+g] && !cpe->is_mask[w*16+g]) { in search_for_ms() 870 cpe->ms_mask[w*16+g] = dist2 <= dist1 && B1 < B0; in search_for_ms() 871 if (cpe->ms_mask[w*16+g]) { in search_for_ms() 879 cpe->ms_mask[w*16+g] = 0; in search_for_ms() [all …]
|
D | aacenc_pred.h | 43 void ff_aac_adjust_common_pred(AACEncContext *s, ChannelElement *cpe);
|
D | aacenc_ltp.h | 36 void ff_aac_adjust_common_ltp(AACEncContext *s, ChannelElement *cpe);
|
D | alacenc.c | 466 int ch, element, sce, cpe; in write_frame() local 470 ch = element = sce = cpe = 0; in write_frame() 473 write_element(s, TYPE_CPE, cpe, samples[ch_map[ch]], in write_frame() 475 cpe++; in write_frame()
|
D | amrwbdec.c | 745 float cpe = 0.125 * (1 + voice_fac); in pitch_enhancer() local 748 fixed_vector[0] -= cpe * fixed_vector[1]; in pitch_enhancer() 753 fixed_vector[i] -= cpe * (last + fixed_vector[i + 1]); in pitch_enhancer() 757 fixed_vector[AMRWB_SFR_SIZE - 1] -= cpe * last; in pitch_enhancer()
|
/third_party/flutter/skia/src/gpu/effects/ |
D | GrConvexPolyEffect.cpp | 41 const GrConvexPolyEffect& cpe = args.fFp.cast<GrConvexPolyEffect>(); in emitCode() local 47 cpe.getEdgeCount(), in emitCode() 52 for (int i = 0; i < cpe.getEdgeCount(); ++i) { in emitCode() 57 if (GrProcessorEdgeTypeIsAA(cpe.getEdgeType())) { in emitCode() 65 if (GrProcessorEdgeTypeIsInverseFill(cpe.getEdgeType())) { in emitCode() 73 const GrConvexPolyEffect& cpe = effect.cast<GrConvexPolyEffect>(); in onSetData() local 74 size_t byteSize = 3 * cpe.getEdgeCount() * sizeof(SkScalar); in onSetData() 75 if (0 != memcmp(fPrevEdges, cpe.getEdges(), byteSize)) { in onSetData() 76 pdman.set3fv(fEdgeUniform, cpe.getEdgeCount(), cpe.getEdges()); in onSetData() 77 memcpy(fPrevEdges, cpe.getEdges(), byteSize); in onSetData() [all …]
|
/third_party/skia/src/gpu/effects/ |
D | GrConvexPolyEffect.cpp | 98 const GrConvexPolyEffect& cpe = args.fFp.cast<GrConvexPolyEffect>(); in onMakeProgramImpl() local 102 GlobalVar edgeArray(kUniform_Modifier, Array(kHalf3_Type, cpe.fEdgeCount), "edgeArray"); in onMakeProgramImpl() 109 for (int i = 0; i < cpe.fEdgeCount; ++i) { in onMakeProgramImpl() 111 if (GrClipEdgeTypeIsAA(cpe.fEdgeType)) { in onMakeProgramImpl() 119 if (GrClipEdgeTypeIsInverseFill(cpe.fEdgeType)) { in onMakeProgramImpl() 130 const GrConvexPolyEffect& cpe = fp.cast<GrConvexPolyEffect>(); in onMakeProgramImpl() local 131 size_t n = 3*cpe.fEdgeCount; in onMakeProgramImpl() 132 if (!std::equal(fPrevEdges.begin(), fPrevEdges.begin() + n, cpe.fEdges.begin())) { in onMakeProgramImpl() 133 pdman.set3fv(fEdgeUniform, cpe.fEdgeCount, cpe.fEdges.data()); in onMakeProgramImpl() 134 std::copy_n(cpe.fEdges.begin(), n, fPrevEdges.begin()); in onMakeProgramImpl() [all …]
|
/third_party/skia/third_party/externals/angle2/third_party/rapidjson/ |
D | README.chromium | 5 CPEPrefix: cpe:/a:tencent:rapidjson:1.1.0
|
/third_party/ffmpeg/libavcodec/mips/ |
D | aaccoder_mips.c | 2338 static void search_for_ms_mips(AACEncContext *s, ChannelElement *cpe) in search_for_ms_mips() argument 2346 SingleChannelElement *sce0 = &cpe->ch[0]; in search_for_ms_mips() 2347 SingleChannelElement *sce1 = &cpe->ch[1]; in search_for_ms_mips() 2348 if (!cpe->common_window) in search_for_ms_mips() 2361 if (!cpe->is_mask[w*16+g]) in search_for_ms_mips() 2362 cpe->ms_mask[w*16+g] = 0; in search_for_ms_mips() 2363 if (!sce0->zeroes[w*16+g] && !sce1->zeroes[w*16+g] && !cpe->is_mask[w*16+g]) { in search_for_ms_mips() 2451 cpe->ms_mask[w*16+g] = dist2 <= dist1 && B1 < B0; in search_for_ms_mips() 2452 if (cpe->ms_mask[w*16+g]) { in search_for_ms_mips() 2460 cpe->ms_mask[w*16+g] = 0; in search_for_ms_mips() [all …]
|
/third_party/skia/third_party/externals/jinja2/ |
D | README.chromium | 5 CPEPrefix: cpe:/a:pocoo:jinja2:2.11.3
|
/third_party/skia/third_party/externals/zlib/ |
D | README.chromium | 5 CPEPrefix: cpe:/a:zlib:zlib:1.2.11
|
/third_party/skia/third_party/externals/angle2/third_party/jdk/ |
D | README.chromium | 5 CPEPrefix: cpe:/a:oracle:openjdk:11.0.4
|
/third_party/skia/third_party/externals/icu/ |
D | README.chromium | 4 CPEPrefix: cpe:/a:icu-project:international_components_for_unicode:69.1
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/tag/ |
D | lang-tables.dat | 137 { "", "cpe", ISO_639_FLAG_2T | ISO_639_FLAG_2B, 811 },
|
/third_party/harfbuzz/perf/texts/ |
D | en-words.txt | 2356 cpe
|
/third_party/skia/third_party/externals/harfbuzz/perf/texts/ |
D | en-words.txt | 2356 cpe
|
/third_party/icu/icu4c/source/data/misc/ |
D | supplementalData.txt | 5219 "cpe~g",
|