Searched refs:step (Results 1 - 25 of 188) sorted by relevance

12345678

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/sound/
H A Dtlv.h39 #define TLV_DB_SCALE_ITEM(min, step, mute) \
41 (min), ((step) & 0xffff) | ((mute) ? 0x10000 : 0)
42 #define DECLARE_TLV_DB_SCALE(name, min, step, mute) \
43 unsigned int name[] = { TLV_DB_SCALE_ITEM(min, step, mute) }
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sh64/mm/
H A Dtlb.c27 cpu_data->dtlb.step = 0x10;
29 cpu_data->dtlb.first = DTLB_FIXED | cpu_data->dtlb.step;
34 cpu_data->dtlb.step);
38 cpu_data->itlb.step = 0x10;
40 cpu_data->itlb.first = ITLB_FIXED | cpu_data->itlb.step;
44 cpu_data->itlb.step);
68 cpu_data->dtlb.first += cpu_data->dtlb.step;
69 cpu_data->dtlb.next += cpu_data->dtlb.step;
108 if (entry < (cpu_data->dtlb.first - cpu_data->dtlb.step))
112 cpu_data->dtlb.first -= cpu_data->dtlb.step;
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/src/
H A Dtool_urlglob.h44 int step; member in struct:__anon136::__anon137::__anon139
51 int step; member in struct:__anon136::__anon137::__anon140
H A Dtool_cb_see.c78 long step = (left > OUR_MAX_SEEK_O) ? OUR_MAX_SEEK_L : (long)left; local
79 if(LSEEK_ERROR == lseek(in->fd, step, SEEK_CUR))
82 left -= step;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Drv40.c254 static inline void rv40_weak_loop_filter(uint8_t *src, const int step, argument
265 t = src[0*step] - src[-1*step];
274 t += src[-2*step] - src[1*step];
276 src[-1*step] = cm[src[-1*step] + diff];
277 src[ 0*step] = cm[src[ 0*step] - diff];
280 src[-2*step]
288 rv40_adaptive_loop_filter(uint8_t *src, const int step, const int stride, const int dmode, const int lim_q1, const int lim_p1, const int alpha, const int beta, const int beta2, const int chroma, const int edge) argument
[all...]
H A Dpixdesc.h77 int step = comp.step_minus1+1; local
79 const uint8_t *p= data[plane]+y*linesize[plane] + x * step + comp.offset_plus1 - 1;
97 p+= step;
H A Dadpcm.c66 * This is the step table. Note that many programs use slight deviations from
133 int step; member in struct:ADPCMChannelStatus
248 if(!c->step) {
250 c->step = 127;
255 nibble = FFMIN(7, abs(delta)*4/c->step) + (delta<0)*8;
257 c->predictor += ((c->step * yamaha_difflookup[nibble]) / 8);
259 c->step = (c->step * yamaha_indexscale[nibble]) >> 8;
260 c->step = av_clip(c->step, 12
275 int step; member in struct:TrellisNode
325 const int step = nodes[j]->step; local
704 int sign, delta, diff, step; local
1500 int step = step_table[c->status[i].step_index]; local
[all...]
H A Dloco.c108 static inline int loco_predict(uint8_t* data, int stride, int step) argument
113 b = data[-step];
114 c = data[-stride - step];
120 int stride, const uint8_t *buf, int buf_size, int step)
141 data[i * step] = data[i * step - step] + val;
151 data[i * step] = loco_predict(&data[i * step], stride, step)
119 loco_decode_plane(LOCOContext *l, uint8_t *data, int width, int height, int stride, const uint8_t *buf, int buf_size, int step) argument
[all...]
H A Dsonic.c171 int step = 256, pos = 0, dominant = 0, any = 0; local
217 int steplet = step >> 8;
231 step += step / ADAPT_LEVEL;
241 write_uint_max(pb, interloper, (step >> 8) - 1);
244 step -= step / ADAPT_LEVEL;
247 if (step < 256)
249 step = 65536 / step;
268 int n_zeros = 0, step = 256, dominant = 0; local
426 int step = (i+1)*channels, k, j; local
[all...]
H A Drv30.c120 static inline void rv30_weak_loop_filter(uint8_t *src, const int step, argument
127 diff = ((src[-2*step] - src[1*step]) - (src[-1*step] - src[0*step])*4) >> 3;
129 src[-1*step] = cm[src[-1*step] + diff];
130 src[ 0*step] = cm[src[ 0*step] - diff];
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libpostproc/
H A Dpostprocess.c456 static av_always_inline void do_a_deblock_C(uint8_t *src, int step, int stride, PPContext *c){ argument
462 src+= step*4; // src points to begin of the 8x8 Block
466 if(((unsigned)(src[-1*step] - src[0*step] + dcOffset)) < dcThreshold) numEq++;
467 if(((unsigned)(src[ 0*step] - src[1*step] + dcOffset)) < dcThreshold) numEq++;
468 if(((unsigned)(src[ 1*step] - src[2*step] + dcOffset)) < dcThreshold) numEq++;
469 if(((unsigned)(src[ 2*step] - src[3*step]
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/libvorbis-1.2.3/vq/
H A Dcascade.c37 float process_one(codebook *b,float *a,int dim,int step,int addmul, argument
44 temp=a[j*step];
45 a[j*step]-=base;
50 vorbis_book_besterror(b,a,step,addmul);
H A Dresidue_entropy30 my$step=$#nums/$groupn;
31 for(my$i=0;$i<$step;$i++){
33 for(my$j=$i;$j<$#nums;$j+=$step){
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/libxml/
H A Dpattern.c89 int flags; /* properties of that step */
111 int *states; /* the array of step indexes */
138 int step; member in struct:_xmlStepState
338 * Add a step to an XSLT Compiled Match
460 xmlPatPushState(xmlStepStates *states, int step, xmlNodePtr node) { argument
476 states->states[states->nbstates].step = step;
479 fprintf(stderr, "Push: %d, %s\n", step, node->name);
496 xmlStepOpPtr step; local
503 step
1574 xmlStepOp step; local
1856 xmlStreamStep step; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libxml2-2.7.2/
H A Dpattern.c89 int flags; /* properties of that step */
111 int *states; /* the array of step indexes */
138 int step; member in struct:_xmlStepState
338 * Add a step to an XSLT Compiled Match
460 xmlPatPushState(xmlStepStates *states, int step, xmlNodePtr node) { argument
476 states->states[states->nbstates].step = step;
479 fprintf(stderr, "Push: %d, %s\n", step, node->name);
496 xmlStepOpPtr step; local
503 step
1576 xmlStepOp step; local
1858 xmlStreamStep step; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/libxml/
H A Dpattern.c89 int flags; /* properties of that step */
111 int *states; /* the array of step indexes */
138 int step; member in struct:_xmlStepState
338 * Add a step to an XSLT Compiled Match
460 xmlPatPushState(xmlStepStates *states, int step, xmlNodePtr node) { argument
476 states->states[states->nbstates].step = step;
479 fprintf(stderr, "Push: %d, %s\n", step, node->name);
496 xmlStepOpPtr step; local
503 step
1574 xmlStepOp step; local
1856 xmlStreamStep step; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/util-linux/
H A Dreadprofile.c20 * - skip step size (index 0)
52 unsigned int step; local
130 step = buf[0];
132 printf("Sampling_step: %i\n", step);
178 while (indx < (next_add-add0)/step) {
184 printf("\t%"PRIx64"\t%u\n", (indx - 1)*step + add0, buf[indx]);
204 for (scan = (fn_add-add0)/step + 1;
205 scan < (next_add-add0)/step; scan++) {
208 addr = (scan - 1)*step + add0;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-sh64/
H A Dtlb.h39 tlb += cpu_data->dtlb.step)
51 tlb += cpu_data->itlb.step)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/media/video/sn9c102/
H A Dsn9c102_pas106b.c182 .step = 0x001,
192 .step = 0x01,
202 .step = 0x01,
212 .step = 0x01,
222 .step = 0x01,
232 .step = 0x02,
242 .step = 0x01,
H A Dsn9c102_ov7630.c270 .step = 0x01,
280 .step = 0x01,
290 .step = 0x01,
300 .step = 0x01,
310 .step = 0x01,
320 .step = 0x01,
330 .step = 0x01,
340 .step = 0x01,
350 .step = 0x01,
360 .step
[all...]
H A Dsn9c102_hv7131d.c163 .step = 0x0001,
173 .step = 0x01,
183 .step = 0x01,
193 .step = 0x01,
203 .step = 0x01,
213 .step = 0x01,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/core/oss/
H A Dlinear.c66 src_step = src_channels[channel].area.step / 8;
67 dst_step = dst_channels[channel].area.step / 8;
97 src_channels[channel].area.step % 8 == 0,
100 dst_channels[channel].area.step % 8 == 0,
H A Dcopy.c45 src_channels->area.step % 8 == 0,
48 dst_channels->area.step % 8 == 0,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/contrib/testzlib/
H A Dtestzlib.c196 int step=0; local
212 step++;
220 printf("total compress size = %u, in %u step\n",lSizeCpr,step);
237 int step=0; local
253 step++;
261 printf("total uncompress size = %u, in %u step\n",lSizeUncpr,step);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/zlib-1.2.3/contrib/testzlib/
H A Dtestzlib.c196 int step=0; local
212 step++;
220 printf("total compress size = %u, in %u step\n",lSizeCpr,step);
237 int step=0; local
253 step++;
261 printf("total uncompress size = %u, in %u step\n",lSizeUncpr,step);

Completed in 140 milliseconds

12345678