Searched refs:sample (Results 26 - 50 of 692) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/libexif-0.6.19/test/
H A DMakefile.am15 TEST_IMAGES = $(top_srcdir)/daniel-andrews-sample.jpg
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/include/wx/mmedia/internal/
H A Dg72x.h99 int sample,
107 int sample,
115 int sample,
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/sound/core/oss/
H A Dmulaw.c157 unsigned char *dst, u16 sample)
159 sample ^= data->flip;
161 sample = swab16(sample);
164 memcpy(dst + data->native_ofs, (char *)&sample + data->copy_ofs,
194 signed short sample = ulaw2linear(*src); local
195 cvt_s16_to_native(data, dst, sample);
205 u16 sample = 0; local
206 memcpy((char *)&sample + data->copy_ofs, src + data->native_ofs,
209 sample
156 cvt_s16_to_native(struct mulaw_priv *data, unsigned char *dst, u16 sample) argument
240 signed short sample = cvt_native_to_s16(data, src); local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libevent-1.4.14b-stable/
H A DMakefile.am65 sample/Makefile.am sample/Makefile.in sample/event-test.c \
66 sample/signal-test.c sample/time-test.c \
86 SUBDIRS = . sample
93 SUBDIRS = . sample test
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dtsamples.tex17 from them, but sometimes it is not simple to just choose the right sample to
18 look at. This overview aims at describing what each sample does/demonstrates to
25 \helpref{minimal sample}{sampleminimal} which is the wxWidgets version of
27 most commented sample of all - looking at its source code is recommended.
43 Finally, it might be helpful to do a search in the entire sample directory if
44 you can't find the sample showing the control you are interested in by
48 \subsection{Minimal sample}\label{sampleminimal}
50 The minimal sample is what most people will know under the term Hello World,
56 \subsection{Animate sample}\label{sampleanimate}
58 The {\tt animate} sample show
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/share/replaygain_synthesis/
H A Dreplaygain_synthesis.c307 -1, /* 0 bits-per-sample (not supported) */
308 -1, /* 1 bits-per-sample (not supported) */
309 -1, /* 2 bits-per-sample (not supported) */
310 -1, /* 3 bits-per-sample (not supported) */
311 268435456, /* 4 bits-per-sample */
312 134217728, /* 5 bits-per-sample */
313 67108864, /* 6 bits-per-sample */
314 33554432, /* 7 bits-per-sample */
315 16777216, /* 8 bits-per-sample */
316 8388608, /* 9 bits-per-sample */
389 double sample; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/input/touchscreen/
H A Dmc13783_ts.c41 unsigned int sample[4]; member in struct:mc13783_ts_priv
80 x0 = priv->sample[0] & 0xfff;
81 x1 = priv->sample[1] & 0xfff;
82 x2 = priv->sample[2] & 0xfff;
83 y0 = priv->sample[3] & 0xfff;
84 y1 = (priv->sample[0] >> 12) & 0xfff;
85 y2 = (priv->sample[1] >> 12) & 0xfff;
86 cr0 = (priv->sample[2] >> 12) & 0xfff;
87 cr1 = (priv->sample[3] >> 12) & 0xfff;
128 mode, channel, priv->sample)
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/echo/
H A Dfir.h41 history sample offsets that are 16 bit aligned - the dual MAC needs
146 static inline int16_t fir16(struct fir16_state_t *fir, int16_t sample) argument
150 fir->history[fir->curr_pos] = sample;
151 fir->history[fir->curr_pos + fir->taps] = sample;
159 fir->history[fir->curr_pos] = sample;
195 static inline int16_t fir32(struct fir32_state_t *fir, int16_t sample) argument
202 fir->history[fir->curr_pos] = sample;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/kernel/time/
H A Dtimecompare.c54 } buffer[10], sample, *samples; local
85 sample.duration_target = ktime_to_ns(ktime_sub(end, start));
86 if (sample.duration_target >= 0) {
92 sample.offset =
100 sample.duration_target)
105 samples[index + 1] = sample;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavfilter/
H A Daf_earwax.c97 int32_t sample; local
101 sample = 0;
103 sample += in[j] * filt[j];
104 *out = av_clip_int16(sample >> 6);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/tools/perf/
H A Dbuiltin-timechart.c231 struct cpu_sample *sample; local
244 sample = malloc(sizeof(struct cpu_sample));
245 assert(sample != NULL);
246 memset(sample, 0, sizeof(struct cpu_sample));
247 sample->start_time = start;
248 sample->end_time = end;
249 sample->type = type;
250 sample->next = c->samples;
251 sample->cpu = cpu;
252 c->samples = sample;
702 struct cpu_sample *sample; local
724 struct cpu_sample *sample; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dmlpdsp.c116 int32_t sample = sample_buffer[i][mat_ch] local
118 lossless_check_data ^= (sample & 0xffffff) << mat_ch;
120 *data_32++ = sample << 8;
122 *data_16++ = sample >> 8;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/isdn/mISDN/
H A Ddsp_biquad.h53 static inline int16_t biquad2(struct biquad2_state *bq, int16_t sample) argument
58 z0 = sample*bq->gain + bq->z1*bq->a1 + bq->z2*bq->a2;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/collections/ship/basic/
H A DSample.java20 * Sample is the main entry point for the sample program and may be run as
29 * the current directory where the sample is run. The home directory must exist
30 * before running the sample. To recreate the sample database from scratch,
31 * delete all files in the home directory before running the sample. </p>
41 * Run the sample program.
45 System.out.println("\nRunning sample: " + Sample.class);
61 // Run the sample.
63 Sample sample = null;
65 sample
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/collections/ship/entity/
H A DSample.java20 * Sample is the main entry point for the sample program and may be run as
29 * the current directory where the sample is run. The home directory must exist
30 * before running the sample. To recreate the sample database from scratch,
31 * delete all files in the home directory before running the sample. </p>
41 * Run the sample program.
45 System.out.println("\nRunning sample: " + Sample.class);
61 // Run the sample.
63 Sample sample = null;
65 sample
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/collections/ship/factory/
H A DSample.java18 * Sample is the main entry point for the sample program and may be run as
27 * the current directory where the sample is run. To specify a different home
29 * running the sample. To recreate the sample database from scratch, delete
30 * all files in the home directory before running the sample. </p>
40 * Run the sample program.
44 System.out.println("\nRunning sample: " + Sample.class);
60 // Run the sample.
62 Sample sample = null;
64 sample
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/collections/ship/marshal/
H A DSample.java20 * Sample is the main entry point for the sample program and may be run as
29 * the current directory where the sample is run. To specify a different home
31 * running the sample. To recreate the sample database from scratch, delete
32 * all files in the home directory before running the sample. </p>
42 * Run the sample program.
46 System.out.println("\nRunning sample: " + Sample.class);
62 // Run the sample.
64 Sample sample = null;
66 sample
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/collections/ship/sentity/
H A DSample.java21 * Sample is the main entry point for the sample program and may be run as
30 * the current directory where the sample is run. To specify a different home
32 * running the sample. To recreate the sample database from scratch, delete
33 * all files in the home directory before running the sample. </p>
43 * Run the sample program.
47 System.out.println("\nRunning sample: " + Sample.class);
63 // Run the sample.
65 Sample sample = null;
67 sample
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/collections/ship/tuple/
H A DSample.java20 * Sample is the main entry point for the sample program and may be run as
29 * the current directory where the sample is run. The home directory must exist
30 * before running the sample. To recreate the sample database from scratch,
31 * delete all files in the home directory before running the sample. </p>
41 * Run the sample program.
45 System.out.println("\nRunning sample: " + Sample.class);
61 // Run the sample.
63 Sample sample = null;
65 sample
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/dccp/ccids/lib/
H A Dpacket_history.c440 * to compute a sample with given data - calling function should check this.
444 u32 sample = 0, local
450 sample = SUB16(tfrc_rx_hist_rtt_prev_s(h)->tfrchrx_ccval,
452 if (sample)
453 sample = 4 / sample *
467 sample = ktime_to_us(net_timedelta(tfrc_rx_hist_rtt_last_s(h)->tfrchrx_tstamp));
473 if (unlikely(sample > DCCP_SANE_RTT_MAX)) {
474 DCCP_WARN("RTT sample %u too large, using max\n", sample);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Drl2.c49 unsigned int index_pos[2]; ///< indexes in the sample tables
180 /** build the sample index */
216 AVIndexEntry *sample = NULL; local
226 sample = &s->streams[i]->index_entries[ rl2->index_pos[i] ];
227 pos= sample->pos;
238 avio_seek(pb, sample->pos, SEEK_SET);
241 ret = av_get_packet(pb, pkt, sample->size);
242 if(ret != sample->size){
248 pkt->pts = sample->timestamp;
H A Dsegafilm.c193 /* load the sample table */
216 /* load the next sample record and transfer it to an internal struct */
258 film_sample *sample; local
264 sample = &film->sample_table[film->current_sample];
267 avio_seek(pb, sample->sample_offset, SEEK_SET);
270 ret= av_get_packet(pb, pkt, sample->sample_size);
271 if (ret != sample->sample_size)
274 pkt->stream_index = sample->stream;
275 pkt->pts = sample->pts;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/test/
H A Dtest_seeking.sh79 if flac --ogg --silent --force-raw-format --endian=little --sign=signed --channels=1 --bps=8 --sample-rate=44100 -c $0 1>/dev/null 2>&1 ; then
94 run_flac --verify --force --silent --force-raw-format --endian=big --sign=signed --sample-rate=44100 --bps=8 --channels=1 --blocksize=576 -S- --output-name=tiny.flac noise8m32.raw || die "ERROR generating FLAC file"
95 run_flac --verify --force --silent --force-raw-format --endian=big --sign=signed --sample-rate=44100 --bps=16 --channels=2 --blocksize=576 -S- --output-name=small.flac noise.raw || die "ERROR generating FLAC file"
96 run_flac --verify --force --silent --force-raw-format --endian=big --sign=signed --sample-rate=44100 --bps=8 --channels=1 --blocksize=576 -S10x --output-name=tiny-s.flac noise8m32.raw || die "ERROR generating FLAC file"
97 run_flac --verify --force --silent --force-raw-format --endian=big --sign=signed --sample-rate=44100 --bps=16 --channels=2 --blocksize=576 -S10x --output-name=small-s.flac noise.raw || die "ERROR generating FLAC file"
120 echo "removing sample count from tiny$suffix.flac and small$suffix.flac:"
139 run_flac --verify --force --silent --force-raw-format --endian=big --sign=signed --sample-rate=44100 --bps=8 --channels=1 --blocksize=576 --output-name=tiny.oga --ogg noise8m32.raw || die "ERROR generating Ogg FLAC file"
140 run_flac --verify --force --silent --force-raw-format --endian=big --sign=signed --sample-rate=44100 --bps=16 --channels=2 --blocksize=576 --output-name=small.oga --ogg noise.raw || die "ERROR generating Ogg FLAC file"
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavformat/
H A Drl2.c47 unsigned int index_pos[2]; ///< indexes in the sample tables
181 /** build the sample index */
217 AVIndexEntry *sample = NULL; local
227 sample = &s->streams[i]->index_entries[ rl2->index_pos[i] ];
228 pos= sample->pos;
239 avio_seek(pb, sample->pos, SEEK_SET);
242 ret = av_get_packet(pb, pkt, sample->size);
243 if(ret != sample->size){
249 pkt->pts = sample->timestamp;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavresample/
H A Davresample-test.c42 int channels, int sample, int ch, \
48 out[ch][sample] = v; \
50 out[0][sample * channels + ch] = v; \
60 int channels, int sample, int ch, double v_dbl)
64 put_sample_u8(data, sample_fmt, channels, sample, ch, v_dbl);
67 put_sample_s16(data, sample_fmt, channels, sample, ch, v_dbl);
70 put_sample_s32(data, sample_fmt, channels, sample, ch, v_dbl);
73 put_sample_flt(data, sample_fmt, channels, sample, ch, v_dbl);
76 put_sample_dbl(data, sample_fmt, channels, sample, ch, v_dbl);
218 "[<num sample rate
59 put_sample(void **data, enum AVSampleFormat sample_fmt, int channels, int sample, int ch, double v_dbl) argument
[all...]

Completed in 138 milliseconds

1234567891011>>