Lines Matching refs:reserveInts
21 GraphicExtDataHandle *AllocExtDataHandle(uint32_t reserveInts)
23 if (static_cast<size_t>(reserveInts) > (SIZE_MAX - sizeof(GraphicExtDataHandle)) / sizeof(int32_t)) {
24 BLOGE("reserveInts: %{public}u is too large", reserveInts);
27 size_t handleSize = sizeof(GraphicExtDataHandle) + (sizeof(int32_t) * reserveInts);
40 handle->reserveInts = reserveInts;
41 for (uint32_t i = 0; i < reserveInts; i++) {
80 tunnelHandle_ = AllocExtDataHandle(handle->reserveInts);
86 for (uint32_t index = 0; index < handle->reserveInts; index++) {
109 tunnelHandle_->reserveInts != handle->GetHandle()->reserveInts;
113 for (uint32_t index = 0; index < handle->GetHandle()->reserveInts; index++) {