Lines Matching refs:ficlUnsigned16
39 ficlUnsigned16
44 ficlUnsigned16 code = (ficlUnsigned16)s.length; in ficlHashCode()
45 ficlUnsigned16 shift = 0; in ficlHashCode()
53 code = (ficlUnsigned16)((code << 4) + tolower(*trace)); in ficlHashCode()
54 shift = (ficlUnsigned16)(code & 0xf000); in ficlHashCode()
56 code ^= (ficlUnsigned16)(shift >> 8); in ficlHashCode()
57 code ^= (ficlUnsigned16)shift; in ficlHashCode()
61 return ((ficlUnsigned16)code); in ficlHashCode()
97 ficlHashLookup(ficlHash *hash, ficlString name, ficlUnsigned16 hashCode) in ficlHashLookup()
101 ficlUnsigned16 hashIdx; in ficlHashLookup()
108 hashIdx = (ficlUnsigned16)(hashCode % hash->size); in ficlHashLookup()