Searched refs:keySize (Results 1 - 4 of 4) sorted by relevance

/darwin-on-arm/xnu/bsd/hfs/hfscommon/BTree/
H A DBTreeNodeOps.c96 <7> 5/10/93 gs Change keySize parameter to keyLength for InsertKeyRecord
574 u_int16_t keySize; local
581 keySize = keyLength + sizeof(u_int16_t);
583 keySize = keyLength + sizeof(u_int8_t);
585 if ( M_IsOdd (keySize) )
586 ++keySize; // add pad byte
593 if ( freeSpace < keySize + recSize + 2)
605 dst = ((u_int8_t *) src) + keySize + recSize;
613 InsertOffset (btreePtr, node, index, keySize + recSize);
637 bytesToMove = keySize
785 u_int16_t keySize; local
[all...]
H A DBTreeMiscOps.c123 Function: Rounds keySize and recSize so they will end on word boundaries.
126 Input: keySize - length of key (including length field)
134 u_int16_t CalcKeyRecordSize (u_int16_t keySize, argument
137 if ( M_IsOdd (keySize) ) keySize += 1; // pad byte
141 return (keySize + recSize);
587 u_int16_t keySize; local
602 keySize = CalcKeySize(btreePtr, &iterator->key); // includes length field
604 spaceNeeded = CalcKeyRecordSize (keySize, recordLen);
614 if ( M_IsOdd (keySize) )
[all...]
/darwin-on-arm/xnu/bsd/hfs/hfscommon/headers/
H A DBTreesPrivate.h330 u_int16_t CalcKeyRecordSize (u_int16_t keySize,
/darwin-on-arm/xnu/libkern/c++/
H A DOSKext.cpp4043 uint32_t keySize; local
4047 keySize = 1 + 1 + strlen(key) + strlen(ARCHNAME);
4048 result = (char *)kalloc(keySize);
4052 strlcpy(result, key, keySize);
4055 strlcat(result, ARCHNAME, keySize);
4056 *keySizeOut = keySize;

Completed in 48 milliseconds