Home | History | Annotate | Download | only in common

Lines Matching refs:keyOffset

41 /* get a const char* pointer to the key with the keyOffset byte offset from pRoot */
42 #define RES_GET_KEY16(pResData, keyOffset) \
43 ((keyOffset)<(pResData)->localKeyLimit ? \
44 (const char *)(pResData)->pRoot+(keyOffset) : \
45 (pResData)->poolBundleKeys+(keyOffset)-(pResData)->localKeyLimit)
47 #define RES_GET_KEY32(pResData, keyOffset) \
48 ((keyOffset)>=0 ? \
49 (const char *)(pResData)->pRoot+(keyOffset) : \
50 (pResData)->poolBundleKeys+((keyOffset)&0x7fffffff))
1141 int32_t keyOffset=ds->readUInt16(pKey16[i]);
1142 if(keyOffset<pTempTable->localKeyLimit) {
1143 itemKey=(const char *)outBundle+keyOffset;
1146 int32_t keyOffset=udata_readInt32(ds, pKey32[i]);
1147 if(keyOffset>=0) {
1148 itemKey=(const char *)outBundle+keyOffset;