Lines Matching defs:myData
39 uint8_t *myData = static_cast<uint8_t *>(malloc(sizeof(uint8_t) * size));
40 if (myData == nullptr) {
44 (void)memcpy_s(myData, size, data, size);
46 struct HksBlob key = { SIZE_KEY, myData };
47 struct HksParamSet *paramSet = reinterpret_cast<struct HksParamSet *>(myData + SIZE_KEY);
55 struct HksBlob inData = { size, myData };
56 struct HksParamSet *paramSetUpdate = reinterpret_cast<struct HksParamSet *>(myData + SIZE_KEY + SIZE_PARAMSET_INIT);
59 struct HksParamSet *paramSetFinish = reinterpret_cast<struct HksParamSet *>(myData + SIZE_KEY + SIZE_PARAMSET_INIT +
65 free(myData);
79 free(myData);