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

/xsrc/external/mit/xedit/dist/lisp/
H A Dhash.c47 static unsigned long LispHashKey(LispObj*, int);
71 LispHashKey(LispObj *object, int function) function in typeref:typename:unsigned long
117 key = (LispHashKey(object->data.complex.imag, function) << 16) ^
118 LispHashKey(object->data.complex.real, function);
160 key = (LispHashKey(CAR(object), function) << 16) ^
161 LispHashKey(CDR(object), function);
166 key = LispHashKey(object->data.pathname, function);
169 key = LispHashKey(object->data.regex.pattern, function);
205 key = LispHashKey(okey, hash->function) % hash->num_entries;
320 key = LispHashKey(entr
[all...]

Completed in 3 milliseconds