This file is indexed.

/usr/include/flext/flstk.cpp is in pd-flext-dev 0.6.0+git20161101.1.01318a94-2.

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
103
104
105
106
107
108
109
110
111
112
113
114
115
/*
flext - C++ layer for Max and Pure Data externals

Copyright (c) 2001-2015 Thomas Grill (gr@grrrr.org)
For information on usage and redistribution, and for a DISCLAIMER OF ALL
WARRANTIES, see the file, "license.txt," in this distribution.
*/

#ifndef __FLEXT_STK_CPP
#define __FLEXT_STK_CPP

#include "flext.h"
#include "flstk.h"

#include "flpushns.h"

flext_stk::flext_stk():
    inobjs(0),outobjs(0),
    inobj(NULL),outobj(NULL),
    smprt(0),blsz(0)
{}

bool flext_stk::Init()
{
    bool ret = flext_dsp::Init();
    inobjs = CntInSig();
    outobjs = CntOutSig();
    return ret;
}

void flext_stk::Exit()
{
    ClearObjs();
    flext_dsp::Exit();
}

void flext_stk::ClearObjs()
{
    FreeObjs();

    if(inobj) {
        for(int i = 0; i < inobjs; ++i) delete inobj[i]; 
        delete[] inobj; inobj = NULL;
    }
    if(outobj) {
        for(int i = 0; i < outobjs; ++i) delete outobj[i];
        delete[] outobj; outobj = NULL;
    }
}

bool flext_stk::CbDsp()
{
    // called on every rebuild of the dsp chain

    int i;
    
    if(Blocksize() != blsz || Samplerate() != smprt) {
        // block size or sample rate has changed... rebuild all objects

        ClearObjs();

        smprt = Samplerate();
        blsz = Blocksize();
        Stk::setSampleRate(smprt); 

        // set up sndobjs for inlets and outlets
        if(inobjs) {
            inobj = new Input *[inobjs];
            for(i = 0; i < inobjs; ++i)
                inobj[i] = new Input(InSig(i),blsz);
        }
        if(outobjs) {
            outobj = new Output *[outobjs];
            for(i = 0; i < outobjs; ++i) 
                outobj[i] = new Output(OutSig(i),blsz);
        }

        if(!NewObjs()) ClearObjs();
    }
    else {
        // assign changed input/output vectors

        for(i = 0; i < inobjs; ++i) inobj[i]->SetBuf(InSig(i));
        for(i = 0; i < outobjs; ++i) outobj[i]->SetBuf(OutSig(i));
    }
    return true;
}

void flext_stk::CbSignal()
{
    if(inobjs || outobjs) ProcessObjs(blsz);
}


// inlet class

StkFloat *flext_stk::Input::tick(StkFloat *vector,unsigned int vectorSize)
{
    FLEXT_ASSERT(vectorSize == vecsz);
    for(unsigned int i = 0; i < vectorSize; i++) vector[i] = tick();
    return vector;
}


// outlet class

void flext_stk::Output::tick(const StkFloat *vector,unsigned int vectorSize)
{
    FLEXT_ASSERT(vectorSize == vecsz);
    for(unsigned int i = 0; i < vectorSize; i++) tick(vector[i]);
}

#include "flpopns.h"

#endif // __FLEXT_STK_CPP