Branch: Tag:

2003-06-30

2003-06-30 17:11:20 by Martin Stjernholm <mast@lysator.liu.se>

Cleaned up some pointer handling.

Rev: src/apply_low.h:1.19
Rev: src/backend.cmod:1.43
Rev: src/block_alloc.h:1.68
Rev: src/builtin_functions.c:1.497
Rev: src/cyclic.c:1.11
Rev: src/encode.c:1.190
Rev: src/fdlib.c:1.63
Rev: src/fsort_template.h:1.16
Rev: src/gc.c:1.220
Rev: src/interpret.c:1.307
Rev: src/interpret.h:1.142
Rev: src/interpret_functions.h:1.151
Rev: src/las.c:1.336
Rev: src/main.c:1.177
Rev: src/mapping.c:1.168
Rev: src/mapping.h:1.50
Rev: src/modules/Oracle/oracle.c:1.78
Rev: src/modules/_Charset/misc.c:1.14
Rev: src/multiset.c:1.74
Rev: src/object.c:1.238
Rev: src/object.h:1.79
Rev: src/pike_macros.h:1.37
Rev: src/pike_memory.c:1.146
Rev: src/pike_search.c:1.16
Rev: src/pike_search_engine2.c:1.9
Rev: src/pike_threadlib.h:1.47
Rev: src/pike_types.c:1.218
Rev: src/port.c:1.72
Rev: src/port.h:1.51
Rev: src/signal_handler.c:1.274
Rev: src/svalue.c:1.168
Rev: src/threads.c:1.219

2:   || This file is part of Pike. For copyright information see COPYRIGHT.   || Pike is distributed under GPL, LGPL and MPL. See the file COPYING   || for more information. - || $Id: cyclic.c,v 1.10 2003/01/06 17:20:59 grubba Exp $ + || $Id: cyclic.c,v 1.11 2003/06/30 17:06:08 mast Exp $   */      #include "global.h"   #include "cyclic.h"    - RCSID("$Id: cyclic.c,v 1.10 2003/01/06 17:20:59 grubba Exp $"); + RCSID("$Id: cyclic.c,v 1.11 2003/06/30 17:06:08 mast Exp $");      #define CYCLIC_HASH_SIZE 4711   
18:   {    size_t h;    CYCLIC **p; -  h=((char *)c->id)-(char *)0; +  h=PTR_TO_INT(c->id);    h*=33; -  h|=((char *)c->a)-(char *)0; +  h|=PTR_TO_INT(c->a);    h*=33; -  h|=((char *)c->b)-(char *)0; +  h|=PTR_TO_INT(c->b);    h*=33; -  h|=((char *)c->th)-(char *)0; +  h|=PTR_TO_INT(c->th);    h*=33;    h%=CYCLIC_HASH_SIZE;   
58:    void *ret=0;    CYCLIC *p;    -  h=((char *)id)-(char *)0; +  h=PTR_TO_INT(id);    h*=33; -  h|=((char *)a)-(char *)0; +  h|=PTR_TO_INT(a);    h*=33; -  h|=((char *)b)-(char *)0; +  h|=PTR_TO_INT(b);    h*=33; -  h|=((char *)th)-(char *)0; +  h|=PTR_TO_INT(th);    h*=33;    h%=CYCLIC_HASH_SIZE;