Searched defs:kp (Results 1 - 25 of 32) sorted by relevance

12

/external/jarjar/src/main/com/tonicsystems/jarjar/
H A DMainProcessor.java28 private final KeepProcessor kp; field in class:MainProcessor
47 kp = keepList.isEmpty() ? null : new KeepProcessor(keepList);
52 if (kp != null)
53 processors.add(kp);
61 if (kp == null)
76 for (String exclude : kp.getExcludes()) {
95 if (kp != null)
/external/webrtc/talk/media/base/
H A Dcryptoparams.h40 const std::string& kp,
42 : tag(t), cipher_suite(cs), key_params(kp), session_params(sp) {}
38 CryptoParams(int t, const std::string& cs, const std::string& kp, const std::string& sp) argument
/external/freetype/src/tools/
H A Dtest_afm.c53 AFM_KernPair kp = fi->KernPairs + i; local
56 printf( "\t%3d + %3d => (%4d, %4d)\n", kp->index1,
57 kp->index2,
58 kp->x,
59 kp->y );
/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.plinear/
H A Deval.pass.cpp62 int kp = -1; local
81 if (k != kp)
89 kp = k;
114 int kp = -1;
133 if (k != kp)
141 kp = k;
166 int kp = -1;
185 if (k != kp)
193 kp = k;
218 int kp
[all...]
H A Deval_param.pass.cpp62 int kp = -1; local
81 if (k != kp)
89 kp = k;
/external/jemalloc/test/unit/
H A Dckh.c55 void **kp, **vp; local
58 kp = (i & 1) ? &k.p : NULL;
62 assert_false(ckh_search(&ckh, strs[i], kp, vp),
81 void **kp, **vp; local
84 kp = (i & 1) ? &k.p : NULL;
88 assert_false(ckh_remove(tsd, &ckh, strs[i], kp, vp),
/external/freetype/src/base/
H A Dfthash.c53 const char* kp = key->str; local
58 while ( *kp )
59 res = ( res << 5 ) - res + (FT_ULong)*kp++;
/external/libedit/src/
H A Demacs.c93 Char *cp, *p, *kp; local
101 for (p = el->el_line.cursor, kp = el->el_chared.c_kill.buf; p < cp; p++)
103 *kp++ = *p;
104 el->el_chared.c_kill.last = kp;
122 Char *kp, *cp; local
139 for (kp = el->el_chared.c_kill.buf; kp < el->el_chared.c_kill.last; kp++)
140 *cp++ = *kp;
158 Char *kp, *c local
180 Char *kp, *cp; local
213 Char *kp, *cp; local
[all...]
H A Dcommon.c114 Char *cp, *p, *kp; local
122 for (p = cp, kp = el->el_chared.c_kill.buf; p < el->el_line.cursor; p++)
123 *kp++ = *p;
124 el->el_chared.c_kill.last = kp;
189 Char *kp, *cp; local
192 kp = el->el_chared.c_kill.buf;
194 *kp++ = *cp++; /* copy it */
195 el->el_chared.c_kill.last = kp;
H A Dvi.c645 Char *kp, *cp; local
648 kp = el->el_chared.c_kill.buf;
650 *kp++ = *cp++; /* copy it */
651 el->el_chared.c_kill.last = kp;
/external/nos/host/android/hals/keymaster/test/
H A Dimport_key_test.cpp341 KeyParameter kp; local
342 kp.tag = Tag::ALGORITHM;
343 kp.f.algorithm = Algorithm::RSA;
376 ImportKey(ImportKeyRequestEq(hidl_vec<KeyParameter>{kp}, rsa.get()), _))
381 hidl_vec<KeyParameter>{kp}, KeyFormat::PKCS8, der_vec,
/external/clang/test/FixIt/
H A Dfixit-cxx0x.cpp91 int *ip; char *kp; member in namespace:TestMisplacedEllipsisRecovery
97 int e = me.e(&ip, &kp);
/external/freetype/src/type1/
H A Dt1afm.c118 AFM_KernPair kp; local
174 kp = fi->KernPairs;
204 kp->index1 = FT_Get_Char_Index( t1_face, p[0] );
205 kp->index2 = FT_Get_Char_Index( t1_face, p[1] );
207 kp->x = (FT_Int)FT_PEEK_SHORT_LE(p + 2);
208 kp->y = 0;
210 kp++;
/external/nos/host/android/hals/keymaster/
H A Dimport_wrapped_key.cpp124 KeyParameter kp; local
129 kp.tag = tag;
132 kp.f.purpose = (KeyPurpose)val;
135 kp.f.blockMode = (BlockMode)val;
138 kp.f.digest = (Digest)val;
141 kp.f.paddingMode = (PaddingMode)val;
144 kp.f.longInteger = val;
150 if (key_parameter_to_pb(kp, param) != ErrorCode::OK) {
173 KeyParameter kp; local
174 kp
234 KeyParameter kp; local
273 KeyParameter kp; local
[all...]
H A Dproto_utils.cpp632 KeyParameter *kp)
642 &kp->f.purpose) != ErrorCode::OK) {
648 &kp->f.algorithm) != ErrorCode::OK) {
653 kp->f.integer = param.integer();
658 &kp->f.blockMode) != ErrorCode::OK) {
665 &kp->f.digest) != ErrorCode::OK) {
672 &kp->f.paddingMode) != ErrorCode::OK) {
677 kp->f.boolValue = (bool)param.integer();
680 kp->f.integer = param.integer();
685 &kp
631 pb_to_key_parameter(const nosapp::KeyParameter& param, KeyParameter *kp) argument
879 KeyParameter kp; local
[all...]
/external/one-true-awk/
H A Dlex.c437 int binsearch(char *w, Keyword *kp, int n) argument
445 if ((cond = strcmp(w, kp[mid].word)) < 0)
457 Keyword *kp; local
462 kp = keywords + n;
464 yylval.i = kp->sub;
465 switch (kp->type) { /* special handling */
467 if (kp->sub == FSYSTEM && safe)
469 RET(kp->type);
473 RET(kp->type);
477 RET(kp
[all...]
/external/tcpdump/
H A Dprint-krb.c151 register const struct krb *kp; local
157 #define IS_LENDIAN(kp) (((kp)->type & 0x01) != 0)
158 #define KTOHSP(kp, cp) (IS_LENDIAN(kp) ? EXTRACT_LE_16BITS(cp) : EXTRACT_16BITS(cp))
160 kp = (const struct krb *)cp;
162 if ((&kp->type) >= ndo->ndo_snapend) {
167 type = kp->type & (0xFF << 1);
170 IS_LENDIAN(kp) ? "le" : "be", tok2str(type2str, NULL, type)));
201 len = KTOHSP(kp, c
229 register const struct krb *kp; local
[all...]
/external/xmlrpcpp/src/
H A DXmlRpcServerConnection.cpp84 char *kp = 0; // Start of connection value local
90 kp = cp + 12;
130 if (kp == 0 || strncasecmp(kp, "keep-alive", 10) != 0)
133 if (kp != 0 && strncasecmp(kp, "close", 5) == 0)
/external/libxcam/modules/ocl/
H A Dcv_feature_match.cpp71 cv::KeyPoint &kp = keypoints[i]; local
72 corners.push_back (kp.pt);
/external/syslinux/core/fs/xfs/
H A Dxfs_dir2.c494 xfs_bmbt_key_t *kp,
501 if (be64_to_cpu(kp[i].br_startoff) == off)
503 if (be64_to_cpu(kp[i].br_startoff) > off) {
525 xfs_bmbt_key_t *kp; local
545 kp = XFS_BMDR_KEY_ADDR(rblock, 1);
547 select_child(fsblkno, kp, pp,
557 kp = XFS_BMBT_KEY_ADDR(fs, blk, 1);
559 select_child(fsblkno, kp, pp,
493 select_child(xfs_dfiloff_t off, xfs_bmbt_key_t *kp, xfs_bmbt_ptr_t *pp, int nrecs) argument
/external/opencv/cv/src/
H A Dcvinpaint.cpp334 int km=k-1+(k==1),kp=k-1-(k==t->rows-2); local
365 gradI.y=(float)((CV_MAT_3COLOR_ELEM(*out,uchar,kp+1,lm,color)-CV_MAT_3COLOR_ELEM(*out,uchar,km-1,lm,color)))*2.0f;
367 gradI.y=(float)((CV_MAT_3COLOR_ELEM(*out,uchar,kp+1,lm,color)-CV_MAT_3COLOR_ELEM(*out,uchar,km,lm,color)));
371 gradI.y=(float)((CV_MAT_3COLOR_ELEM(*out,uchar,kp,lm,color)-CV_MAT_3COLOR_ELEM(*out,uchar,km-1,lm,color)));
447 int km=k-1+(k==1),kp=k-1-(k==t->rows-2); local
478 gradI.y=(float)((CV_MAT_ELEM(*out,uchar,kp+1,lm)-CV_MAT_ELEM(*out,uchar,km-1,lm)))*2.0f;
480 gradI.y=(float)((CV_MAT_ELEM(*out,uchar,kp+1,lm)-CV_MAT_ELEM(*out,uchar,km,lm)));
484 gradI.y=(float)((CV_MAT_ELEM(*out,uchar,kp,lm)-CV_MAT_ELEM(*out,uchar,km-1,lm)));
542 int km=k-1+(k==1),kp=k-1-(k==f->rows-2); local
555 gradI.x=(float)(abs(CV_MAT_3COLOR_ELEM(*out,uchar,kp
633 int km=k-1+(k==1),kp=k-1-(k==t->rows-2); local
[all...]
H A Dcvsurf.cpp357 CvSURFPoint* kp = (CvSURFPoint*)cvGetSeqElem( keypoints, k ); local
358 CvPoint2D32f center = kp->pt;
359 int size = kp->size;
409 kp->dir = descriptor_dir;
/external/freetype/src/psaux/
H A Dafmparse.c695 AFM_KernPair kp; local
740 kp = fi->KernPairs + n;
751 kp->index1 = shared_vals[0].u.u;
752 kp->index2 = shared_vals[1].u.u;
755 kp->x = 0;
756 kp->y = shared_vals[2].u.i;
760 kp->x = shared_vals[2].u.i;
761 kp->y = ( token == AFM_TOKEN_KP && r == 4 )
/external/opencv/cv/include/
H A Dcv.h1091 CvSURFPoint kp; local
1092 kp.pt = pt;
1093 kp.laplacian = laplacian;
1094 kp.size = size;
1095 kp.dir = dir;
1096 kp.hessian = hessian;
1097 return kp;
/external/syslinux/com32/lib/libpng/
H A Dpngwutil.c1232 png_charp kp, dp; local
1256 for (kp = key, dp = *new_key; *kp != '\0'; kp++, dp++)
1258 if ((png_byte)*kp < 0x20 ||
1259 ((png_byte)*kp > 0x7E && (png_byte)*kp < 0xA1))
1265 "invalid keyword character 0x%02X", (png_byte)*kp);
1274 *dp = *kp;
1280 kp
[all...]

Completed in 5691 milliseconds

12