Home
last modified time | relevance | path

Searched refs:rpt (Results 1 – 17 of 17) sorted by relevance

/third_party/ffmpeg/libavutil/tests/
Dtwofish.c40 uint8_t temp[32], iv[16], rpt[32] = {0}; in main() local
49 av_twofish_crypt(cs, temp, rpt, 1, NULL, 0); in main()
58 if (rpt[i] != temp[i]) { in main()
59 av_log(NULL, AV_LOG_ERROR, "%d %02x %02x\n", i, rpt[i], temp[i]); in main()
66 memset(rpt, 0, sizeof(rpt)); in main()
69 av_twofish_crypt(cs, temp, rpt, 1, NULL, 0); in main()
71 memcpy(Key,rpt,16); in main()
72 memcpy(rpt,temp,16); in main()
81 memset(rpt, 0, sizeof(rpt)); in main()
83 av_twofish_crypt(cs, temp, rpt, 2, iv, 0); in main()
[all …]
Dcamellia.c37 …const uint8_t rpt[32] = {0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef, 0xfe, 0xdc, 0xba, 0x98, 0… in main() local
47 av_camellia_crypt(cs, temp, rpt, 1, NULL, 0); in main()
56 if (rpt[i] != temp[i]) { in main()
57 av_log(NULL, AV_LOG_ERROR, "%d %02x %02x\n", i, rpt[i], temp[i]); in main()
64 av_camellia_crypt(cs, temp, rpt, 2, iv, 0); in main()
68 if (rpt[i] != temp[i]) { in main()
69 av_log(NULL, AV_LOG_ERROR, "%d %02x %02x\n", i, rpt[i], temp[i]); in main()
Dcast5.c33 static const uint8_t rpt[8] = {0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef}; in main() local
55 av_cast5_crypt(cs, temp, rpt, 1, 0); in main()
65 if (rpt[i] != temp[i]) { in main()
66 av_log(NULL, AV_LOG_ERROR, "%d %02x %02x\n", i, rpt[i], temp[i]); in main()
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/flutter/skia/gm/
Dgamma.cpp39 SkTileMode rpt = SkTileMode::kRepeat; variable
125 p.setShader(ditherBmp.makeShader(rpt, rpt));
134 p.setShader(ditherBmp.makeShader(rpt, rpt, &offsetMatrix));
140 p.setShader(ditherBmp.makeShader(rpt, rpt, &scaleMatrix));
146 p.setShader(mipmapBmp.makeShader(rpt, rpt, &scaleMatrix));
209 p.setShader(linearGreyBmp.makeShader(rpt, rpt));
214 p.setShader(srgbGreyBmp.makeShader(rpt, rpt));
/third_party/boost/libs/filesystem/test/issues/
Dreparse_tag_file_placeholder.cpp138 boost::filesystem::path rpt = boost::filesystem::temp_directory_path() / "reparse_point_test.txt"; in main() local
140 BOOST_TEST(create_io_reparse_file_placeholder(rpt.native().c_str())); in main()
141 BOOST_TEST(boost::filesystem::status(rpt).type() == boost::filesystem::reparse_file); in main()
142 BOOST_TEST(boost::filesystem::remove(rpt)); in main()
/third_party/node/deps/npm/node_modules/read-package-tree/
Drpt.js146 const rpt = (root, filterWith, cb) => { function
167 rpt.Node = Node
168 rpt.Link = Link
169 module.exports = rpt
DREADME.md10 var rpt = require ('read-package-tree')
11 rpt('/path/to/pkg/root', function (node, kidName) {
34 rpt('/path/to/pkg/root').then(data => { ... })
/third_party/python/Lib/
Dprofile.py249 rpt, rit, ret, rfn, rframe, rcur = self.cur
252 self.cur = rpt, rit+t, ret, rfn, rframe, rcur
258 rpt, rit, ret, rfn, rframe, rcur = self.cur
297 rpt, rit, ret, rfn, frame, rcur = self.cur
302 self.cur = ppt, pit + rpt, pet + frame_total, pfn, pframe, pcur
/third_party/gstreamer/gstreamer/libs/gst/check/
Dgstharness.c2949 gst_harness_requestpad_release_pads (GstHarnessReqPadThread * rpt) in gst_harness_requestpad_release_pads() argument
2951 g_slist_foreach (rpt->pads, (GFunc) gst_harness_requestpad_release, in gst_harness_requestpad_release_pads()
2952 rpt->t.h->element); in gst_harness_requestpad_release_pads()
2953 g_slist_free (rpt->pads); in gst_harness_requestpad_release_pads()
2954 rpt->pads = NULL; in gst_harness_requestpad_release_pads()
3144 GstHarnessReqPadThread *rpt = (GstHarnessReqPadThread *) t; in gst_harness_stress_requestpad_func() local
3150 if (rpt->release) in gst_harness_stress_requestpad_func()
3151 gst_harness_requestpad_release_pads (rpt); in gst_harness_stress_requestpad_func()
3156 rpt->templ, rpt->name, rpt->caps); in gst_harness_stress_requestpad_func()
3160 rpt->pads = g_slist_prepend (rpt->pads, reqpad); in gst_harness_stress_requestpad_func()
/third_party/boost/boost/polygon/
Dpolygon_set_data.hpp450 point_data<long double> rpt; in modify_pt() local
455 if(!pack::compute_lazy_intersection(rpt, he1, he2, true, false)) { in modify_pt()
456 rpt = he1.second; //colinear offset edges use shared point in modify_pt()
459 …if(!pack::compute_lazy_intersection(rpt, he1, std::pair<point_data<long double>, point_data<long d… in modify_pt()
460 rpt = he1.second; //colinear offset edges use shared point in modify_pt()
463 pt.x((coordinate_type)(std::floor(rpt.x()+0.5))); in modify_pt()
464 pt.y((coordinate_type)(std::floor(rpt.y()+0.5))); in modify_pt()
/third_party/skia/third_party/externals/icu/source/data/misc/
DsupplementalData.txt6668 "rpt",
/third_party/icu/icu4c/source/data/misc/
DsupplementalData.txt6668 "rpt",
/third_party/flutter/skia/third_party/externals/icu/source/data/misc/
DsupplementalData.txt6422 "rpt",
/third_party/openh264/res/
DCisco_Absolute_Power_1280x720_30fps.yuv3873 …10.01110/-.132363573255:74756644210/111222220/0/-+.0@a���˚xusjglok]VW\`ajy{rpt{�����������~}~z{|{|…
/third_party/skia/experimental/wasm-skp-debugger/debugger/
Danim.mskp12881 …f'2�>pN�Z_Y�Xk�/D���k/�W"R�� ��|�m��@@��!��`f��`f5u�4���7C!�\Q���>~rpt�������5�j׫�#���<�
/third_party/chromium/patch/
D0001-cve.patch69425 z%tGf6`|}u@WG?eCQ9#hJ<kg)+z`-)n*32|?rpt@d>oaTZkzzjRw@ryt&^#hQIcOc<