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

12

/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
H A DLocalStreamForwarder.java27 private Channel cn; field in class:LocalStreamForwarder
32 cn = cm.openDirectTCPIPChannel(host_to_connect, port_to_connect,
42 return cn.getStdoutStream();
57 return cn.getStdinStream();
72 cm.closeChannel(cn, "Closed due to user request.", true);
H A DSession.java28 private Channel cn; field in class:Session
42 this.cn = cm.openSessionChannel();
125 cm.requestPTY(cn, term, term_width_characters, term_height_characters, term_width_pixels, term_height_pixels,
204 cm.requestX11(cn, singleConnection, "MIT-MAGIC-COOKIE-1", hexEncodedFakeCookie, 0);
256 cm.requestExecCommand(cn, cmd, charsetName);
278 cm.requestShell(cn);
305 cm.requestSubSystem(cn, name);
310 return cn.getState();
315 return cn.getStdoutStream();
320 return cn
[all...]
/external/apache-http/src/org/apache/http/conn/ssl/
H A DAbstractVerifier.java152 String cn = it.next();
153 cn = cn.toLowerCase(Locale.ENGLISH);
156 buf.append(cn);
165 boolean doWildcard = cn.startsWith("*.") &&
166 cn.indexOf('.', 2) != -1 &&
167 acceptableCountryWildcard(cn) &&
171 match = hostName.endsWith(cn.substring(1));
175 match = countDots(hostName) == countDots(cn);
178 match = hostName.equals(cn);
189 acceptableCountryWildcard(String cn) argument
[all...]
/external/valgrind/main/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/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 )
H A Dcvsmooth.cpp196 int cn = CV_MAT_CN(state->get_src_type()); local
199 width = (width - 1)*cn; ksize *= cn;
201 for( k = 0; k < cn; k++, src++, dst++ )
204 for( i = 0; i < ksize; i += cn )
207 for( i = 0; i < width; i += cn )
210 dst[i+cn] = s;
222 int cn = CV_MAT_CN(state->get_src_type()); local
225 width = (width - 1)*cn; ksize *= cn;
250 int cn = CV_MAT_CN(state->get_src_type()); local
311 int cn = CV_MAT_CN(state->get_src_type()); local
387 int cn = CV_MAT_CN(state->get_src_type()); local
445 int cn = CV_MAT_CN(state->get_src_type()); local
649 icvMedianBlur_8u_CnR_O1( uchar* src, int src_step, uchar* dst, int dst_step, CvSize size, int kernel_size, int cn, int pad_left, int pad_right ) argument
[all...]
/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/openssl/crypto/evp/
H A Devp_test.c139 const unsigned char *ciphertext,int cn,
152 hexdump(stdout,"Ciphertext",ciphertext,cn);
184 if(outl+outl2 != cn)
187 outl+outl2,cn);
191 if(memcmp(out,ciphertext,cn))
194 hexdump(stderr,"Got",out,cn);
195 hexdump(stderr,"Expected",ciphertext,cn);
210 if(!EVP_DecryptUpdate(&ctx,out,&outl,ciphertext,cn))
247 const unsigned char *ciphertext,int cn,
256 test1(c,key,kn,iv,in,plaintext,pn,ciphertext,cn,encde
136 test1(const EVP_CIPHER *c,const unsigned char *key,int kn, const unsigned char *iv,int in, const unsigned char *plaintext,int pn, const unsigned char *ciphertext,int cn, int encdec) argument
244 test_cipher(const char *cipher,const unsigned char *key,int kn, const unsigned char *iv,int in, const unsigned char *plaintext,int pn, const unsigned char *ciphertext,int cn, int encdec) argument
261 test_digest(const char *digest, const unsigned char *plaintext,int pn, const unsigned char *ciphertext, unsigned int cn) argument
371 int kn,in,pn,cn; local
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/
H A DRFC4519Style.java23 public static final ASN1ObjectIdentifier cn = new ASN1ObjectIdentifier("2.5.4.3"); field in class:RFC4519Style
80 DefaultSymbols.put(cn, "cn");
124 DefaultLookUp.put("cn", cn);
/external/llvm/lib/Target/NVPTX/
H A DNVPTXISelDAGToDAG.cpp678 ConstantSDNode *cn = cast<ConstantSDNode>(N.getNode()); local
679 unsigned retval = cn->getZExtValue();
/external/wpa_supplicant_6/wpa_supplicant/src/tls/
H A Dx509v3.h25 char *cn; /* commonName */ member in struct:x509_name
/external/icu4c/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/libsepol/src/
H A Dconditional.c192 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) argument
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
191 cond_node_search(policydb_t * p, cond_node_t * list, cond_node_t * cn) argument
[all...]

Completed in 466 milliseconds

12