Searched refs:points (Results 1 - 25 of 72) sorted by relevance

123

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Delbg.h31 * @param points Input points.
32 * @param dim Dimension of the points.
33 * @param numpoints Num of points in **points.
35 * @param numCB Number of points in the codebook.
40 void ff_do_elbg(int *points, int dim, int numpoints, int *codebook,
48 * If not, it calls ff_do_elbg for a (smaller) random sample of the points in
49 * **points. Get the same parameters as ff_do_elbg.
51 void ff_init_elbg(int *points, in
[all...]
H A Delbg.c35 * In the ELBG jargon, a cell is the set of points that are closest to a
54 int *points; member in struct:__anon516
85 error += distance_limited(centroid, elbg->points + cells->index*elbg->dim, elbg->dim, INT_MAX);
123 int *points,
137 idx = distance_limited(centroid[0], points + tempcell->index*dim, dim, INT_MAX)>=
138 distance_limited(centroid[1], points + tempcell->index*dim, dim, INT_MAX);
141 newcentroid[idx][i] += points[tempcell->index*dim + i];
148 int dist[2] = {distance_limited(centroid[0], points + tempcell->index*dim, dim, INT_MAX),
149 distance_limited(centroid[1], points + tempcell->index*dim, dim, INT_MAX)};
172 min[i]=FFMIN(min[i], elbg->points[tempcel
120 simple_lbg(int dim, int *centroid[3], int newutility[3], int *points, cell *cells) argument
319 ff_init_elbg(int *points, int dim, int numpoints, int *codebook, int numCB, int max_steps, int *closest_cb, AVRandomState *rand_state) argument
346 ff_do_elbg(int *points, int dim, int numpoints, int *codebook, int numCB, int max_steps, int *closest_cb, AVRandomState *rand_state) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/mm/
H A Doom_kill.c52 unsigned long points, cpu_time, run_time, s; local
66 points = mm->total_vm;
90 points += child->mm->total_vm/2 + 1;
109 points /= s;
112 points /= s;
116 * their badness points.
119 points *= 2;
127 points /= 4;
136 points /= 4;
144 points /
216 unsigned long points; local
346 oom_kill_process(struct task_struct *p, unsigned long points, const char *message) argument
400 unsigned long points = 0; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/libvorbis-1.2.3/vq/
H A Dvqsplit.h28 long *pointindex,long points,
H A Dvqgen.c53 * solution. Individual input points, collected from libvorbis, are
277 if(v->points>=v->allocated){
283 memcpy(_point(v,v->points),p,sizeof(float)*v->elements);
284 if(v->aux)memcpy(_point(v,v->points)+v->elements,a,sizeof(float)*v->aux);
290 _point(v,v->points)[k]=
291 rint(_point(v,v->points)[k]/v->mindist)*v->mindist;
293 v->points++;
294 if(!(v->points&0xff))spinnit("loading... ",v->points);
312 qsort(v->pointlist,v->points,sortsiz
[all...]
H A Dvqsplit.c57 points on side A go into set A, same with set B. The sets may
87 long *pointindex,long points,int splitp,
99 temppointsA=_ogg_malloc(points*sizeof(long));
100 temppointsB=_ogg_malloc(points*sizeof(long));
106 /* Do the points belonging to this cell occur on sideA, sideB or
109 for(i=0;i<points;i++){
160 long *pointindex,long points,
199 if(entries<8 || (float)points*entries*entries<16.f*1024*1024){
209 pointindex,points,0,
276 pointindex,points,
84 vqsp_count(float *entrylist,float *pointlist,int dim, long *membership,long *reventry, long *entryindex,long entries, long *pointindex,long points,int splitp, long *entryA,long *entryB, long besti,long bestj, long *entriesA,long *entriesB,long *entriesC) argument
157 lp_split(float *pointlist,long totalpoints, codebook *b, long *entryindex,long entries, long *pointindex,long points, long *membership,long *reventry, long depth, long *pointsofar) argument
[all...]
H A Dlatticepare.c42 low-population cells and cells that have not taken on points from
70 static long points=0; variable
77 pointlist[points++]=vec[j];
213 if(!strcmp(ext,"vqd") && !points){
294 if(!entries || !points || !out)usage();
297 /* add guard points */
300 pointlist[points++]=b->valuelist[i*dim+j];
302 points/=dim;
312 long *membership=_ogg_malloc(points*sizeof(long));
314 long *secondary=_ogg_malloc(points*sizeo
[all...]
H A Dvqgen.h34 long points; member in struct:vqgen
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/ec/
H A Dec_mult.c87 EC_POINT **points; /* array with pre-calculated multiples of generator: member in struct:ec_pre_comp_st
112 ret->points = NULL;
141 if (pre->points)
145 for (p = pre->points; *p != NULL; p++)
147 OPENSSL_free(pre->points);
164 if (pre->points)
168 for (p = pre->points; *p != NULL; p++)
170 OPENSSL_cleanse(pre->points, sizeof pre->points);
171 OPENSSL_free(pre->points);
324 ec_wNAF_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, size_t num, const EC_POINT *points[], const BIGNUM *scalars[], BN_CTX *ctx) argument
742 EC_POINT **points = NULL; local
[all...]
H A Dectest.c305 EC_POINT *points[3];
307 points[0] = R;
308 points[1] = Q;
309 points[2] = P;
310 if (!EC_POINTs_make_affine(group, 2, points, ctx)) ABORT;
662 const EC_POINT *points[3]; local
666 points[0] = Q;
667 points[1] = Q;
668 points[2] = Q;
680 if (!EC_POINTs_mul(group, P, NULL, 2, points, scalar
1137 const EC_POINT *points[3]; local
[all...]
H A Dec_lib.c1091 int EC_POINTs_make_affine(const EC_GROUP *group, size_t num, EC_POINT *points[], BN_CTX *ctx) argument
1102 if (group->meth != points[i]->meth)
1108 return group->meth->points_make_affine(group, num, points, ctx);
1119 size_t num, const EC_POINT *points[], const BIGNUM *scalars[], BN_CTX *ctx)
1123 return ec_wNAF_mul(group, r, scalar, num, points, scalars, ctx);
1125 return group->meth->mul(group, r, scalar, num, points, scalars, ctx);
1133 const EC_POINT *points[1]; local
1136 points[0] = point;
1139 return EC_POINTs_mul(group, r, g_scalar, (point != NULL && p_scalar != NULL), points, scalars, ctx);
1118 EC_POINTs_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, size_t num, const EC_POINT *points[], const BIGNUM *scalars[], BN_CTX *ctx) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sh/lib/
H A Dmemcpy.S20 add r6,r0 ! From here, r0 points the end of copying point
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/libFLAC/
H A Dformat.c253 seek_table->points[i].sample_number != FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER &&
254 seek_table->points[i].sample_number <= prev_sample_number
258 prev_sample_number = seek_table->points[i].sample_number;
286 qsort(seek_table->points, seek_table->num_points, sizeof(FLAC__StreamMetadata_SeekPoint), (int (*)(const void *, const void *))seekpoint_compare_);
291 if(seek_table->points[i].sample_number != FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER) {
293 if(seek_table->points[i].sample_number == seek_table->points[j-1].sample_number)
298 seek_table->points[j++] = seek_table->points[i];
302 seek_table->points[
[all...]
H A Dmetadata_object.c463 object->data.seek_table.points = 0;
557 if(!copy_bytes_((FLAC__byte**)&to->data.seek_table.points, (FLAC__byte*)object->data.seek_table.points, object->data.seek_table.num_points * sizeof(FLAC__StreamMetadata_SeekPoint))) {
646 if(0 != object->data.seek_table.points) {
647 free(object->data.seek_table.points);
648 object->data.seek_table.points = 0;
743 if(0 != block1->points && 0 != block2->points) {
745 if(block1->points[i].sample_number != block2->points[
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm/mach-ip27/
H A Dkernel-entry-init.h41 ld t0, 0(t0) # t0 points to kern_vars struct
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-mips/mach-ip27/
H A Dkernel-entry-init.h41 ld t0, 0(t0) # t0 points to kern_vars struct
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/test_libs_common/
H A Dmetadata_utils.c168 if(blockcopy->points[i].sample_number != block->points[i].sample_number) {
170 printf("FAILED, points[%u].sample_number mismatch, expected %I64u, got %I64u\n", i, block->points[i].sample_number, blockcopy->points[i].sample_number);
172 printf("FAILED, points[%u].sample_number mismatch, expected %llu, got %llu\n", i, (unsigned long long)block->points[i].sample_number, (unsigned long long)blockcopy->points[i].sample_number);
176 if(blockcopy->points[i].stream_offset != block->points[
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/ec/
H A Dec_mult.c187 * \sum scalars[i]*points[i],
193 size_t num, const EC_POINT *points[], const BIGNUM *scalars[], BN_CTX *ctx)
236 if (group->meth != points[i]->meth)
254 /* num_val := total number of points to precompute */
265 /* all precomputed points go into a single array 'val',
274 /* allocate points for precomputation */
303 * val_sub[i][0] := points[i]
304 * val_sub[i][1] := 3 * points[i]
305 * val_sub[i][2] := 5 * points[i]
312 if (!EC_POINT_copy(val_sub[i][0], points[
192 EC_POINTs_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, size_t num, const EC_POINT *points[], const BIGNUM *scalars[], BN_CTX *ctx) argument
434 const EC_POINT *points[1]; local
[all...]
H A Dectest.c271 EC_POINT *points[3];
273 points[0] = R;
274 points[1] = Q;
275 points[2] = P;
276 if (!EC_POINTs_make_affine(group, 2, points, ctx)) ABORT;
552 const EC_POINT *points[3]; local
556 points[0] = Q;
557 points[1] = Q;
558 points[2] = Q;
570 if (!EC_POINTs_mul(group, P, NULL, 2, points, scalar
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/libvorbis-1.2.3/lib/
H A Dmdct.c219 int points){
221 DATA_TYPE *x1 = x + points - 8;
222 DATA_TYPE *x2 = x + (points>>1) - 8;
266 int points,
269 DATA_TYPE *x1 = x + points - 8;
270 DATA_TYPE *x2 = x + (points>>1) - 8;
319 int points){
326 mdct_butterfly_first(T,x,points);
331 mdct_butterfly_generic(T,x+(points>>i)*j,points>>
217 mdct_butterfly_first(DATA_TYPE *T, DATA_TYPE *x, int points) argument
264 mdct_butterfly_generic(DATA_TYPE *T, DATA_TYPE *x, int points, int trigint) argument
317 mdct_butterflies(mdct_lookup *init, DATA_TYPE *x, int points) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/metaflac/
H A Doperations_shorthand_seektable.c121 test_sample = cd->seektable_template->points[i].sample_number;
126 cd->seektable_template->points[i].sample_number = frame_first_sample;
127 cd->seektable_template->points[i].stream_offset = cd->last_offset - cd->audio_offset;
128 cd->seektable_template->points[i].frame_samples = blocksize;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m68k/fpsp040/
H A Dsint.S8 | Entry points sint and sintrz are called from do_func
12 | Input: (Entry points sint and sintrz) Double-extended
122 | Input: a0 points to an IEEE extended format operand
212 | ;assumes a0 points to operand
232 | ;Input: a0 points to operand to
234 | ;Output: a0 points to normalized
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/test/
H A Dectest.c271 EC_POINT *points[3];
273 points[0] = R;
274 points[1] = Q;
275 points[2] = P;
276 if (!EC_POINTs_make_affine(group, 2, points, ctx)) ABORT;
552 const EC_POINT *points[3]; local
556 points[0] = Q;
557 points[1] = Q;
558 points[2] = Q;
570 if (!EC_POINTs_mul(group, P, NULL, 2, points, scalar
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/test/
H A Dectest.c305 EC_POINT *points[3];
307 points[0] = R;
308 points[1] = Q;
309 points[2] = P;
310 if (!EC_POINTs_make_affine(group, 2, points, ctx)) ABORT;
662 const EC_POINT *points[3]; local
666 points[0] = Q;
667 points[1] = Q;
668 points[2] = Q;
680 if (!EC_POINTs_mul(group, P, NULL, 2, points, scalar
1137 const EC_POINT *points[3]; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/test_libFLAC++/
H A Dmetadata_object.cpp114 seektable_.data.seek_table.points = (::FLAC__StreamMetadata_SeekPoint*)malloc_or_die_(seektable_.data.seek_table.num_points * sizeof(::FLAC__StreamMetadata_SeekPoint));
115 seektable_.data.seek_table.points[0].sample_number = 0;
116 seektable_.data.seek_table.points[0].stream_offset = 0;
117 seektable_.data.seek_table.points[0].frame_samples = streaminfo_.data.stream_info.min_blocksize;
118 seektable_.data.seek_table.points[1].sample_number = ::FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER;
119 seektable_.data.seek_table.points[1].stream_offset = 1000;
120 seektable_.data.seek_table.points[1].frame_samples = streaminfo_.data.stream_info.min_blocksize;
165 /* 3 index points */
230 free(seektable_.data.seek_table.points);
943 if(!block.insert_point(0, seektable_.data.seek_table.points[
[all...]

Completed in 204 milliseconds

123