HomeSort by relevance Sort by last modified time
    Searched refs:cn (Results 26 - 50 of 203) sorted by null

12 3 4 5 6 7 8 9

  /external/opencv/cxcore/src/
cxmeansdv.cpp 49 sqr_macro, len, cn ) \
50 for( ; x <= (len) - 4*(cn); x += 4*(cn))\
53 worktype t1 = src[x + (cn)]; \
59 t0 = src[x + 2*(cn)]; \
60 t1 = src[x + 3*(cn)]; \
67 for( ; x < (len); x += (cn) ) \
134 sqr_macro, len, cn ) \
140 t0 = src[x*(cn)]; pix++; \
147 t0 = src[(x+1)*(cn)]; pix++;
    [all...]
cxsumpixels.cpp 48 #define ICV_SUM_COI_CASE( __op__, len, cn ) \
49 for( ; x <= (len) - 4*(cn); x += 4*(cn) ) \
50 s0 += __op__(src[x]) + __op__(src[x+(cn)]) + \
51 __op__(src[x+(cn)*2]) + __op__(src[x+(cn)*3]);\
53 for( ; x < (len); x += (cn) ) \
231 #define ICV_DEF_SUM_NOHINT_BLOCK_FUNC_2D( name, flavor, cn, \
233 IPCVAPI_IMPL(CvStatus, icv##name##_##flavor##_C##cn##R,( \
237 ICV_SUM_ENTRY_BLOCK_C##cn(sumtype,worktype,(block_size)*(cn));
888 int sdepth, ddepth, cn, op0 = op; local
    [all...]
cxminmaxloc.cpp 48 #define CV_MINMAXLOC_ENTRY( _toggle_, srctype, temptype, cn ) \
51 int x, loc = 0, width = size.width*(cn); \
67 #define ICV_DEF_MINMAXLOC_1D_CASE_COI( _toggle_, temptype, cn ) \
68 for( x = 0; x < width; x += (cn), loc++ ) \
108 CvSize size, int cn, int coi, \
113 CV_MINMAXLOC_ENTRY( _toggle_, srctype, temptype, cn ); \
117 ICV_DEF_MINMAXLOC_1D_CASE_COI( _toggle_, temptype, cn ); \
165 #define CV_MINMAXLOC_MASK_ENTRY( _toggle_, srctype, temptype, cn ) \
171 if( width*(cn) == step && width == maskStep ) \
184 min_val = (src)[x*(cn)]; \
298 int type, depth, cn, coi = 0; local
    [all...]
cxmean.cpp 96 #define ICV_MEAN_COI_CASE( len, cn ) \
100 s0 += src[x*(cn)], pix++; \
102 s0+=src[(x+1)*(cn)], pix++; \
107 s0 += src[x*(cn)], pix++;
239 #define ICV_IMPL_MEAN_BLOCK_FUNC_2D( flavor, cn, \
241 IPCVAPI_IMPL( CvStatus, icvMean_##flavor##_C##cn##MR, \
247 ICV_MEAN_ENTRY_BLOCK_C##cn( sumtype, worktype, block_size );\
257 ICV_MEAN_CASE_C##cn( limit ); \
260 ICV_MEAN_UPDATE_C##cn( block_size ); \
265 { ICV_MEAN_EXIT_BLOCK_C##cn(); } \
    [all...]
cxconvert.cpp 126 #define ICV_DEF_PX2PL_COI( arrtype, len, cn ) \
130 for( j = 0; j <= (len) - 4; j += 4, (src) += 4*(cn))\
133 arrtype t1 = (src)[(cn)]; \
138 t0 = (src)[(cn)*2]; \
139 t1 = (src)[(cn)*3]; \
145 for( ; j < (len); j++, (src) += (cn)) \
153 cn, entry_macro ) \
154 IPCVAPI_IMPL( CvStatus, icvCopy_##flavor##_C##cn##P##cn##R,\
165 ICV_DEF_PX2PL_C##cn( arrtype, size.width );
447 int type, cn, coi = 0; local
557 int type, cn, coi = 0; local
800 int cn; local
847 int cn = from_to[i*2 + k]; local
    [all...]
cxnorm.cpp 77 _update_op_, worktype, len, cn ) \
81 worktype t0 = (src)[x*(cn)]; \
119 #define ICV_NORM_DIFF_COI_CASE( _op_, _update_op_, worktype, len, cn ) \
122 worktype t0 = (src1)[x*(cn)] - (src2)[x*(cn)]; \
220 CvSize size, int cn, int coi, double* _norm ) \
237 worktype, limit, cn ); \
257 CvSize size, int cn, int coi, double* _norm ) \
267 worktype, size.width, cn ); \
365 int cn, int coi, double* _norm )
977 int type, depth, cn, is_relative; local
    [all...]
  /external/opencv/cv/src/
_cvipp.h 73 #define IPCV_MOMENTS( suffix, ipp_suffix, cn ) \
74 IPCVAPI_EX( CvStatus, icvMoments##suffix##_C##cn##R, \
75 "ippiMoments" #ipp_suffix "_C" #cn "R", CV_PLUGINS1(CV_PLUGIN_IPPI),\
169 #define ICV_PYRDOWN( flavor, cn ) \
170 IPCVAPI_EX( CvStatus, icvPyrDown_Gauss5x5_##flavor##_C##cn##R, \
171 "ippiPyrDown_Gauss5x5_" #flavor "_C" #cn "R", CV_PLUGINS1(CV_PLUGIN_IPPCV), \
175 #define ICV_PYRUP( flavor, cn ) \
176 IPCVAPI_EX( CvStatus, icvPyrUp_Gauss5x5_##flavor##_C##cn##R, \
177 "ippiPyrUp_Gauss5x5_" #flavor "_C" #cn "R", CV_PLUGINS1(CV_PLUGIN_IPPCV), \
198 #define IPCV_RESIZE( flavor, cn ) \
    [all...]
cvsumpixels.cpp 213 CvSize size, int cn ) \
218 memset( sum, 0, (size.width+1)*cn*sizeof(sum[0])); \
220 sum += sumstep + cn; \
224 memset( sqsum, 0, (size.width+1)*cn*sizeof(sqsum[0])); \
226 sqsum += sqsumstep + cn; \
229 size.width *= cn; \
236 for( x = -cn; x < 0; x++ ) \
240 sum[x] = cast_macro(src[x]) + sum[x - cn]; \
251 for( x = -cn; x < 0; x++ ) \
260 sumtype t = cast_macro(it) + sum[x-cn]; \
326 int depth, cn; local
    [all...]
cvimgwarp.cpp 210 int cn, int xmax, \
220 dsize.width *= cn; \
221 xmax *= cn; \
255 _buf[dx] = mul_one_macro(t) + fx*(_src[sx+cn] - t); \
289 arrtype* dst, int dststep, CvSize dsize, int cn, \
300 dsize.width *= cn; \
326 int cn, const CvDecimateAlpha* xofs, \
334 dsize.width *= cn; \
338 if( cn == 1 ) \
345 else if( cn == 2 )
639 int type, depth, cn; local
1085 int k, type, depth, cn, *ofs = 0; local
1361 int type, depth, cn; local
1803 int cn = CV_MAT_CN(src->type); local
1989 int type, depth, cn; local
    [all...]
cvfilter.cpp 909 int cn = CV_MAT_CN(state->get_src_type());
910 int ksize2 = ksize/2, ksize2n = ksize2*cn;
915 width *= cn;
933 int s0 = s[-cn] + s[0]*2 + s[cn], s1 = s[1-cn] + s[1]*2 + s[1+cn];
939 int s0 = s[0]*10 + (s[-cn] + s[cn])*3, s1 = s[1]*10 + (s[1-cn] + s[1+cn])*3
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaCall.java 184 CdmaConnection cn = (CdmaConnection)mConnections.get(i); local
186 cn.onHangupLocal();
196 CdmaConnection cn = (CdmaConnection)mConnections.get(i); local
198 if (cn.getState() == State.DISCONNECTED) {
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmCall.java 188 GsmConnection cn = (GsmConnection)mConnections.get(i); local
190 cn.onHangupLocal();
201 GsmConnection cn = (GsmConnection)mConnections.get(i); local
203 if (cn.getState() == State.DISCONNECTED) {
  /libcore/crypto/src/main/java/org/conscrypt/
PinListEntry.java 36 /** The Common Name (CN) as used on the SSL certificate */
37 private final String cn; field in class:PinListEntry
52 return cn;
69 // entry must have a CN, an enforcement value, and at least one pin
73 // get the cn
74 cn = values[0]; // is there more validation we can do here?
152 PinFailureLogger.log(cn, chainContainsUserCert(chain), enforcing, chain);
  /frameworks/base/services/java/com/android/server/
PreferredComponent.java 74 ComponentName cn = set[i]; local
75 if (cn == null) {
81 myPackages[i] = cn.getPackageName().intern();
82 myClasses[i] = cn.getClassName().intern();
83 myComponents[i] = cn.flattenToShortString();
142 ComponentName cn = ComponentName.unflattenFromString(name); local
143 if (cn == null) {
149 myPackages[setPos] = cn.getPackageName();
150 myClasses[setPos] = cn.getClassName();
  /packages/apps/Settings/src/com/android/settings/
NotificationAccessSettings.java 86 public ListenerWarningDialogFragment setListenerInfo(ComponentName cn, String label) {
88 args.putString(KEY_COMPONENT, cn.flattenToString());
99 final ComponentName cn = ComponentName.unflattenFromString(args.getString(KEY_COMPONENT)); local
113 mEnabledListeners.add(cn);
174 final ComponentName cn = ComponentName.unflattenFromString(names[i]);
175 if (cn != null) {
176 mEnabledListeners.add(cn);
184 for (ComponentName cn : mEnabledListeners) {
190 sb.append(cn.flattenToString());
243 final ComponentName cn = new ComponentName(info.packageName, info.name)
    [all...]
DreamBackend.java 130 ComponentName cn = getActiveDream(); local
131 if (cn != null) {
134 ServiceInfo ri = pm.getServiceInfo(cn, 0);
244 String cn = null;
265 cn = sa.getString(com.android.internal.R.styleable.Dream_settingsActivity);
280 if (cn != null && cn.indexOf('/') < 0) {
281 cn = resolveInfo.serviceInfo.packageName + "/" + cn;
283 return cn == null ? null : ComponentName.unflattenFromString(cn)
    [all...]
DeviceAdminAdd.java 102 ComponentName cn = (ComponentName)getIntent().getParcelableExtra( local
104 if (cn == null) {
112 ai = getPackageManager().getReceiverInfo(cn, PackageManager.GET_META_DATA);
114 Log.w(TAG, "Unable to retrieve device policy " + cn, e);
122 if (!mDPM.isAdminActive(cn)) {
147 Log.w(TAG, "Request to add invalid device admin: " + cn);
158 Log.w(TAG, "Unable to retrieve device policy " + cn, e);
162 Log.w(TAG, "Unable to retrieve device policy " + cn, e);
172 if (mDPM.isAdminActive(cn)) {
176 if (!mDPM.hasGrantedPolicy(cn, pi.ident))
    [all...]
  /external/libsepol/src/
conditional.c 192 cond_node_t * cn)
195 cond_node_t *result = cond_node_find(p, cn, list, &was_created);
344 int cond_normalize_expr(policydb_t * p, cond_node_t * cn)
353 cn->nbools = 0;
355 memset(cn->bool_ids, 0, sizeof(cn->bool_ids));
356 cn->expr_pre_comp = 0x0;
360 e = cn->expr;
376 tmp = cn->true_list;
377 cn->true_list = cn->false_list
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
GSMPhoneTest.java 136 Connection cn; local
186 cn = mGSMPhone.getForegroundCall().getConnections().get(0);
187 assertTrue(!cn.isIncoming());
188 assertEquals(Connection.PostDialState.NOT_STARTED, cn.getPostDialState());
190 assertEquals(Connection.DisconnectCause.NOT_DISCONNECTED, cn.getDisconnectCause());
217 cn = mGSMPhone.getForegroundCall().getConnections().get(0);
218 assertTrue(!cn.isIncoming());
219 assertEquals(Connection.PostDialState.NOT_STARTED, cn.getPostDialState());
244 cn = mGSMPhone.getForegroundCall().getConnections().get(0);
245 assertTrue(!cn.isIncoming())
769 Connection cn = mGSMPhone.dial("+13125551212"); local
790 Connection cn; local
1362 Connection cn; local
1476 Connection cn; local
1506 Connection cn = mGSMPhone.dial("+13125551212"); local
    [all...]
  /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);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
ServiceMonitor.java 101 ComponentName cn = getComponentNameFromSetting();
102 if (cn == null && mServiceName == null || cn != null && cn.equals(mServiceName)) {
187 String cn = Settings.Secure.getStringForUser(mContext.getContentResolver(), local
189 return cn == null ? null : ComponentName.unflattenFromString(cn);
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
c2t64fx.c 49 Word16 cn[], /* (i) <12b : residual after long term prediction */
73 /* calculate energy for normalization of cn[] and dn[] */
76 s = Dot_product12_asm(cn, cn, L_SUBFR, &exp);
78 s = Dot_product12(cn, cn, L_SUBFR, &exp);
96 /* mix normalized cn[] and dn[] */
97 p0 = cn;
113 /* set sign according to dn2[] = k_cn*cn[] + k_dn*dn[] */
  /external/opencv/cvaux/src/
cvmat.cpp 140 int i, cn = CV_MAT_CN(type);
147 i = cn;
153 i = cn;
159 i = cn;
165 i = cn;
170 i = cn;
175 i = cn;
184 int cn = CV_MAT_CN(type);
190 i = cn;
195 i = cn;
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/api/tabs/inspector/
jstemplate_compiled.js 300 var cn = name.split(/\s+/);
302 for (var i = 0; i < jsLength(cn); ++i) {
303 if (cn[i] == className) {
310 cn.push(className);
313 node.className = cn.join(' ');
330 var cn = c.split(/\s+/);
331 for (var i = 0; i < jsLength(cn); ++i) {
332 if (cn[i] == className) {
333 cn.splice(i--, 1);
336 node.className = cn.join(' ')
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/api/tabs/inspector/
jstemplate_compiled.js 300 var cn = name.split(/\s+/);
302 for (var i = 0; i < jsLength(cn); ++i) {
303 if (cn[i] == className) {
310 cn.push(className);
313 node.className = cn.join(' ');
330 var cn = c.split(/\s+/);
331 for (var i = 0; i < jsLength(cn); ++i) {
332 if (cn[i] == className) {
333 cn.splice(i--, 1);
336 node.className = cn.join(' ')
    [all...]

Completed in 841 milliseconds

12 3 4 5 6 7 8 9