Searched defs:dim (Results 1 - 25 of 76) sorted by relevance

1234

/external/srec/srec/clib/
H A Dimeld_tr.c47 int dim = prep->dim; local
50 ASSERT(prep->dim < MAX_DIMEN);
52 for (ii = 0; ii < dim; ii++)
55 for (jj = 0; jj < prep->dim; jj++)
65 for (ii = 0; ii < dim; ii++)
68 for (ii = 0; ii < dim; ii++)
73 for (ii = 0; ii < dim; ii++)
88 ASSERT (prep->dim < MAX_DIMEN);
92 for (ii= 0; ii < prep->dim; i
[all...]
H A Dmatx_ops.c62 void diagonal_elements(covdata *vector, covdata **matrix, int dim) argument
68 for (ii = 0; ii < dim; ii++)
H A Dmatrix_i.c41 void lubksb(double **mat, int dim, int *index, double *b);
42 int ludcmp(double **mat, int dim, int *index);
44 int invert_matrix(covdata **mat, covdata **inv, int dim) argument
55 index = (int *) CALLOC(dim, sizeof(int), "clib.index_imatrix");
56 col = (double *) CALLOC(dim, sizeof(double), "clib.col");
57 input = (double **) CALLOC(dim, sizeof(double *), "clib.input_imatrix");
58 for (ii = 0; ii < dim; ii++)
60 input[ii] = (double *) CALLOC(dim, sizeof(double), "clib.input_imatrix[]");
61 for (jj = 0; jj < dim; jj++)
65 if ((err_code = ludcmp(input, dim, inde
99 ludcmp(double **mat, int dim, int *index) argument
176 lubksb(double **mat, int dim, int *index, double *b) argument
[all...]
H A Djacobi.c38 static void Rotate(double **a, int dim, int i, int j, int k, int l, double s,
41 static double SumOffDiag(double **mat, int dim);
46 void Jacobi(double **matrix, int dim, double *egval, double **egvec) argument
49 // <mat> of size <dim>x<dim>. Fills in <egval> with the eigenvalues
64 b = (double *) CALLOC(dim, sizeof(double), "clib.jacobi.b");
65 d = (double *) CALLOC(dim, sizeof(double), "clib.jacobi.d");
66 z = (double *) CALLOC(dim, sizeof(double), "clib.jacobi.z");
67 a = (double **) CALLOC(dim, sizeof(double *), "clib.jacobi.input_jacobi");
68 v = (double **) CALLOC(dim, sizeo
193 Rotate(double **a, int dim, int i, int j, int k, int l, double s, double tau) argument
204 SumOffDiag(double **mat, int dim) argument
[all...]
/external/srec/srec/include/
H A Dchannorm.h37 int dim; member in struct:__anon11055
/external/javassist/src/main/javassist/compiler/ast/
H A DInstanceOfExpr.java24 public InstanceOfExpr(ASTList className, int dim, ASTree expr) { argument
25 super(className, dim, expr);
28 public InstanceOfExpr(int type, int dim, ASTree expr) { argument
29 super(type, dim, expr);
H A DCastExpr.java28 public CastExpr(ASTList className, int dim, ASTree expr) { argument
31 arrayDim = dim;
34 public CastExpr(int type, int dim, ASTree expr) { argument
37 arrayDim = dim;
H A DDeclarator.java30 public Declarator(int type, int dim) { argument
33 arrayDim = dim;
38 public Declarator(ASTList className, int dim) { argument
41 arrayDim = dim;
48 public Declarator(int type, String jvmClassName, int dim, argument
52 arrayDim = dim;
59 public Declarator make(Symbol sym, int dim, ASTree init) { argument
60 Declarator d = new Declarator(this.varType, this.arrayDim + dim);
/external/srec/srec/cfront/
H A Dca_front.c185 int dim; local
193 /* TODO: Determine the dim exactly */
194 dim = 2 * hFrontend->config->cepobj->mel_dim;
196 dim += hFrontend->config->cepobj->mel_dim;
197 return (dim);
H A Dca_cms.c108 hWave->data.channel->channorm->dim = MAX_CHAN_DIM;
135 int dim = hWave->data.channel->mel_dim * 3; local
137 int dim = hWave->data.channel->mel_dim;
146 clear_channel_normalization(hWave->data.channel->spchchan, dim);
/external/tremolo/Tremolo/
H A Dcodebook.h53 long dim; /* codebook dimensions (elements per vector) */ member in struct:codebook
/external/qemu/distrib/sdl-1.2.12/src/video/photon/
H A DSDL_ph_gl.c197 PhDim_t dim; local
202 dim.w=width;
203 dim.h=height;
207 PdOpenGLContextResize(oglctx, &dim);
245 oglctx=PdCreateOpenGLContext(2, &dim, 0, OGLAttrib);
249 oglctx=PdCreateOpenGLContext(1, &dim, 0, OGLAttrib);
/external/bluetooth/glib/tests/
H A Ddate-test.c180 guint8 dim = g_date_get_days_in_month(m,y); local
183 TEST("Sensible number of days in month", (dim > 0 && dim < 32));
191 while (day <= dim)
H A Dtestgdate.c187 guint8 dim = g_date_get_days_in_month(m,y); local
190 TEST("Sensible number of days in month", (dim > 0 && dim < 32));
198 while (day <= dim)
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
H A DLineGraph.java61 public LineGraph(String title, Dim dim) { argument
64 this.fDimension= dim;
H A DTimeLineGraph.java26 public TimeLineGraph (String title, Dim dim) { argument
27 super(title, dim);
H A DScenarioData.java90 private TimeLineGraph getLineGraph(ScenarioResults scenarioResults, ConfigResults configResults, Dim dim, List highlightedPoints, List currentBuildIdPrefixes) { argument
98 TimeLineGraph graph = new TimeLineGraph(scenarioName + ": " + dim.getName(), dim);
114 double value = buildResults.getValue(dim.getId());
121 graph.addItem("main", label, dim.getDisplayValue(value), value, color, true, Utils.getDateFromBuildID(buildID), true);
125 graph.addItem("main", label, dim.getDisplayValue(value), value, black, false, Utils.getDateFromBuildID(buildID, false), true);
130 graph.addItem("main", buildID, dim.getDisplayValue(value), value, yellow, false, Utils.getDateFromBuildID(buildID), false);
136 graph.addItem("main", buildID, dim.getDisplayValue(value), value, black, false, Utils.getDateFromBuildID(buildID), false);
142 graph.addItem("reference", label, dim.getDisplayValue(value), value, magenta, true, Utils.getDateFromBuildID(buildID, true), true, drawBaseline);
147 graph.addItem("reference", label, dim
[all...]
/external/javassist/src/main/javassist/compiler/
H A DJvstTypeChecker.java261 private void setType(CtClass type, int dim) throws CompileError { argument
265 arrayDim = dim;
270 setType(type.getComponentType(), dim + 1);
277 arrayDim = dim;
/external/javassist/src/main/javassist/expr/
H A DNewArray.java88 int dim = Descriptor.arrayDimension(desc);
89 desc = Descriptor.toArrayComponent(desc, dim);
179 int dim = 1;
200 dim = iterator.byteAt(currentPos + 3);
211 CtClass[] params = new CtClass[dim];
212 for (int i = 0; i < dim; ++i)
223 jc.recordProceed(new ProceedForArray(retType, opcode, index, dim));
238 /* <array type> $proceed(<dim> ..)
245 ProceedForArray(CtClass type, int op, int i, int dim) { argument
249 dimension = dim;
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
H A DSurface.java181 * @param dim an integer specifying if the U or V knots are required
184 public List<Float> getKnots(int dim) { argument
185 return knots[dim];
/external/skia/bench/
H A DShaderMaskBench.cpp62 const SkIPoint dim = this->getSize(); local
77 SkScalar x = x0 + rand.nextUScalar1() * dim.fX;
78 SkScalar y = y0 + rand.nextUScalar1() * dim.fY;
84 SkScalar x = x0 + rand.nextUScalar1() * dim.fX;
85 SkScalar y = y0 + rand.nextUScalar1() * dim.fY;
/external/skia/src/core/
H A DSkLineClipper.cpp56 static inline bool nestedLT(SkScalar a, SkScalar b, SkScalar dim) { argument
57 return a <= b && (a < b || dim > 0);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/model/
H A DDimResultsElement.java23 Dim dim; field in class:DimResultsElement
26 static final String P_ID_DIMENSION = "DimResultsElement.dim"; //$NON-NLS-1$
79 this.dim = d;
91 return this.dim.getName();
118 return this.dim.getDescription();
121 long count = buildResults.getCount(this.dim.getId());
125 return new Double(buildResults.getValue(this.dim.getId()));
127 return new Double(buildResults.getDeviation(this.dim.getId()));
129 return new Double(buildResults.getError(this.dim.getId()));
/external/freetype/src/autofit/
H A Dafwarp.c164 AF_Dimension dim,
183 if ( dim == AF_DIMENSION_VERT )
199 axis = &hints->axis[dim];
162 af_warper_compute( AF_Warper warper, AF_GlyphHints hints, AF_Dimension dim, FT_Fixed *a_scale, FT_Pos *a_delta ) argument
/external/freetype/src/pshinter/
H A Dpshglob.c44 PSH_Dimension dim = &globals->dimension[direction]; local
45 PSH_Widths stdw = &dim->stdw;
49 FT_Fixed scale = dim->scale_mult;
319 FT_Int dim, top, bot, delta; local
326 for ( dim = 1; dim >= 0; dim-- )
641 PSH_Dimension dim = &globals->dimension[1]; local
642 PSH_Width write = dim->stdw.widths;
656 dim
661 PSH_Dimension dim = &globals->dimension[0]; local
713 PSH_Dimension dim = &globals->dimension[0]; local
[all...]

Completed in 279 milliseconds

1234