Searched defs:cn (Results 1 - 25 of 75) sorted by relevance

123

/external/conscrypt/src/platform/java/org/conscrypt/
H A DPinFailureLogger.java31 public static synchronized void log(String cn, boolean chainContainsUserCert, argument
39 writeToLog(cn, chainContainsUserCert, pinIsEnforcing, chain);
44 protected static synchronized void writeToLog(String cn, boolean chainContainsUserCert, argument
48 sb.append(cn);
H A DCertPinManager.java141 String cn = hostnameCache.get(hostname);
142 if (cn != null) {
144 return entries.get(cn);
147 // otherwise, get the matching cn
148 cn = getMatchingCN(hostname);
149 if (cn != null) {
150 hostnameCache.put(hostname, cn);
152 return entries.get(cn);
165 for (String cn : entries.keySet()) {
167 if (cn
185 isHostnameMatchedBy(String hostName, String cn) argument
[all...]
H A DPinListEntry.java36 private final String cn; field in class:PinListEntry
49 return cn;
70 // get the cn
71 cn = values[0]; // is there more validation we can do here?
154 PinFailureLogger.log(cn, containsUserCert, enforcing, chain);
/external/clang/test/OpenMP/
H A Dtarget_codegen.cpp49 double cn[5][n]; local
258 cn[1][3] += 1.0;
/external/libopus/silk/fixed/
H A Dresidual_energy16_FIX.c46 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/valgrind/coregrind/m_demangle/
H A Dsafe-ctype.c134 #define cn _sch_iscntrl macro
155 #define C (const unsigned short) ( cn) /* control character */
156 #define Z (const unsigned short) (nv |cn) /* NUL */
157 #define M (const unsigned short) (nv|sp |cn) /* cursor movement: \f \v */
158 #define V (const unsigned short) (vs|sp |cn) /* vertical space: \r \n */
159 #define T (const unsigned short) (nv|sp|bl|cn) /* tab */
/external/mesa3d/src/mesa/math/
H A Dm_eval.c114 * control net cn.
118 _math_horner_bezier_surf(GLfloat * cn, GLfloat * out, GLfloat u, GLfloat v, argument
121 GLfloat *cp = cn + uorder * vorder * dim;
131 GLfloat *ucp = &cn[j * dim];
155 else /* uorder=1 -> cn defines a curve in v */
156 _math_horner_bezier_curve(cn, out, v, dim, vorder);
164 for (i = 0; i < uorder; i++, cn += uinc) {
165 /* For constant i all cn[i][j] (j=0..vorder) are located */
169 _math_horner_bezier_curve(cn, &cp[i * dim], v, dim, vorder);
175 else /* vorder=1 -> cn define
195 _math_de_casteljau_surf(GLfloat * cn, GLfloat * out, GLfloat * du, GLfloat * dv, GLfloat u, GLfloat v, GLuint dim, GLuint uorder, GLuint vorder) argument
[all...]
/external/opencv/cv/src/
H A Dcvsumpixels.cpp213 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...]
H A Dcvthresh.cpp311 int ithresh, imaxval, cn; local
323 cn = CV_MAT_CN(src->type);
324 if( cn > 1 )
H A Dcvsamplers.cpp548 int cn, src_step, dst_step; local
563 cn = CV_MAT_CN( src->type );
565 if( (cn != 1 && cn != 3) || !CV_ARE_CNS_EQ( src, dst ))
578 func = (CvGetRectSubPixFunc)(gr_tab[cn != 1].fn_2d[CV_MAT_DEPTH(src->type)]);
585 func = (CvGetRectSubPixFunc)(gr_tab[cn != 1].fn_2d[1]);
819 int k, cn; local
837 cn = CV_MAT_CN( src->type );
839 if( (cn != 1 && cn !
[all...]
H A Dcvutils.cpp113 int top, int left, int cn, const uchar* )
118 if( srcstep == dststep && dst + dststep*top + left*cn == src &&
122 cn == 1 ? icvCopyReplicateBorder_8u_C1IR_p :
123 cn == 2 ? icvCopyReplicateBorder_16s_C1IR_p :
124 cn == 3 ? icvCopyReplicateBorder_8u_C3IR_p :
125 cn == 4 ? icvCopyReplicateBorder_32s_C1IR_p :
126 cn == 6 ? icvCopyReplicateBorder_16s_C3IR_p :
127 cn == 8 ? icvCopyReplicateBorder_16s_C4IR_p :
128 cn == 12 ? icvCopyReplicateBorder_32s_C3IR_p :
129 cn
111 icvCopyReplicateBorder_8u( const uchar* src, int srcstep, CvSize srcroi, uchar* dst, int dststep, CvSize dstroi, int top, int left, int cn, const uchar* ) argument
334 icvCopyConstBorder_8u( const uchar* src, int srcstep, CvSize srcroi, uchar* dst, int dststep, CvSize dstroi, int top, int left, int cn, const uchar* value ) argument
[all...]
H A Dcvderiv.cpp496 int cn = CV_MAT_CN(state->get_src_type()); \
497 int ksize2 = ksize/2, ksize2n = ksize2*cn; \
503 width *= cn; \
509 dsttype s1 = (dsttype)(s[i-cn] - s0*2 + s[i+cn]); \
515 dsttype s0 = (dsttype)(s[i-cn] + s[i]*2 + s[i+cn]); \
516 dsttype s1 = (dsttype)(s[i-cn] - s[i]*2 + s[i+cn]); \
522 dsttype s0 = (dsttype)(s[i-2*cn]
554 int cn = CV_MAT_CN(state->get_src_type()); local
696 int cn = CV_MAT_CN(state->get_src_type()); local
[all...]
H A Dcvfloodfill.cpp97 CvFFillSegment* buffer, int buffer_size, int cn )
110 if( cn == 1 )
125 assert( cn == 3 );
174 if( cn == 1 )
229 CvFFillSegment* buffer, int buffer_size, int cn )
242 if( cn == 1 )
257 assert( cn == 3 );
306 if( cn == 1 )
376 CvFFillSegment* buffer, int buffer_size, int cn )
399 for( i = 0; i < cn;
1028 int i, type, depth, cn, is_simple, idx; local
[all...]
H A Dcvmoments.cpp254 ( const srctype* img, int step, CvSize size, int cn, int coi, double *moments ) \
275 for( x = 0; x < size.width - 3; x += 4, ptr += cn*4 ) \
277 temptype p0 = __op__(ptr[0]), p1 = __op__(ptr[cn]), \
278 p2 = __op__(ptr[2*cn]), p3 = __op__(ptr[3*cn]); \
300 for( ; x < size.width; sx += 2 * x + 1, x++, ptr += cn ) \
378 int type = 0, depth, cn, pix_size; local
429 cn = CV_MAT_CN( type );
433 if( cn > 1 && coi == 0 )
492 mat->step, cur_tile_size, cn, co
[all...]
H A Dcvmorph.cpp225 int cn = CV_MAT_CN(src_type); local
273 nz_loc[k++] = cvPoint(j*cn,i);
276 nz_loc[k++] = cvPoint(anchor.x*cn,anchor.y);
282 int i, cn = CV_MAT_CN(src_type); local
284 for( i = 0; i < cn; i++ )
470 int cn = CV_MAT_CN(state->get_src_type()); \
473 width *= cn; ksize *= cn; \
475 if( ksize == cn ) \
482 for( k = 0; k < cn;
[all...]
H A Dcvpyramids.cpp896 int dststep, CvSize dstsize, int cn );
915 int dststep, CvSize size, void* buffer, int cn );
941 int type, depth, cn; local
974 cn = CV_MAT_CN(type);
976 if( cn != 1 && cn != 3 )
992 icvDepthToDataType(type), cn, &buffer_size ) >= 0;
996 icvPyrUpG5x5_GetBufSize( size.width, icvDepthToDataType(type), cn, &buffer_size );
1007 func( src->data.ptr, src->step, dst->data.ptr, dst->step, size, buffer, cn );
1034 int type, depth, cn; local
[all...]
H A Dcvsegmentation.cpp330 const int cn = 3; local
415 dptr = dst_pyramid[level+1]->data.ptr + dstep + cn;
424 for( j = 1; j < size1.width-1; j++, dptr += cn )
/external/opencv/cxcore/src/
H A Dcxlut.cpp103 #define ICV_DEF_LUT_FUNC_8U_CN( flavor, dsttype, cn ) \
104 CvStatus CV_STDCALL icvLUT_Transform8u_##flavor##_C##cn##R( \
109 size.width *= cn; \
114 ICV_LUT_CASE_C##cn( dsttype ) \
136 const dsttype* _lut, int cn ) \
138 int max_block_size = (1 << 10)*cn; \
142 size.width *= cn; \
148 for( k = 0; k < cn; k++ ) \
149 for( i = 0; i < size.width; i += cn ) \
150 dst[i+k] = _lut[src[i+k]*cn
222 int depth, cn, lut_cn; local
[all...]
H A Dcxminmaxloc.cpp48 #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...]
H A Dcxnorm.cpp77 _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, in
977 int type, depth, cn, is_relative; local
[all...]
/external/opencv/otherlibs/highgui/
H A Dloadsave.cpp401 int cn; local
433 cn = iscolor ? 3 : 1;
442 CV_CALL( matrix = cvCreateMat( size.height, size.width, CV_MAKETYPE(type, cn) ));
451 CV_CALL( image = cvCreateImage( size, type, cn ));
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/
H A DRFC4519Style.java18 public static final ASN1ObjectIdentifier cn = new ASN1ObjectIdentifier("2.5.4.3").intern(); field in class:RFC4519Style
75 DefaultSymbols.put(cn, "cn");
119 DefaultLookUp.put("cn", cn);
/external/icu/icu4c/source/common/
H A Drbbitblb.cpp114 RBBINode *cn = new RBBINode(RBBINode::opCat); local
116 if (cn == NULL) {
120 cn->fLeftChild = fTree;
121 fTree->fParent = cn;
122 cn->fRightChild = new RBBINode(RBBINode::endMark);
124 if (cn->fRightChild == NULL) {
126 delete cn;
129 cn->fRightChild->fParent = cn;
130 fTree = cn;
[all...]
/external/libpcap/Win32/Src/
H A Dgetaddrinfo.c923 char *ap = NULL, *cn = NULL; local
943 if ((cn = strdup(hp->h_name)) == NULL) {
950 GET_CANONNAME(cur, cn);
952 free(cn); cn = NULL;
970 if (cn)
971 free(cn);
/external/llvm/lib/LTO/
H A DLTOModule.cpp258 Constant *cn = gvn->getInitializer(); local
259 if (ConstantDataArray *ca = dyn_cast<ConstantDataArray>(cn)) {

Completed in 2180 milliseconds

123