Home
last modified time | relevance | path

Searched refs:rpt (Results 1 - 7 of 7) sorted by relevance

/third_party/ffmpeg/libavutil/tests/
H A Dtwofish.c42 uint8_t temp[32], iv[16], rpt[32] = {0}; in main() local
51 av_twofish_crypt(cs, temp, rpt, 1, NULL, 0); in main()
60 if (rpt[i] != temp[i]) { in main()
61 av_log(NULL, AV_LOG_ERROR, "%d %02x %02x\n", i, rpt[i], temp[i]); in main()
68 memset(rpt, 0, sizeof(rpt)); in main()
71 av_twofish_crypt(cs, temp, rpt, 1, NULL, 0); in main()
73 memcpy(Key,rpt,16); in main()
74 memcpy(rpt,temp,16); in main()
78 // from rpt bu in main()
[all...]
H A Dcamellia.c41 const uint8_t rpt[32] = {0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef, 0xfe, 0xdc, 0xba, 0x98, 0x76, 0x54, 0x32, 0x10, 0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef, 0xfe, 0xdc, 0xba, 0x98, 0x76, 0x54, 0x32, 0x10}; in main() local
51 av_camellia_crypt(cs, temp, rpt, 1, NULL, 0); in main()
60 if (rpt[i] != temp[i]) { in main()
61 av_log(NULL, AV_LOG_ERROR, "%d %02x %02x\n", i, rpt[i], temp[i]); in main()
68 av_camellia_crypt(cs, temp, rpt, 2, iv, 0); in main()
72 if (rpt[i] != temp[i]) { in main()
73 av_log(NULL, AV_LOG_ERROR, "%d %02x %02x\n", i, rpt[i], temp[i]); in main()
H A Dcast5.c37 static const uint8_t rpt[8] = {0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef}; in main() local
59 av_cast5_crypt(cs, temp, rpt, 1, 0); in main()
69 if (rpt[i] != temp[i]) { in main()
70 av_log(NULL, AV_LOG_ERROR, "%d %02x %02x\n", i, rpt[i], temp[i]); in main()
H A Daes.c39 static const uint8_t rpt[2][16] = { in main() local
65 if (rpt[i][j] != temp[j]) { in main()
67 j, rpt[i][j], temp[j]); in main()
/third_party/libcoap/src/oscore/
H A Doscore_context.c196 oscore_recipient_ctx_t *rpt = pt->recipient_chain; in oscore_find_context() local
198 while (rpt) { in oscore_find_context()
200 if (rcpkey_id.length == rpt->recipient_id->length) { in oscore_find_context()
202 ok = memcmp(rpt->recipient_id->s, rcpkey_id.s, rcpkey_id.length) != 0; in oscore_find_context()
222 *recipient_ctx = rpt; in oscore_find_context()
226 rpt = rpt->next_recipient; in oscore_find_context()
227 } /* while rpt */ in oscore_find_context()
/third_party/python/Lib/
H A Dprofile.py250 rpt, rit, ret, rfn, rframe, rcur = self.cur
253 self.cur = rpt, rit+t, ret, rfn, rframe, rcur
259 rpt, rit, ret, rfn, rframe, rcur = self.cur
298 rpt, rit, ret, rfn, frame, rcur = self.cur
303 self.cur = ppt, pit + rpt, pet + frame_total, pfn, pframe, pcur
/third_party/astc-encoder/Source/
H A Dastcenc_compress_symbolic.cpp1330 float rpt = 1.0f / astc::max(weight_sum, 1e-7f); in prepare_block_statistics() local
1332 rr_var -= rs * (rs * rpt); in prepare_block_statistics()
1333 rg_cov -= gs * (rs * rpt); in prepare_block_statistics()
1334 rb_cov -= bs * (rs * rpt); in prepare_block_statistics()
1335 ra_cov -= as * (rs * rpt); in prepare_block_statistics()
1337 gg_var -= gs * (gs * rpt); in prepare_block_statistics()
1338 gb_cov -= bs * (gs * rpt); in prepare_block_statistics()
1339 ga_cov -= as * (gs * rpt); in prepare_block_statistics()
1341 bb_var -= bs * (bs * rpt); in prepare_block_statistics()
1342 ba_cov -= as * (bs * rpt); in prepare_block_statistics()
[all...]

Completed in 5 milliseconds