Home
last modified time | relevance | path

Searched refs:totalChannels (Results 1 – 6 of 6) sorted by relevance

/external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
DNettyHttpClient.java58 private int totalChannels = 0; field in NettyHttpClient
96 } else if (totalChannels < concurrencyLevel) { in enqueue()
97 totalChannels++; // Create a new channel. (outside of the synchronized block). in enqueue()
116 int activeChannels = totalChannels - freeChannels.size(); in hasFreeChannels()
/external/opencv3/modules/imgproc/test/ocl/
Dtest_histogram.cpp101 int totalChannels = 0; in PARAM_TEST_CASE() local
115 channels.push_back(randomInt(0, cn) + totalChannels); in PARAM_TEST_CASE()
116 totalChannels += cn; in PARAM_TEST_CASE()
/external/aac/libAACenc/src/
Dpsy_main.h168 INT totalChannels
Dpsy_main.cpp449 INT totalChannels in FDKaacEnc_psyMain() argument
519 totalChannels); in FDKaacEnc_psyMain()
555 totalChannels); in FDKaacEnc_psyMain()
654 … &pInput[ (2*psyConf->granuleLength-blockSwitchingOffset)*totalChannels + chIdx[ch] ], in FDKaacEnc_psyMain()
656 totalChannels); in FDKaacEnc_psyMain()
/external/opencv3/modules/imgproc/src/
Dhistogram.cpp2077 int totalChannels = 0; in getUMatIndex() local
2081 totalChannels += ccn; in getUMatIndex()
2083 if (totalChannels == cn) in getUMatIndex()
2089 else if (totalChannels > cn) in getUMatIndex()
2092 cnidx = i == 0 ? cn : (cn - totalChannels + ccn); in getUMatIndex()
/external/opencv3/modules/core/src/
Dconvert.cpp1256 int totalChannels = 0; in getUMatIndex() local
1260 totalChannels += ccn; in getUMatIndex()
1262 if (totalChannels == cn) in getUMatIndex()
1268 else if (totalChannels > cn) in getUMatIndex()
1271 cnidx = i == 0 ? cn : (cn - totalChannels + ccn); in getUMatIndex()