/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/validation/ |
CyclomaticComplexityTest.java | 38 * Various tests for cyclomatic complexity of methods. 74 final ICounter complexity = analyze(); local 75 assertEquals(CounterImpl.getInstance(1, 0), complexity); 82 final ICounter complexity = analyze(); local 83 assertEquals(CounterImpl.getInstance(0, 1), complexity); 97 final ICounter complexity = analyze(); local 98 assertEquals(CounterImpl.getInstance(2, 0), complexity); 105 final ICounter complexity = analyze(); local 106 assertEquals(CounterImpl.getInstance(1, 1), complexity); 114 final ICounter complexity = analyze() local 132 final ICounter complexity = analyze(); local 140 final ICounter complexity = analyze(); local 149 final ICounter complexity = analyze(); local 158 final ICounter complexity = analyze(); local 176 final ICounter complexity = analyze(); local 184 final ICounter complexity = analyze(); local 193 final ICounter complexity = analyze(); local 203 final ICounter complexity = analyze(); local 223 final ICounter complexity = analyze(); local 231 final ICounter complexity = analyze(); local 240 final ICounter complexity = analyze(); local 250 final ICounter complexity = analyze(); local [all...] |
/external/speex/libspeex/ |
cb_search.h | 63 int complexity, 89 int complexity,
|
ltp.h | 75 int complexity, 118 int complexity,
|
sb_celp.h | 92 int complexity; member in struct:SBEncState
|
nb_celp.h | 111 int complexity; /**< Complexity setting (0-10 from least complex to most complex) */ member in struct:EncState
|
/external/webrtc/webrtc/modules/audio_coding/codecs/opus/ |
opus_speed_test.cc | 84 #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)); \
|
audio_encoder_opus.h | 40 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.
|
opus_interface.h | 108 * 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);
|
audio_encoder_opus.cc | 86 if (complexity < 0 || complexity > 10) 243 RTC_CHECK_EQ(0, WebRtcOpus_SetComplexity(inst_, config.complexity));
|
/external/libopus/silk/ |
check_control_input.c | 100 if( encControl->complexity < 0 || encControl->complexity > 10 ) {
|
control.h | 74 /* I: Complexity mode; 0 is lowest, 10 is highest complexity */ 75 opus_int complexity; member in struct:__anon16705
|
/external/libopus/silk/float/ |
pitch_analysis_core_FLP.c | 51 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; [all...] |
SigProc_FLP.h | 96 const opus_int complexity, /* I Complexity setting, 0-2, where 2 is highest */
|
/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/ |
complexityMeasures.m | 35 % 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/ |
pitch_analysis_core_FIX.c | 65 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 ) [all...] |
/external/libopus/celt/ |
opus_custom_demo.c | 54 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/v8/test/mjsunit/regress/ |
regress-arm64-spillslots.js | 18 print("unreachable, but we must create register allocation complexity");
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/ |
vop.cpp | 552 mp4dec_log("DecodeVOLHeader(): Shape Complexity estimation is not supported.\n"); 559 currVol->complexity.text_1 = BitstreamReadBits16(stream, 4); 567 currVol->complexity.text_2 = BitstreamReadBits16(stream, 4); 573 currVol->complexity.mc = BitstreamReadBits16(stream, 6); 912 if ((currVol->complexity.text_1 >> 3) & 0x1) /* intra */ 914 if (currVol->complexity.text_1 & 0x1) /* not_coded */ 916 if ((currVol->complexity.text_2 >> 3) & 0x1) /* dct_coefs */ 918 if ((currVol->complexity.text_2 >> 2) & 0x1) /* dct_lines */ 920 if ((currVol->complexity.text_2 >> 1) & 0x1) /* vlc_symbols */ 922 if (currVol->complexity.text_2 & 0x1) /* vlc_bits * [all...] |
mp4lib_int.h | 27 #define FAST_IDCT /* , for fast Variable complexity IDCT */ 47 /* complexity estimation parameters */ 92 int complexity_estDisable; /* VOL disable complexity estimation */ 93 int complexity_estMethod; /* VOL complexity estimation method */ 94 Complexity_Est complexity; /* complexity estimation flags */ member in struct:tagVol
|
/external/webrtc/webrtc/video/ |
vie_codec_unittest.cc | 36 video_codec->codecSpecific.VP8.complexity = kComplexityNormal; 139 // complexity 141 codec2.codecSpecific.VP8.complexity = kComplexityHigh;
|
/external/webrtc/webrtc/modules/video_coding/codecs/vp8/ |
simulcast_encoder_adapter_unittest.cc | 265 EXPECT_EQ(ref.codecSpecific.VP8.complexity, 266 target.codecSpecific.VP8.complexity); 308 ref_codec.codecSpecific.VP8.complexity = webrtc::kComplexityHigher;
|
/external/webrtc/webrtc/ |
common_types.h | 576 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/ |
neteq_opus_quality_test.cc | 40 // 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/opencv3/modules/ml/ |
precomp.hpp | 215 class_idx = sample_count = depth = complexity = 0; 237 int complexity; member in struct:cv::ml::DTreesImpl::WNode
|
/external/opencv3/modules/ml/src/ |
precomp.hpp | 215 class_idx = sample_count = depth = complexity = 0; 237 int complexity; member in struct:cv::ml::DTreesImpl::WNode
|