Searched refs:dim (Results 1 - 25 of 90) sorted by relevance

1234

/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/clib/
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...]
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 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 Dimeld_rd.c49 int invert_matrix(covdata **mat, covdata **inv, int dim);
57 prep->dim = matdim;
72 delete_fixed_matrix(prep->matrix, prep->dim);
78 delete_matrix(prep->imelda, prep->dim);
82 delete_fixed_matrix(prep->invmat, prep->dim);
83 delete_matrix(prep->inverse, prep->dim);
119 if (!prep->dim) prep->dim = matdim;
120 else if (prep->dim != matdim)
123 prep->dim, matdi
[all...]
/external/srec/srec/ca/
H A Dcatrans.c74 hTransform->dim = dimen;
76 hTransform->imelda_acc.between = create_accumulate_matrix(hTransform->dim);
77 hTransform->imelda_acc.bmean = (accdata *) VAR_ALLOCATE(hTransform->dim,
80 hTransform->imelda_acc.wmean = (accdata *) VAR_ALLOCATE(hTransform->dim,
82 hTransform->mllr_acc.between = create_accumulate_matrix(hTransform->dim + 1);
83 hTransform->mllr_acc.within = create_accumulate_matrix(hTransform->dim + 1);
117 delete_accumulate_matrix(hTransform->imelda_acc.between, hTransform->dim);
118 delete_accumulate_matrix(hTransform->imelda_acc.within, hTransform->dim);
119 delete_accumulate_matrix(hTransform->mllr_acc.between, hTransform->dim + 1);
120 delete_accumulate_matrix(hTransform->mllr_acc.within, hTransform->dim
[all...]
/external/clang/test/SemaTemplate/
H A Dinstantiate-field.cpp95 template <int dim>
99 unsigned char value : (dim > 0 ? dim : 1);
102 template <int dim>
103 inline B<dim>::B(const unsigned char i) : value(i) {}
/external/opencv/cv/src/
H A D_cvkdtree.hpp69 int dim; // split dimension; >=0 for nodes, -1 for leaves member in struct:CvKDTree::node
72 scalar_type boundary; // left if deref(value,dim)<=boundary, otherwise right
76 __deref deref; // requires operator() (__valuetype lhs,int dim)
118 int dim, __valuector ctor) {
121 median_partition(first, last, k, dim, ctor);
128 int dim; member in struct:CvKDTree::median_pr
132 : pivot(_pivot), dim(_dim), deref(_deref), ctor(_ctor) {
135 return deref(ctor(lhs), dim) <= deref(ctor(pivot), dim);
141 __instype * k, int dim, __valuecto
117 median_partition(__instype * first, __instype * last, int dim, __valuector ctor) argument
140 median_partition(__instype * first, __instype * last, __instype * k, int dim, __valuector ctor) argument
163 int dim = dimension_of_highest_variance(first, last, ctor); local
[all...]
/external/srec/srec/crec/
H A Dget_fram.c60 utt->gen_utt.dim = dimen;
90 clear_ambient_estimation(utt->gen_utt.backchan, utt->gen_utt.dim);
107 prep->dim = dimen;
108 prep->seq = (imeldata *) CALLOC(prep->dim, sizeof(imeldata),
110 prep->seq_unnorm = (imeldata *) CALLOC(prep->dim, sizeof(imeldata),
112 prep->last_frame = (featdata *) CALLOC(prep->dim, sizeof(featdata),
160 prep->dim = 0;
178 if (utt->gen_utt.dim != prep->dim)
204 memcpy(prep->seq_unnorm, prep->seq, prep->dim * sizeo
[all...]
/external/freetype/src/autofit/
H A Daflatin.h182 AF_Dimension dim );
190 AF_Dimension dim );
198 AF_Dimension dim );
202 AF_Dimension dim );
H A Dafcjk.c85 int dim; local
117 for ( dim = 0; dim < AF_DIMENSION_MAX; dim++ )
119 AF_CJKAxis axis = &metrics->axis[dim];
120 AF_AxisHints axhints = &hints->axis[dim];
125 error = af_latin_hints_compute_segments( hints, (AF_Dimension)dim );
129 af_latin_hints_link_segments( hints, (AF_Dimension)dim );
158 for ( dim = 0; dim < AF_DIMENSION_MA
1377 af_cjk_compute_stem_width( AF_GlyphHints hints, AF_Dimension dim, FT_Pos width, AF_Edge_Flags base_flags, AF_Edge_Flags stem_flags ) argument
1498 af_cjk_align_linked_edge( AF_GlyphHints hints, AF_Dimension dim, AF_Edge base_edge, AF_Edge stem_edge ) argument
2108 int dim; local
[all...]
H A Daflatin.c71 int dim; local
103 for ( dim = 0; dim < AF_DIMENSION_MAX; dim++ )
105 AF_LatinAxis axis = &metrics->axis[dim];
106 AF_AxisHints axhints = &hints->axis[dim];
112 (AF_Dimension)dim );
117 (AF_Dimension)dim );
146 for ( dim = 0; dim < AF_DIMENSION_MA
1586 af_latin_compute_stem_width( AF_GlyphHints hints, AF_Dimension dim, FT_Pos width, AF_Edge_Flags base_flags, AF_Edge_Flags stem_flags ) argument
1750 af_latin_align_linked_edge( AF_GlyphHints hints, AF_Dimension dim, AF_Edge base_edge, AF_Edge stem_edge ) argument
2235 int dim; local
[all...]
H A Daflatin2.c43 AF_Dimension dim );
47 AF_Dimension dim );
74 int dim; local
102 for ( dim = 0; dim < AF_DIMENSION_MAX; dim++ )
104 AF_LatinAxis axis = &metrics->axis[dim];
105 AF_AxisHints axhints = &hints->axis[dim];
111 (AF_Dimension)dim );
116 (AF_Dimension)dim );
1594 af_latin2_compute_stem_width( AF_GlyphHints hints, AF_Dimension dim, FT_Pos width, AF_Edge_Flags base_flags, AF_Edge_Flags stem_flags ) argument
1762 af_latin2_align_linked_edge( AF_GlyphHints hints, AF_Dimension dim, AF_Edge base_edge, AF_Edge stem_edge ) argument
2279 int dim; local
[all...]
H A Dafwarp.h53 AF_Dimension dim,
H A Dafhints.c290 AF_Dimension dim; local
294 dim = ( dimension == 0 ) ? AF_DIMENSION_HORZ : AF_DIMENSION_VERT;
296 axis = &hints->axis[dim];
317 AF_Dimension dim; local
325 dim = ( dimension == 0 ) ? AF_DIMENSION_HORZ : AF_DIMENSION_VERT;
327 axis = &hints->axis[dim];
333 *offset = (dim == AF_DIMENSION_HORZ) ? seg->first->ox
522 int dim; local
529 for ( dim = 0; dim < AF_DIMENSION_MA
1275 af_glyph_hints_scale_dim( AF_GlyphHints hints, AF_Dimension dim, FT_Fixed scale, FT_Pos delta ) argument
[all...]
/external/freetype/src/pshinter/
H A Dpshrec.c559 ps_dimension_set_mask_bit( PS_Dimension dim,
568 error = ps_mask_table_last( &dim->masks, memory, &mask );
582 ps_dimension_end_mask( PS_Dimension dim, argument
585 FT_UInt count = dim->masks.num_masks;
591 mask = dim->masks.masks + count - 1;
600 ps_dimension_reset_mask( PS_Dimension dim, argument
608 ps_dimension_end_mask( dim, end_point );
611 return ps_mask_table_alloc( &dim->masks, memory, &mask );
617 ps_dimension_set_mask_bits( PS_Dimension dim, argument
628 error = ps_dimension_reset_mask( dim, end_poin
643 ps_dimension_add_t1stem( PS_Dimension dim, FT_Int pos, FT_Int len, FT_Memory memory, FT_Int *aindex ) argument
714 ps_dimension_add_counter( PS_Dimension dim, FT_Int hint1, FT_Int hint2, FT_Int hint3, FT_Memory memory ) argument
763 ps_dimension_end( PS_Dimension dim, FT_UInt end_point, FT_Memory memory ) argument
858 PS_Dimension dim = &hints->dimension[dimension]; local
902 PS_Dimension dim; local
1005 PS_Dimension dim = hints->dimension; local
1050 PS_Dimension dim = hints->dimension; local
1097 PS_Dimension dim = hints->dimension; local
[all...]
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...]
/external/tremolo/Tremolo/
H A Dcodebook.c72 for(j=0;j<b->dim;j++){
78 for(j=0;j<b->dim;j++)
84 for(j=0;j<b->dim;j++){
337 scalar is values == entries/dim. If entries%dim != 0, we'll
338 have 'too few' values (values*dim<entries), which means that
348 int vals=b->entries>>((bits-1)*(b->dim-1)/b->dim);
354 for(i=0;i<b->dim;i++){
392 s->dim
[all...]
/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/webkit/Source/WebCore/platform/graphics/
H A DContextShadow.cpp132 int dim = (!k) ? size.width() : size.height(); local
149 int alpha2 = pixels[(dim - 1) * stride + channels[step]];
156 int limit = (dim < side2 + 1) ? dim : side2 + 1;
162 limit = (side1 < dim) ? side1 : dim;
165 sum += ((ofs < dim) ? *next : alpha2) - alpha1;
168 for (; ofs < dim; ptr += stride, prev += stride, next += stride, ++i, ++ofs) {
172 for (; i < dim; ptr += stride, prev += stride, ++i) {
/external/iptables/include/linux/netfilter/
H A Dxt_set.h76 u_int8_t dim; member in struct:xt_set_info_v0::__anon5389::__anon5390
96 u_int8_t dim; member in struct:xt_set_info
/external/javassist/src/main/javassist/compiler/
H A DParser.java187 int dim = parseArrayDimension();
188 return new Declarator(t, dim);
192 int dim = parseArrayDimension();
193 return new Declarator(name, dim);
573 int dim = parseArrayDimension();
574 return parseDeclarators(tbl, new Declarator(t, dim));
581 int dim = parseArrayDimension();
582 return parseDeclarators(tbl, new Declarator(name, dim));
639 int dim = parseArrayDimension();
646 Declarator decl = d.make(symbol, dim, ini
1090 parseDotClass(ASTree className, int dim) argument
1110 parseDotClass(int builtinType, int dim) argument
[all...]
/external/skia/bench/
H A Dbenchmain.cpp374 SkIPoint dim = bench->getSize(); local
375 if (dim.fX <= 0 || dim.fY <= 0) {
394 str.printf("running bench [%d %d] %28s", dim.fX, dim.fY,
410 SkDevice* device = make_device(outConfig, dim, backend, context);
415 performClip(&canvas, dim.fX, dim.fY);
418 performScale(&canvas, dim.fX, dim
[all...]

Completed in 395 milliseconds

1234