Searched refs:complexity (Results 1 - 25 of 47) sorted by relevance

12

/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/validation/
H A DCyclomaticComplexityTest.java38 * Various tests for cyclomatic complexity of methods.
74 final ICounter complexity = analyze();
75 assertEquals(CounterImpl.getInstance(1, 0), complexity);
82 final ICounter complexity = analyze();
83 assertEquals(CounterImpl.getInstance(0, 1), complexity);
97 final ICounter complexity = analyze();
98 assertEquals(CounterImpl.getInstance(2, 0), complexity);
105 final ICounter complexity = analyze();
106 assertEquals(CounterImpl.getInstance(1, 1), complexity);
114 final ICounter complexity
[all...]
/external/speex/libspeex/
H A Dcb_search.h63 int complexity,
89 int complexity,
H A Dltp.h75 int complexity,
118 int complexity,
H A Dsb_celp.h92 int complexity; member in struct:SBEncState
H A Dnb_celp.h111 int complexity; /**< Complexity setting (0-10 from least complex to most complex) */ member in struct:EncState
H A Dcb_search.c254 int complexity,
288 N=complexity;
584 int complexity,
242 split_cb_search_shape_sign( spx_word16_t target[], spx_coef_t ak[], spx_coef_t awk1[], spx_coef_t awk2[], const void *par, int p, int nsf, spx_sig_t *exc, spx_word16_t *r, SpeexBits *bits, char *stack, int complexity, int update_target ) argument
572 noise_codebook_quant( spx_word16_t target[], spx_coef_t ak[], spx_coef_t awk1[], spx_coef_t awk2[], const void *par, int p, int nsf, spx_sig_t *exc, spx_word16_t *r, SpeexBits *bits, char *stack, int complexity, int update_target ) argument
H A Dnb_celp.c203 st->complexity=2;
353 if (!st->submodes[st->submodeID] || (st->complexity>2 && SUBMODE(have_subframe_gain)<3) || SUBMODE(forced_pitch_gain) || SUBMODE(lbr_pitch) != -1
719 if (st->complexity==0)
748 if (st->complexity==0)
793 exc, syn_resp, st->complexity, 0, st->plc_tuning, &st->cumul_gain);
847 innov, syn_resp, bits, stack, st->complexity, SUBMODE(double_codebook));
865 innov2, syn_resp, bits, stack, st->complexity, 0);
883 if (st->complexity!=0)
1662 st->complexity = (*(spx_int32_t*)ptr);
1663 if (st->complexity<
[all...]
/external/webrtc/webrtc/modules/audio_coding/codecs/opus/
H A Dopus_speed_test.cc84 #define ADD_TEST(complexity) \
85 TEST_P(OpusSpeedTest, OpusSetComplexityTest##complexity) { \
88 /* Set complexity. */ \
89 printf("Setting complexity to %d ...\n", complexity); \
90 EXPECT_EQ(0, WebRtcOpus_SetComplexity(opus_encoder_, complexity)); \
H A Daudio_encoder_opus.h40 int complexity = kDefaultComplexity; member in struct:webrtc::final::Config
45 // If we are on Android, iOS and/or ARM, use a lower complexity setting as
46 // default, to save encoder complexity.
H A Dopus_interface.h108 * complexity. This will affect the audio bandwidth in the coded audio. However,
186 * This function adjusts the computational complexity. The effect is the same as
187 * calling the complexity setting of Opus as an Opus encoder related CTL.
191 * - complexity : New target complexity (0-10, inclusive)
196 int16_t WebRtcOpus_SetComplexity(OpusEncInst* inst, int32_t complexity);
H A Daudio_encoder_opus.cc86 if (complexity < 0 || complexity > 10)
243 RTC_CHECK_EQ(0, WebRtcOpus_SetComplexity(inst_, config.complexity));
H A Dopus_interface.c243 int16_t WebRtcOpus_SetComplexity(OpusEncInst* inst, int32_t complexity) { argument
245 return opus_encoder_ctl(inst->encoder, OPUS_SET_COMPLEXITY(complexity));
/external/libopus/silk/
H A Dcheck_control_input.c100 if( encControl->complexity < 0 || encControl->complexity > 10 ) {
H A Dcontrol.h74 /* I: Complexity mode; 0 is lowest, 10 is highest complexity */
75 opus_int complexity; member in struct:__anon10763
/external/libopus/silk/float/
H A Dpitch_analysis_core_FLP.c51 opus_int complexity, /* I Complexity setting */
61 opus_int complexity /* I Complexity setting */
77 const opus_int complexity, /* I Complexity setting, 0-2, where 2 is highest */
114 /* Check for valid complexity setting */
115 silk_assert( complexity >= SILK_PE_MIN_COMPLEX );
116 silk_assert( complexity <= SILK_PE_MAX_COMPLEX );
217 length_d_srch = 4 + 2 * complexity;
329 if( Fs_kHz == 8 && complexity > SILK_PE_MIN_COMPLEX ) {
414 silk_P_Ana_calc_corr_st3( cross_corr_st3, frame, start_lag, sf_length, nb_subfr, complexity, arch );
415 silk_P_Ana_calc_energy_st3( energies_st3, frame, start_lag, sf_length, nb_subfr, complexity );
67 silk_pitch_analysis_core_FLP( const silk_float *frame, opus_int *pitch_out, opus_int16 *lagIndex, opus_int8 *contourIndex, silk_float *LTPCorr, opus_int prevLag, const silk_float search_thres1, const silk_float search_thres2, const opus_int Fs_kHz, const opus_int complexity, const opus_int nb_subfr, int arch ) argument
492 silk_P_Ana_calc_corr_st3( silk_float cross_corr_st3[ PE_MAX_NB_SUBFR ][ PE_NB_CBKS_STAGE3_MAX ][ PE_NB_STAGE3_LAGS ], const silk_float frame[], opus_int start_lag, opus_int sf_length, opus_int nb_subfr, opus_int complexity, int arch ) argument
[all...]
H A DSigProc_FLP.h96 const opus_int complexity, /* I Complexity setting, 0-2, where 2 is highest */
/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
H A DcomplexityMeasures.m35 % Compute each function's mean complexity
38 % Compute each function's maximum complexity in encoding
46 % Compute maximum complexity for a single frame (enc/dec separately and together)
/external/libopus/silk/fixed/
H A Dpitch_analysis_core_FIX.c65 opus_int complexity, /* I Complexity setting */
75 opus_int complexity /* I Complexity setting */
91 const opus_int complexity, /* I Complexity setting, 0-2, where 2 is highest */
124 /* Check for valid complexity setting */
125 silk_assert( complexity >= SILK_PE_MIN_COMPLEX );
126 silk_assert( complexity <= SILK_PE_MAX_COMPLEX );
245 length_d_srch = silk_ADD_LSHIFT32( 4, complexity, 1 );
385 if( Fs_kHz == 8 && complexity > SILK_PE_MIN_COMPLEX ) {
507 /* Set up codebook parameters according to complexity setting and frame length */
509 nb_cbk_search = (opus_int)silk_nb_cbk_searchs_stage3[ complexity ];
81 silk_pitch_analysis_core( const opus_int16 *frame, opus_int *pitch_out, opus_int16 *lagIndex, opus_int8 *contourIndex, opus_int *LTPCorr_Q15, opus_int prevLag, const opus_int32 search_thres1_Q16, const opus_int search_thres2_Q13, const opus_int Fs_kHz, const opus_int complexity, const opus_int nb_subfr, int arch ) argument
596 silk_P_Ana_calc_corr_st3( silk_pe_stage3_vals cross_corr_st3[], const opus_int16 frame[], opus_int start_lag, opus_int sf_length, opus_int nb_subfr, opus_int complexity, int arch ) argument
[all...]
/external/libopus/celt/
H A Dopus_custom_demo.c54 int complexity; local
65 " <bytes per packet> [<complexity> [packet loss rate]] "
124 complexity=atoi(argv[5]);
125 opus_custom_encoder_ctl(enc,OPUS_SET_COMPLEXITY(complexity));
/external/webrtc/webrtc/video/
H A Dvie_codec_unittest.cc36 video_codec->codecSpecific.VP8.complexity = kComplexityNormal;
139 // complexity
141 codec2.codecSpecific.VP8.complexity = kComplexityHigh;
/external/webrtc/webrtc/modules/video_coding/codecs/vp8/
H A Dsimulcast_encoder_adapter_unittest.cc265 EXPECT_EQ(ref.codecSpecific.VP8.complexity,
266 target.codecSpecific.VP8.complexity);
308 ref_codec.codecSpecific.VP8.complexity = webrtc::kComplexityHigher;
/external/webrtc/webrtc/
H A Dcommon_types.h576 VideoCodecComplexity complexity; member in struct:webrtc::VideoCodecVP8
588 complexity == other.complexity &&
605 VideoCodecComplexity complexity; member in struct:webrtc::VideoCodecVP9
/external/webrtc/webrtc/modules/audio_coding/neteq/test/
H A Dneteq_opus_quality_test.cc40 // Define switch for complexity.
44 printf("Invalid complexity setting, should be between 0 and 10.");
48 DEFINE_int32(complexity, 10, "Complexity: 0 ~ 10 -- defined as in Opus"
/external/lzma/CPP/7zip/Archive/7z/
H A D7zUpdate.cpp787 UInt64 complexity = 0; local
837 complexity += db->GetFolderFullPackSize(i);
840 complexity += repackSize;
857 complexity += ui.Size;
868 RINOK(updateCallback->SetTotal(complexity));
/external/skia/bench/
H A DPathBench.cpp43 virtual int complexity() { return 0; } function in class:PathBench
69 count >>= (3 * complexity());
170 int complexity() override { return 1; }
193 int complexity() override { return 2; }
212 int complexity() override { return 2; }

Completed in 393 milliseconds

12