Home
last modified time | relevance | path

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

/xnu-11215/iokit/Kernel/
H A DIONVRAMV3Handler.cpp855 size_t newVariableSize = 0; in setVariableInternal() local
877 newVariableSize = sizeof(struct v3_var_header) + entryNameLen + dataSize; in setVariableInternal()
881 if (_systemUsed - existingVariableSize + newVariableSize > _systemSize) { in setVariableInternal()
886 } else if (_commonUsed - existingVariableSize + newVariableSize > _commonSize) { in setVariableInternal()
892 …ngVariableSize=%#zx, newVariableSize=%#zx\n", variableName, existingVariableSize, newVariableSize); in setVariableInternal()
918 _systemUsed = _systemUsed + (uint32_t)newVariableSize - (uint32_t)existingVariableSize; in setVariableInternal()
920 _commonUsed = _commonUsed + (uint32_t)newVariableSize - (uint32_t)existingVariableSize; in setVariableInternal()