This file is indexed.

/usr/include/crystalspace-2.0/csqsqrt.h is in libcrystalspace-dev 2.0+dfsg-1build1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
/*
    Fast computation of sqrt(x) and 1/sqrt(x)
    Copyright (C) 2002 by Matthew Reda <reda@mac.com> (PowerPC version)
  
    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Library General Public
    License as published by the Free Software Foundation; either
    version 2 of the License, or (at your option) any later version.
  
    This library is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    Library General Public License for more details.
  
    You should have received a copy of the GNU Library General Public
    License along with this library; if not, write to the Free
    Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/

/**\file
 * Fast computation of sqrt(x) and 1/sqrt(x).<p> Define CS_NO_QSQRT if you
 * experience mysterious problems with CS which you think are related to the
 * specially optimized csQsqrt() not behaving properly.
 */

#ifndef __CS_CSQSQRT_H__
#define __CS_CSQSQRT_H__

#include "cssysdef.h"
#include <math.h>

/**
 * \addtogroup floating_point
 * @{ */

/**
 * This routine computes sqrt(x) very quickly on Intel and PowerPC platforms.
 */
static CS_FORCEINLINE float csQsqrt (float x);

/**
 * This routine is basically equivalent to csQsqrt() except that it returns
 * 1/sqrt(x) rather than the proper square root. It should be used anywhere
 * you need the inverse root (in 3D graphics it is a common situation),
 * because the routine is a little faster than csQsqrt() and also you avoid
 * a division.
 */
static CS_FORCEINLINE float csQisqrt (float x);

/** @} */

#if !defined(CS_NO_QSQRT) && \
    defined(CS_PROCESSOR_POWERPC) && defined(CS_COMPILER_GCC)

/*
 * Use the PowerPC fsqrte to get an estimate of 1/sqrt(x) Then apply two
 * Newton-Rhaphson refinement steps to get a more accurate response Finally
 * multiply by x to get x/sqrt(x) = sqrt(x).  Add additional refinement steps
 * to get a more accurate result.  Zero is treated as a special case, otherwise
 * we end up returning NaN (Not a Number).
 */
static CS_FORCEINLINE float csQsqrt(float x)
{
  float y0 = 0.0;

  if (x != 0.0)
  {
    float x0 = x * 0.5f;

    __asm__ __volatile__ ("frsqrte %0,%1" : "=f" (y0) : "f" (x));
    
    y0 = y0 * (1.5f - x0 * y0 * y0);
    y0 = (y0 * (1.5f - x0 * y0 * y0)) * x;
  }
    
  return y0;
}

/*
 * Similar to csQsqrt() above, except we do not multiply by x at the end, and
 * return 1/sqrt(x).
 */
static inline float csQisqrt(float x)
{
  float x0 = x * 0.5f;
  float y0;
  __asm__ __volatile__ ("frsqrte %0,%1" : "=f" (y0) : "f" (x));
    
  y0 = y0 * (1.5f - x0 * y0 * y0);
  y0 = y0 * (1.5f - x0 * y0 * y0);

  return y0;
}

#else

static CS_FORCEINLINE float csQsqrt (float x) { return sqrtf(x); }
static CS_FORCEINLINE float csQisqrt(float x) { return 1.0f / sqrtf(x); }

#endif

#endif // __CS_CSQSQRT_H__