HomeSort by relevance Sort by last modified time
    Searched defs:cn (Results 1 - 25 of 363) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/opencv3/modules/cudaimgproc/perf/
perf_match_template.cpp 66 const int cn = GET_PARAM(2); local
69 cv::Mat image(size, CV_MAKE_TYPE(CV_8U, cn));
70 cv::Mat templ(templ_size, CV_MAKE_TYPE(CV_8U, cn));
108 const int cn = GET_PARAM(2); local
111 cv::Mat image(size, CV_MAKE_TYPE(CV_32F, cn));
112 cv::Mat templ(templ_size, CV_MAKE_TYPE(CV_32F, cn));
  /cts/hostsidetests/devicepolicy/app/DeviceAdmin/src/com.android.cts.deviceadmin/
ClearDeviceAdminWithNoProtectionTest.java 29 final ComponentName cn = new ComponentName(getContext(), local
34 if (dpm.isAdminActive(cn)) {
35 dpm.removeActiveAdmin(cn);
36 for (int i = 0; i < 6000 && dpm.isAdminActive(cn); i++) {
40 assertFalse("Still active admin", dpm.isAdminActive(cn));
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
GsmCdmaCall.java 146 GsmCdmaConnection cn = (GsmCdmaConnection)mConnections.get(i); local
148 cn.onHangupLocal();
  /cts/hostsidetests/devicepolicy/app/ManagedProfile/src/com/android/cts/managedprofile/
PrimaryUserAdminHelper.java 41 ComponentName cn = PrimaryUserDeviceAdmin.ADMIN_RECEIVER_COMPONENT; local
42 if (mDpm.isAdminActive(cn)) {
43 mDpm.removeActiveAdmin(cn);
45 for (int i = 0; i < 2 * 60 && mDpm.isAdminActive(cn); i++) {
49 assertFalse(mDpm.isAdminActive(cn));
  /cts/tests/tests/security/src/android/security/cts/
STKFrameworkTest.java 50 ComponentName cn = local
52 intent.setComponent(cn);
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyInstrumentationEvent.java 41 ComponentName cn = ComponentName.unflattenFromString(mRunnerName); local
42 if (cn == null || mTestCaseName == null)
48 iam.startInstrumentation(cn, null, 0, args, null, null, 0, null);
  /external/libopus/silk/fixed/
residual_energy16_FIX.c 46 opus_int cn[ MAX_MATRIX_SIZE ]; local
68 cn[ i ] = silk_LSHIFT( ( opus_int )c[ i ], Qxtra );
69 silk_assert( silk_abs(cn[i]) <= ( silk_int16_MAX + 1 ) ); /* Check that silk_SMLAWB can be used */
76 tmp = silk_SMLAWB( tmp, wXx[ i ], cn[ i ] );
86 tmp = silk_SMLAWB( tmp, pRow[ j ], cn[ j ] );
88 tmp = silk_SMLAWB( tmp, silk_RSHIFT( pRow[ i ], 1 ), cn[ i ] );
89 tmp2 = silk_SMLAWB( tmp2, tmp, cn[ i ] );
  /external/opencv3/modules/core/perf/opencl/
perf_matop.cpp 70 cn = CV_MAT_CN(type), dtype = CV_MAKE_TYPE(ddepth, cn); local
perf_channels.cpp 65 const int depth = get<1>(params), cn = get<2>(params), dtype = CV_MAKE_TYPE(depth, cn); local
70 vector<UMat> src(cn);
93 const int depth = get<1>(params), cn = get<2>(params), type = CV_MAKE_TYPE(depth, cn); local
95 ASSERT_TRUE(cn == 3 || cn == 2);
100 std::vector<UMat> dst(cn, UMat(srcSize, CV_MAKE_TYPE(depth, 1)));
103 for (int i = 0; i < cn; ++i)
108 ASSERT_EQ(cn, (int)dst.size())
    [all...]
  /external/opencv3/modules/cudaarithm/test/
test_opengl.cpp 295 int cn; local
304 cn = CV_MAT_CN(type);
305 format = cn == 1 ? cv::ogl::Texture2D::DEPTH_COMPONENT : cn == 3 ? cv::ogl::Texture2D::RGB : cn == 4 ? cv::ogl::Texture2D::RGBA : cv::ogl::Texture2D::NONE;
  /external/opencv3/modules/cudabgsegm/perf/
perf_bgsegm.cpp 77 const int cn = GET_PARAM(1); local
88 if (cn != 3)
91 if (cn == 1)
115 if (cn != 3)
118 if (cn == 1)
142 if (cn != 3)
145 if (cn == 1)
181 const int cn = GET_PARAM(1); local
191 if (cn != 3)
194 if (cn == 1
334 const int cn = GET_PARAM(1); local
    [all...]
  /external/opencv3/modules/cudalegacy/perf/
perf_bgsegm.cpp 151 const int cn = GET_PARAM(1); local
161 if (cn != 3)
164 if (cn == 1)
194 if (cn != 3)
197 if (cn == 1)
226 if (cn != 3)
229 if (cn == 1)
  /external/opencv3/modules/imgproc/perf/opencl/
perf_accumulate.cpp 63 const int srcType = get<1>(params), cn = CV_MAT_CN(srcType), dstType = CV_32FC(cn); local
84 const int srcType = get<1>(params), cn = CV_MAT_CN(srcType), dstType = CV_32FC(cn); local
105 const int srcType = get<1>(params), cn = CV_MAT_CN(srcType), dstType = CV_32FC(cn); local
126 const int srcType = get<1>(params), cn = CV_MAT_CN(srcType), dstType = CV_32FC(cn); local
  /external/clang/test/OpenMP/
target_codegen.cpp 49 double cn[5][n]; local
258 cn[1][3] += 1.0;
    [all...]
  /external/opencv3/modules/cudev/include/opencv2/cudev/grid/detail/
reduce_to_column.hpp 57 template <int BLOCK_SIZE, typename work_type, typename work_elem_type, class Reductor, int cn> struct Reduce;
100 const int cn = VecTraits<work_type>::cn; local
102 __shared__ work_elem_type smem[cn][BLOCK_SIZE];
118 Reduce<BLOCK_SIZE, work_type, work_elem_type, Reductor, cn>::call(smem, myVal);
  /external/opencv3/modules/imgproc/test/ocl/
test_canny.cpp 63 int cn, apperture_size; local
71 cn = GET_PARAM(0);
79 Mat img = readImageType("shared/fruits.png", CV_8UC(cn));
  /external/opencv3/modules/video/perf/opencl/
perf_bgfg_mog2.cpp 37 static void prepareData(VideoCapture& cap, int cn, vector<Mat>& frame_buffer)
49 if(cn == 1)
61 const int cn = get<1>(params); local
68 prepareData(cap, cn, frame_buffer);
91 const int cn = get<1>(params); local
98 prepareData(cap, cn, frame_buffer);
  /frameworks/base/packages/EasterEgg/src/com/android/egg/neko/
NekoActivationActivity.java 37 final ComponentName cn = new ComponentName(this, NekoTile.class); local
38 if (pm.getComponentEnabledSetting(cn) == PackageManager.COMPONENT_ENABLED_STATE_ENABLED) {
42 pm.setComponentEnabledSetting(cn, PackageManager.COMPONENT_ENABLED_STATE_DISABLED,
50 pm.setComponentEnabledSetting(cn, PackageManager.COMPONENT_ENABLED_STATE_ENABLED,
  /libcore/ojluni/src/main/java/java/nio/channels/spi/
SelectorProvider.java 88 String cn = System.getProperty("java.nio.channels.spi.SelectorProvider"); local
89 if (cn == null)
92 Class<?> c = Class.forName(cn, true,
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
ApplicationUtils.java 36 final ComponentName cn = new ComponentName(context, cls); local
38 final ActivityInfo ai = context.getPackageManager().getActivityInfo(cn, 0);
  /external/conscrypt/src/platform/java/org/conscrypt/
PinListEntry.java 35 /** The Common Name (CN) as used on the SSL certificate */
36 private final String cn; field in class:PinListEntry
49 return cn;
66 // entry must have a CN, an enforcement value, and at least one pin
70 // get the cn
71 cn = values[0]; // is there more validation we can do here?
154 PinFailureLogger.log(cn, containsUserCert, enforcing, chain);
  /external/opencv3/modules/core/include/opencv2/core/
ippasync.hpp 102 @param cn number of channels.
104 inline void copyHppToMat(hppiMatrix* src, Mat& dst, hppAccel accel, int cn)
117 int matType = CV_MAKETYPE(toCvType(type), cn);
119 CV_Assert(width%cn == 0);
121 width /= cn;
138 @param cn number of channels.
141 inline Mat getMat(hppiMatrix* src, hppAccel accel, int cn)
144 copyHppToMat(src, dst, accel, cn);
171 int cn = src.channels(); local
179 hppQueryMatrixAllocParams(accel, src.cols*cn, src.rows, htype, &pitch, &size)
    [all...]
  /external/opencv3/modules/core/src/
cuda_host_mem.cpp 247 int cn = channels(); local
249 new_cn = cn;
251 int total_width = cols * cn;
  /external/opencv3/modules/core/test/ocl/
test_dft.cpp 68 int dft_flags, depth, cn, dft_type; local
84 case R2R: dft_flags |= cv::DFT_REAL_OUTPUT; cn = 1; break;
85 case C2R: dft_flags |= cv::DFT_REAL_OUTPUT; cn = 2; break;
86 case R2C: dft_flags |= cv::DFT_COMPLEX_OUTPUT; cn = 1; break;
87 case C2C: dft_flags |= cv::DFT_COMPLEX_OUTPUT; cn = 2; break;
102 src = randomMat(dft_size, CV_MAKE_TYPE(depth, cn), 0.0, 100.0);
test_matrix_operation.cpp 59 int src_depth, cn, dstType; local
68 cn = GET_PARAM(2);
69 dstType = CV_MAKE_TYPE(GET_PARAM(1), cn);
78 randomSubMat(src, src_roi, roiSize, srcBorder, CV_MAKE_TYPE(src_depth, cn), -MAX_VALUE, MAX_VALUE);
108 int depth, cn; local
119 cn = GET_PARAM(1);
126 const int type = CV_MAKE_TYPE(depth, cn);
137 mask_cn = cn;

Completed in 866 milliseconds

1 2 3 4 5 6 7 8 91011>>