HomeSort by: relevance | last modified time | path
    Searched defs:IDX (Results 1 - 3 of 3) sorted by relevancy

  /src/external/bsd/liblzf/dist/cs/
CLZF.cs 139 UInt32 IDX(UInt32 h)
178 hslot = IDX (hval);
230 htab[IDX (hval)] = iidx;
234 htab[IDX (hval)] = iidx;
  /src/external/bsd/liblzf/dist/
lzf_c.c 56 # define IDX(h) ((( h >> (3*8 - LZF_HLOG)) - h ) & (HSIZE - 1))
58 # define IDX(h) ((( h >> (3*8 - LZF_HLOG)) - h*5) & (HSIZE - 1))
60 # define IDX(h) ((((h ^ (h << 5)) >> (3*8 - LZF_HLOG)) - h*5) & (HSIZE - 1))
64 * IDX works because it is very similar to a multiplicative hash, e.g.
76 # define IDX(h) ((h) & (HSIZE - 1))
146 hslot = htab + IDX (hval);
239 htab[IDX (hval)] = ip;
244 htab[IDX (hval)] = ip;
253 htab[IDX (hval)] = ip;
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
InterleavedLoadCombinePass.cpp 127 // declare @fn(i64 %IDX, <4 x float>* %PTR) {
128 // %Pa1 = add i64 %IDX, 2
133 // %Pb1 = add i64 %IDX, 4
146 // Pa_0 = %IDX #0
147 // Pa_1 = %IDX + 2 #0 | add 2
148 // Pa_2 = %IDX/2 + 1 #1 | lshr 1
149 // Pa_3 = %IDX/2 + 1 #1 | GEP, step signext to i64
150 // Pa_4 = (%IDX/2)*16 + 16 #0 | GEP, multiply index by sizeof(4) for floats
151 // Pa_5 = (%IDX/2)*16 + 16 #0 | GEP, add offset of leading components
153 // Pb_0 = %IDX #
    [all...]

Completed in 15 milliseconds