HomeSort by relevance Sort by last modified time
    Searched refs:ct (Results 1 - 25 of 376) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/dropbear/libtomcrypt/src/encauth/eax/
eax_decrypt.c 23 @param ct The ciphertext
28 int eax_decrypt(eax_state *eax, const unsigned char *ct, unsigned char *pt,
35 LTC_ARGCHK(ct != NULL);
38 if ((err = omac_process(&eax->ctomac, ct, length)) != CRYPT_OK) {
43 return ctr_decrypt(ct, pt, length, &eax->ctr);
eax_encrypt.c 24 @param ct [out] The ciphertext as encrypted
28 int eax_encrypt(eax_state *eax, const unsigned char *pt, unsigned char *ct,
35 LTC_ARGCHK(ct != NULL);
38 if ((err = ctr_encrypt(pt, ct, length, &eax->ctr)) != CRYPT_OK) {
43 return omac_process(&eax->ctomac, ct, length);
  /frameworks/rs/driver/
rsdShaderCache.cpp 45 for (uint32_t ct=0; ct < prog->getUniformCount(); ct++) {
46 if (data[ct].slot >= 0 && data[ct].arraySize > 1) {
49 if (prog->getUniformName(ct) == uniformList[ui]->name) {
50 data[ct].arraySize = (uint32_t)uniformList[ui]->arraySize;
58 prog->getUniformName(ct).string(), data[ct].slot, data[ct].arraySize)
    [all...]
rsdVertexArray.cpp 91 for (uint32_t ct=1; ct < maxAttrs; ct++) {
92 if(state->mAttrsEnabled[ct]) {
93 glDisableVertexAttribArray(ct);
94 state->mAttrsEnabled[ct] = false;
99 for (uint32_t ct=0; ct < mCount; ct++) {
100 int32_t slot = sc->vtxAttribSlot(mAttribs[ct].name)
    [all...]
  /frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
UT_copy_test.java 39 for (int ct=0; ct < f1.length; ct++) {
40 f1[ct] = (float)ct;
47 for (int ct=0; ct < f1.length; ct++) {
48 if (f1[ct] != f2[ct]) {
    [all...]
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
UT_copy_test.java 39 for (int ct=0; ct < f1.length; ct++) {
40 f1[ct] = (float)ct;
47 for (int ct=0; ct < f1.length; ct++) {
48 if (f1[ct] != f2[ct]) {
    [all...]
  /external/dropbear/libtomcrypt/src/encauth/ocb/
ocb_done_encrypt.c 25 @param ct [out] The ciphertext (if any)
31 unsigned char *ct, unsigned char *tag, unsigned long *taglen)
35 LTC_ARGCHK(ct != NULL);
38 return s_ocb_done(ocb, pt, ptlen, ct, tag, taglen, 0);
  /external/dropbear/libtomcrypt/src/modes/ctr/
ctr_decrypt.c 22 @param ct Ciphertext
28 int ctr_decrypt(const unsigned char *ct, unsigned char *pt, unsigned long len, symmetric_CTR *ctr)
31 LTC_ARGCHK(ct != NULL);
34 return ctr_encrypt(ct, pt, len, ctr);
  /external/dropbear/libtomcrypt/src/modes/f8/
f8_decrypt.c 22 @param ct Ciphertext
28 int f8_decrypt(const unsigned char *ct, unsigned char *pt, unsigned long len, symmetric_F8 *f8)
31 LTC_ARGCHK(ct != NULL);
33 return f8_encrypt(ct, pt, len, f8);
  /external/dropbear/libtomcrypt/src/modes/ofb/
ofb_decrypt.c 22 @param ct Ciphertext
28 int ofb_decrypt(const unsigned char *ct, unsigned char *pt, unsigned long len, symmetric_OFB *ofb)
31 LTC_ARGCHK(ct != NULL);
33 return ofb_encrypt(ct, pt, len, ofb);
  /frameworks/rs/tests/cppallocation/
compute.cpp 39 for (uint32_t ct=0; ct < numElems; ct++) {
40 buf[ct] = (uint32_t)ct;
49 for (uint32_t ct=0; ct < numElems; ct++) {
50 if (buf[ct] != ct * 2)
    [all...]
  /frameworks/base/graphics/java/android/renderscript/
ScriptIntrinsicLUT.java 36 for (int ct=0; ct < 256; ct++) {
37 mCache[ct] = (byte)ct;
38 mCache[ct + 256] = (byte)ct;
39 mCache[ct + 512] = (byte)ct;
40 mCache[ct + 768] = (byte)ct
    [all...]
ScriptGroup.java 106 for (int ct=0; ct < mInputs.length; ct++) {
107 if (mInputs[ct].mKID == s) {
108 mInputs[ct].mAllocation = a;
126 for (int ct=0; ct < mOutputs.length; ct++) {
127 if (mOutputs[ct].mKID == s) {
128 mOutputs[ct].mAllocation = a
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/aes/
aes_locl.h 68 # define PUTU32(ct, st) { *((u32 *)(ct)) = SWAP((st)); }
71 # define PUTU32(ct, st) { (ct)[0] = (u8)((st) >> 24); (ct)[1] = (u8)((st) >> 16); (ct)[2] = (u8)((st) >> 8); (ct)[3] = (u8)(st); }
  /external/openssl/crypto/aes/
aes_locl.h 68 # define PUTU32(ct, st) { *((u32 *)(ct)) = SWAP((st)); }
71 # define PUTU32(ct, st) { (ct)[0] = (u8)((st) >> 24); (ct)[1] = (u8)((st) >> 16); (ct)[2] = (u8)((st) >> 8); (ct)[3] = (u8)(st); }
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
IntrinsicHistogram.java 64 for (int ct=0; ct < i.length; ct++) {
65 int t = i[ct];
67 if ((ct % invs2) < outVSize) {
68 ref[(t * outvs2) + (ct % invs2)] ++;
80 for (int ct=0; ct < res.length; ct++) {
81 assertTrue(res[ct] == ref[ct])
    [all...]
  /frameworks/rs/cpu_ref/
rsCpuScriptGroup.cpp 60 for(size_t ct=0; ct < sl->count; ct++) {
62 func = (ScriptGroupRootFunc_t)sl->fnPtrs[ct];
63 mp->usr = sl->usrPtrs[ct];
73 if (sl->ins[ct]) {
74 mp->ptrIn = (const uint8_t *)sl->ins[ct]->mHal.drvState.lod[0].mallocPtr;
75 istep = sl->ins[ct]->mHal.state.elementSizeBytes;
77 if (sl->inExts[ct]) {
78 mp->in = mp->ptrIn + sl->ins[ct]->mHal.drvState.lod[0].stride * p->y
    [all...]
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
ScriptGroup.java 107 for (int ct=0; ct < mInputs.length; ct++) {
108 if (mInputs[ct].mKID == s) {
109 mInputs[ct].mAllocation = a;
127 for (int ct=0; ct < mOutputs.length; ct++) {
128 if (mOutputs[ct].mKID == s) {
129 mOutputs[ct].mAllocation = a
    [all...]
ScriptIntrinsicLUT.java 57 for (int ct=0; ct < 256; ct++) {
58 si.mCache[ct] = (byte)ct;
59 si.mCache[ct + 256] = (byte)ct;
60 si.mCache[ct + 512] = (byte)ct;
61 si.mCache[ct + 768] = (byte)ct
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_subexp.h 22 unsigned int *ct);
24 int vp9_prob_diff_update_savings_search(const unsigned int *ct,
29 int vp9_prob_diff_update_savings_search_model(const unsigned int *ct,
  /frameworks/rs/tests/cppstrided/
compute.cpp 47 for (uint32_t ct=0; ct < numElems; ct++) {
48 *(buf+(stride*i)+ct) = (uint32_t)ct + (i * numElems);
59 for (uint32_t ct=0; ct < numElems; ct++) {
60 if (*(buf+(stride*i)+ct) != (uint32_t)(ct + (i * numElems)) * 2)
    [all...]
  /external/dropbear/libtomcrypt/src/modes/lrw/
lrw_decrypt.c 22 @param ct The ciphertext
27 int lrw_decrypt(const unsigned char *ct, unsigned char *pt, unsigned long len, symmetric_LRW *lrw)
32 LTC_ARGCHK(ct != NULL);
40 return cipher_descriptor[lrw->cipher].accel_lrw_decrypt(ct, pt, len, lrw->IV, lrw->tweak, &lrw->key);
43 return lrw_process(ct, pt, len, LRW_DECRYPT, lrw);
lrw_encrypt.c 23 @param ct [out] The ciphertext
27 int lrw_encrypt(const unsigned char *pt, unsigned char *ct, unsigned long len, symmetric_LRW *lrw)
32 LTC_ARGCHK(ct != NULL);
40 return cipher_descriptor[lrw->cipher].accel_lrw_encrypt(pt, ct, len, lrw->IV, lrw->tweak, &lrw->key);
43 return lrw_process(pt, ct, len, LRW_ENCRYPT, lrw);
  /frameworks/rs/
rsElement.cpp 38 for (uint32_t ct = 0; ct < mRSC->mStateElement.mElements.size(); ct++) {
39 if (mRSC->mStateElement.mElements[ct] == this) {
40 mRSC->mStateElement.mElements.removeAt(ct);
70 for (size_t ct=0; ct < mFieldCount; ct++) {
71 total += mFields[ct].e->mBits * mFields[ct].arraySize
    [all...]
rsScriptGroup.cpp 31 for (size_t ct=0; ct < mLinks.size(); ct++) {
32 delete mLinks[ct];
48 for (size_t ct=0; ct < mNodes.size(); ct++) {
49 Node *n = mNodes[ct];
65 for (size_t ct=0; ct < n->mOutputs.size(); ct++)
    [all...]

Completed in 862 milliseconds

1 2 3 4 5 6 7 8 91011>>