Searched refs:rc2 (Results 1 - 25 of 37) sorted by relevance

12

/external/openssl/crypto/rc2/
H A Drc2_ecb.c1 /* crypto/rc2/rc2_ecb.c */
59 #include <openssl/rc2.h>
H A Drc2cfb64.c1 /* crypto/rc2/rc2cfb64.c */
59 #include <openssl/rc2.h>
H A Drc2ofb64.c1 /* crypto/rc2/rc2ofb64.c */
59 #include <openssl/rc2.h>
H A Drc2speed.c1 /* crypto/rc2/rc2speed.c */
102 #include <openssl/rc2.h>
H A Drc2_cbc.c1 /* crypto/rc2/rc2_cbc.c */
59 #include <openssl/rc2.h>
H A Drc2_skey.c1 /* crypto/rc2/rc2_skey.c */
60 #include <openssl/rc2.h>
H A Drc2test.c1 /* crypto/rc2/rc2test.c */
75 #include <openssl/rc2.h>
155 printf("ecb rc2 error encrypting\n");
/external/srec/portable/include/
H A Dplog.h312 ESR_ReturnCode rc2; \
314 rc2 = PStackTraceGetFunctionName(text, &len); \
315 if (rc2==ESR_SUCCESS) \
318 pfprintf(PSTDERR, "[%s:%d] PStackTraceGetValue failed with %s\n", __FILE__, __LINE__, ESR_rc2str(rc2)); \
/external/chromium_org/third_party/sqlite/src/src/
H A Dtest_multiplex.c358 int rc2 = pSubOpen->pMethods->xFileSize(pSubOpen, &sz); local
359 if( (rc2==SQLITE_OK) && (sz>pGroup->nChunkSize) ){
399 int rc2; local
412 rc2 = pOrigVfs->xAccess(pOrigVfs, gMultiplex.zName,
414 if( rc2==SQLITE_OK && exists){
416 rc2 = pOrigVfs->xDelete(pOrigVfs, gMultiplex.zName, syncDir);
417 if( rc2!=SQLITE_OK ) rc = rc2;
478 int rc2 = pSubOpen->pMethods->xClose(pSubOpen); local
479 if( rc2!
588 int rc2; local
638 int rc2 = pSubOpen->pMethods->xSync(pSubOpen, flags); local
653 int rc2; local
[all...]
H A Dbackup.c518 TESTONLY( int rc2 );
519 TESTONLY( rc2 = ) sqlite3BtreeCommitPhaseOne(p->pSrc, 0);
520 TESTONLY( rc2 |= ) sqlite3BtreeCommitPhaseTwo(p->pSrc, 0);
521 assert( rc2==SQLITE_OK );
H A Dvdbeapi.c469 int rc2 = SQLITE_OK; /* Result from sqlite3Reprepare() */ local
481 && (rc2 = rc = sqlite3Reprepare(v))==SQLITE_OK ){
485 if( rc2!=SQLITE_OK && ALWAYS(v->isPrepareV2) && ALWAYS(db->pErr) ){
498 v->rc = rc2;
H A Dtest_journal.c563 int rc2 = readJournalFile(p, pMain); local
564 if( rc==SQLITE_OK ) rc = rc2;
/external/openssl/apps/
H A Dprogs.pl75 "rc2", "bf", "cast", "rc5",
82 "rc2-cbc", "rc2-ecb", "rc2-cfb","rc2-ofb", "rc2-64-cbc", "rc2-40-cbc",
96 elsif ($_ =~ /rc2/) { $t="#ifndef OPENSSL_NO_RC2\n${t}#endif\n"; }
/external/chromium_org/third_party/skia/src/opts/
H A DSkXfermode_opts_SSE2.cpp269 __m128i rc2 = _mm_mullo_epi16(sa, da); // sa * da local
272 rc2 = _mm_sub_epi32(rc2, tmp3);
275 _mm_and_si128(cmp, rc2));
367 __m128i rc2 = _mm_add_epi32(tmp1, tmp2); local
368 rc2 = _mm_add_epi32(rc2, tmp3);
369 rc2 = clamp_div255round_SSE2(rc2);
370 rc2
422 __m128i rc2 = SkAlphaMulAlpha_SSE2(dc, isa); local
473 __m128i rc2 = _mm_sub_epi32(tmp1, tmp2); local
547 __m128i rc2 = _mm_and_si128(cmp, tmp2); local
[all...]
/external/skia/src/opts/
H A DSkXfermode_opts_SSE2.cpp269 __m128i rc2 = _mm_mullo_epi16(sa, da); // sa * da local
272 rc2 = _mm_sub_epi32(rc2, tmp3);
275 _mm_and_si128(cmp, rc2));
367 __m128i rc2 = _mm_add_epi32(tmp1, tmp2); local
368 rc2 = _mm_add_epi32(rc2, tmp3);
369 rc2 = clamp_div255round_SSE2(rc2);
370 rc2
422 __m128i rc2 = SkAlphaMulAlpha_SSE2(dc, isa); local
473 __m128i rc2 = _mm_sub_epi32(tmp1, tmp2); local
547 __m128i rc2 = _mm_and_si128(cmp, tmp2); local
[all...]
/external/libsepol/src/
H A Dnode_record.c330 int rc1, rc2; local
340 rc2 = memcmp(node->mask, key->mask, node->mask_sz);
342 return (rc2 != 0) ? rc2 : rc1;
348 int rc1, rc2; local
359 rc2 = memcmp(node->mask, node2->mask, node->mask_sz);
361 return (rc2 != 0) ? rc2 : rc1;
/external/openssl/crypto/evp/
H A De_rc2.c67 #include <openssl/rc2.h>
85 IMPLEMENT_BLOCK_CIPHER(rc2, ks, RC2, EVP_RC2_KEY, NID_rc2,
/external/pdfium/core/include/fxcrt/
H A Dfx_coordinates.h510 friend FX_BOOL operator == (const FXT_RECT &rc1, const FXT_RECT &rc2) argument
512 return rc1.left == rc2.left && rc1.top == rc2.top && rc1.width == rc2.width && rc1.height == rc2.height;
514 friend FX_BOOL operator != (const FXT_RECT &rc1, const FXT_RECT &rc2) argument
516 return rc1.left != rc2.left || rc1.top != rc2.top || rc1.width != rc2.width || rc1.height != rc2
[all...]
/external/chromium_org/third_party/sqlite/src/ext/rtree/
H A Drtree.c471 int rc2 = SQLITE_OK; local
495 rc2 = SQLITE_NOMEM;
509 if( rc==SQLITE_OK ) rc = rc2;
2312 int rc2 = SQLITE_OK; /* sqlite3_reset() return code */ local
2327 rc2 = nodeAcquire(pRtree, iNode, 0, &pChild->pParent);
2331 if( rc==SQLITE_OK ) rc = rc2;
2342 int rc2; local
2355 rc2 = nodeRelease(pRtree, pParent);
2357 rc = rc2;
2533 int rc2; local
2604 int rc2; local
2667 int rc2; local
2694 int rc2; local
2778 int rc2; local
[all...]
/external/chromium_org/ppapi/tests/
H A Dtest_graphics_2d.h53 const pp::Rect& rc2) const;
H A Dtest_graphics_2d.cc140 const pp::Rect& rc2) const {
141 if (rc1.width() != rc2.width() || rc1.height() != rc2.height())
147 *(image2.GetAddr32(pp::Point(rc2.x() + x, rc2.y() + y))))
/external/chromium_org/third_party/skia/tests/
H A DAAClipTest.cpp383 SkRasterClip rc2(ir);
389 rc2.op(r, baseSize, SkRegion::kIntersect_Op, true);
392 REPORTER_ASSERT(reporter, changed != (rc0 == rc2));
/external/skia/tests/
H A DAAClipTest.cpp358 SkRasterClip rc2(ir);
364 rc2.op(r, SkRegion::kIntersect_Op, true);
367 REPORTER_ASSERT(reporter, changed != (rc0 == rc2));
/external/openssl/
H A DCrypto-config-host.mk433 crypto/rc2/rc2_cbc.c \
434 crypto/rc2/rc2_ecb.c \
435 crypto/rc2/rc2_skey.c \
436 crypto/rc2/rc2cfb64.c \
437 crypto/rc2/rc2ofb64.c \
H A DCrypto-config-target.mk433 crypto/rc2/rc2_cbc.c \
434 crypto/rc2/rc2_ecb.c \
435 crypto/rc2/rc2_skey.c \
436 crypto/rc2/rc2cfb64.c \
437 crypto/rc2/rc2ofb64.c \

Completed in 1706 milliseconds

12