Searched defs:ci (Results 226 - 250 of 266) sorted by relevance

1234567891011

/external/libvorbis/lib/
H A Dpsy.c37 codec_setup_info *ci=vi->codec_setup; local
38 vorbis_info_psy_global *gi=&ci->psy_g_param;
832 codec_setup_info *ci=vi->codec_setup; local
833 vorbis_info_psy_global *gi=&ci->psy_g_param;
835 int n=ci->blocksizes[vd->W]/2;
/external/llvm/utils/TableGen/
H A DAsmMatcherEmitter.cpp588 static OperandMatchEntry create(MatchableInfo* mi, ClassInfo *ci, argument
592 X.CI = ci;
/external/opencv/cv/src/
H A Dcvcalibinit.cpp1044 CvPoint2D32f ci = {0,0}; local
1050 ci.x += pt.x;
1051 ci.y += pt.y;
1054 ci.x *= 0.25f;
1055 ci.y *= 0.25f;
1057 centers[i] = ci;
1058 center.x += ci.x;
1059 center.y += ci.y;
/external/opencv/ml/src/
H A Dmlboost.cpp336 int ci = data->get_var_type(vi); local
338 int mi = data->cat_count->data.i[ci];
494 int ci = data->get_var_type(vi); local
496 int mi = data->cat_count->data.i[ci];
1363 int ci = vtype[i]; local
1366 if( ci >= 0 )
1368 int a = cofs[ci], b = cofs[ci+1], c = a;
1392 val = (float)(c - cofs[ci]);
H A Dmlsvm.cpp1405 int ci = class_ranges[i+1] - class_ranges[i]; local
1409 if( params.nu*(ci + cj)*0.5 > MIN( ci, cj ) )
1423 int si = class_ranges[i], ci = class_ranges[i+1] - si; local
1428 for( k = 0; k < ci; k++ )
1436 temp_samples[ci + k] = samples[sj + k];
1437 temp_y[ci + k] = -1;
1446 if( !train1( ci + cj, var_count, temp_samples, temp_y,
1450 for( k = 0; k < ci + cj; k++ )
1460 for( k = 0; k < ci;
[all...]
H A Dmltree.cpp308 int ci; local
318 ci = get_var_type(vi);
329 ci = cat_var_count;
338 if( vi < var_count && ci >= 0 ||
389 cat_count->data.i[ci] = c_count;
390 cat_ofs->data.i[ci] = total_c_count;
422 else if( ci < 0 ) // process ordered variable
608 int ci = get_var_type(vi); local
610 if( ci >= 0 || vi >= var_count )
718 int ci local
986 int ci = get_var_type(vi); local
1386 int ci = data->get_var_type(vi); local
1534 int ci = data->get_var_type(vi); local
2426 int c = cv_count[j], ci = n - c; local
2553 int ci = data->get_var_type(vi); local
2600 int ci = data->get_var_type(vi); local
2944 int ci = vtype[vi]; local
3053 int ci; local
3200 int vi, ci; local
[all...]
/external/opencv/otherlibs/highgui/
H A Dgrfmt_jpeg.cpp872 cmp_info& ci = m_ci[idx-1]; local
874 if( ci.tq > 0 /* duplicated description */) goto parsing_end;
876 ci.h = (char)lstrm.GetByte();
877 ci.v = (char)(ci.h & 15);
878 ci.h >>= 4;
879 ci.tq = (char)lstrm.GetByte();
880 if( !((ci.h == 1 || ci.h == 2 || ci
[all...]
/external/openssl/apps/
H A Dca.c1716 X509_CINF *ci; local
2023 ci=ret->cert_info;
2030 if (BN_to_ASN1_INTEGER(serial,ci->serialNumber) == NULL)
2062 if (ci->version == NULL)
2063 if ((ci->version=ASN1_INTEGER_new()) == NULL)
2065 ASN1_INTEGER_set(ci->version,2); /* version 3 certificate */
2069 if (ci->extensions != NULL)
2070 sk_X509_EXTENSION_pop_free(ci->extensions,
2073 ci->extensions = NULL;
/external/openssl/ssl/
H A Dssltest.c2544 const SSL_CIPHER *ci, *tci = NULL; local
2549 while ((ci = meth->get_cipher(i++)) != NULL)
2552 if (ci->id >= tci->id)
2554 fprintf(stderr, "failed %lx vs. %lx\n", ci->id, tci->id);
2557 tci = ci;
2565 while ((ci = meth->get_cipher(i++)) != NULL)
2568 if (ci->id >= tci->id)
2570 fprintf(stderr, "failed %lx vs. %lx\n", ci->id, tci->id);
2573 tci = ci;
2581 while ((ci
[all...]
/external/zlib/src/contrib/minizip/
H A Dzip.c171 curfile64_info ci; /* info on the file curretly writing */ member in struct:__anon34346
876 ziinit.ci.stream_initialised = 0;
969 if(zi->ci.zip64)
976 err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)zi->ci.flag,2);
979 err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)zi->ci.method,2);
982 err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)zi->ci.dosDate,4);
989 if(zi->ci.zip64)
996 if(zi->ci.zip64)
1005 if(zi->ci.zip64)
1026 if ((err==ZIP_OK) && (zi->ci
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A Dusearch.cpp54 collIterate *ci = &(elems->iteratordata_); local
55 ci->pos = ci->string + offset;
56 ci->CEpos = ci->toReturn = ci->extendCEs ? ci->extendCEs : ci->CEs;
57 if (ci->flags & UCOL_ITER_INNORMBUF) {
58 ci
[all...]
H A Ducol.cpp6985 void ucol_CEBuf_Expand(ucol_CEBuf *b, collIterate *ci, UErrorCode *status) { argument
6990 ci->flags |= UCOL_ITER_ALLOCATED;
7009 inline void UCOL_CEBUF_PUT(ucol_CEBuf *b, uint32_t ce, collIterate *ci, UErrorCode *status) { argument
7011 ucol_CEBuf_Expand(b, ci, status);
/external/icu/icu4c/source/i18n/
H A Dsmpdtfmt.cpp3230 int32_t ci = from.indexOf(c); local
3231 if (ci == -1) {
3235 c = to[ci];
/external/chromium_org/third_party/icu/source/test/intltest/
H A Drbbitst.cpp4142 int ci; local
4143 for (ci=0; ci<2; ci++) { // Number of items to include in error text.
4163 for (ci=startContext; ci<endContext;) {
4167 c = testText.char32At(ci);
4168 if (ci == i) {
4171 } else if (expectedBreaks[ci] != 0) {
4186 ci
[all...]
/external/clang/lib/Analysis/
H A DThreadSafety.cpp596 unsigned ci = i+1; // first child of i local
599 ++k, ci=getNextSibling(ci), cj = Other.getNextSibling(cj)) {
600 Result = Result && matches(Other, ci, cj);
655 unsigned ci = getNextSibling(i+1); local
656 for (unsigned k=0; k<NumArgs; ++k, ci = getNextSibling(ci)) {
657 S += toString(ci);
672 unsigned ci = getNextSibling(i+1); local
673 for (unsigned k=0; k<NumArgs; ++k, ci
699 unsigned ci = i+1; local
[all...]
/external/icu/icu4c/source/test/intltest/
H A Drbbitst.cpp4142 int ci; local
4143 for (ci=0; ci<2; ci++) { // Number of items to include in error text.
4163 for (ci=startContext; ci<endContext;) {
4167 c = testText.char32At(ci);
4168 if (ci == i) {
4171 } else if (expectedBreaks[ci] != 0) {
4186 ci
[all...]
/external/robolectric/lib/main/
H A Djavassist-3.14.0-GA.jar ... .bytecode.CodeAttribute ca javassist.bytecode.CodeIterator ci public javassist.CtMethod toMethod (java.lang.String ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ecf_3.1.0.v20100529-0735.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.registry_3.5.0.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.ds_1.2.1.R36x_v20100803.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jface_3.6.1.M20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/net/third_party/nss/ssl/
H A Dsslimpl.h841 * until a session structure (the sec.ci.sid of an sslSocket) is setup
843 * (in sec.ci.sid.u.ssl3.signedCertTimestamps).
1103 ** This is "ci", as in "ss->sec.ci".
1145 /* bit values for ci->elements, ci->requiredElements, sentElements. */
1209 sslConnectInfo ci; /* ssl 2 & 3 */ member in struct:sslSecurityInfoStr
/external/chromium_org/third_party/dom_distiller_js/package/js/
H A Ddomdistiller.js299 function ci(a){var b=a.parentNode;(!b||b.nodeType!=1)&&(b=null);return b}
415 function Md(a){Ub();if(Tb<2)return;Wb('NOT adding [tag='+a.tagName+sv+a.id+fw+ci(a).tagName+', bcos="non-data table"]')}
416 function tb(a,b){var c;Ub();if(Tb<2)return;c=ci(a);Wb('TABLE: '+b+sv+a.id+tv+a.className+', parent=['+c.tagName+sv+c.id+tv+c.className+uv)}
463 function Hb(a){var b,c,d,e,f;f=ci(a);if(!Cp(rv,f.tagName))return $u;c=f.getElementsByTagName('FIGCAPTION');e=c.length;b=$u;if(e>0&&e<=2){for(d=0;d<e&&!b.length;++d){b=hb(c[d])}}return b}
467 function em(a,b,c){var d,e,f,g;f=ci(ol(b));for(g=new yr(a,c);g.c>0;){d=ti(wr(g),19);if(d.f.c<1){continue}e=ci(pl(d));if(ci(f)==ci(e)){tl(d,true);!d.d&&(d.d=new Ht);Et(d.d,nx);f=ci(ol(d))}}}
468 function fm(a,b,c){var d,e,f,g;g=ci(p
[all...]

Completed in 2666 milliseconds

1234567891011