HomeSort by: relevance | last modified time | path
    Searched refs:samples (Results 1 - 25 of 85) sorted by relevancy

1 2 3 4

  /src/external/mit/isl/dist/
polytope_scan.c 28 struct isl_mat *samples; member in struct:scan_samples
36 ss->samples = isl_mat_extend(ss->samples, ss->samples->n_row + 1,
37 ss->samples->n_col);
38 if (!ss->samples)
41 isl_seq_cpy(ss->samples->row[ss->samples->n_row - 1],
63 ss.samples = isl_mat_alloc(ctx, 0, 1 + dim);
64 if (!ss.samples)
81 struct isl_mat *samples; local
98 struct isl_mat *samples; local
    [all...]
  /src/external/mpl/dhcp/dist/keama/tests/
runall.sh 8 /bin/sh samples/runall.sh
  /src/external/bsd/tre/dist/tests/
bench.c 65 stats(double *sample_data, int samples, int len)
71 for (i = 0; i < samples; i++)
77 for (i = 0; i < samples; i++) {
81 if (samples > 1)
82 variance = tmp1 / (samples-1);
89 error = t_distribution[samples-1] * stddev / sqrt(samples);
102 run_tests(int len, int samples, double *sample_data, int repeats,
112 for (i = 0; i < samples; i++) {
147 int samples = 20 local
    [all...]
  /src/share/examples/racoon/roadwarrior/
Makefile 15 .PATH: ${DIST}/src/racoon/samples/roadwarrior
  /src/share/examples/racoon/roadwarrior/client/
Makefile 13 .PATH: ${DIST}/src/racoon/samples/roadwarrior/client
  /src/share/examples/racoon/roadwarrior/server/
Makefile 13 .PATH: ${DIST}/src/racoon/samples/roadwarrior/server
  /src/usr.sbin/tpctl/
main.c 144 /* draw cursors and collect samples */
163 errx(EXIT_FAILURE, "can't set samples");
249 * draw cursors on frame buffer and collect samples in
282 coords->samples[0].x = fb.conf.hf_width/2;
283 coords->samples[0].y = fb.conf.hf_height/2;
286 coords->samples[1].x = xm;
287 coords->samples[1].y = ym;
290 coords->samples[2].x = xm;
291 coords->samples[2].y = fb.conf.hf_height - ym;
294 coords->samples[3].x = fb.conf.hf_width - xm
    [all...]
data.c 185 * number of samples
203 * samples
221 elem->calibcoords.samples[i / 4].rawx = t;
224 elem->calibcoords.samples[i / 4].rawy = t;
227 elem->calibcoords.samples[i / 4].x = t;
230 elem->calibcoords.samples[i / 4].y = t;
328 coords->samples[i].rawx,
329 coords->samples[i].rawy,
330 coords->samples[i].x,
331 coords->samples[i].y)
    [all...]
  /src/external/gpl2/groff/tmac/man/
Makefile 15 MLINKS+= groff_mdoc.7 mdoc.7 groff_mdoc.7 mdoc.samples.7
  /src/sys/dev/wscons/
tpcalib.c 106 if (mra_Y_AX1_BX2_C(&d->samples[0].x, s,
107 &d->samples[0].rawx, s,
108 &d->samples[0].rawy, s,
111 mra_Y_AX1_BX2_C(&d->samples[0].y, s,
112 &d->samples[0].rawx, s,
113 &d->samples[0].rawy, s,
  /src/sbin/wsconsctl/
mouse.c 79 { "calibration.samples", &calibration_samples,
167 char *samples; local
194 " samples");
196 samples = malloc(tmp.samplelen * sizeof(buf));
197 if (samples == NULL)
199 " samples");
200 samples[0] = '\0';
204 tmp.samples[i].rawx,
205 tmp.samples[i].rawy,
206 tmp.samples[i].x
    [all...]
  /src/usr.sbin/bta2dpd/bta2dpd/
sbc_encode.c 54 static void calc_scalefactors(int32_t samples[16][2][8]);
98 uint8_t samples[256]; member in struct:a2dp_frame_mono
104 uint8_t samples[256]; member in struct:a2dp_frame_joint
110 uint8_t samples[256]; member in struct:a2dp_frame
217 calc_scalefactors(int32_t samples[16][2][8])
227 ax = abs((int32_t)samples[block][ch][sb]);
487 sbc_encode(int16_t *input, int32_t *samples)
579 samples[numsamples++] = audioout;
587 sbc_decode(int32_t *samples, int16_t *pcm)
611 audioout = ((((samples[numsamples
771 static int32_t samples[256 * 2]; local
1064 int32_t samples[768]; local
    [all...]
  /src/regress/sys/kern/latency2/
latency2.c 55 long samples; variable
86 samples++;
149 printf("\nmin=%ldns, max=%ldns, mean=%ldns\n", min, max, sum / samples);
  /src/share/examples/racoon/
Makefile 18 .PATH: ${DIST}/src/racoon/samples ${DIST}/src/racoon/doc
  /src/external/public-domain/sqlite/sqlite2mdoc/
README.md 41 - [sqlite3\_open(3)](samples/sqlite3_open.3.md)
42 - [SQLITE\_FCNTL\_LOCKSTATE(3)](samples/SQLITE_FCNTL_LOCKSTATE.3.md)
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/dce/
amdgpu_dce_audio.c 142 uint32_t samples; local
186 samples = h_blank * 10;
188 * of Audio samples per line multiplied by 10 - Layout 1)
190 samples /= 32;
191 samples *= crtc_info->v_active;
192 /*Number of samples multiplied by 10, per second */
193 samples *= crtc_info->refresh_rate;
194 /*Number of Audio samples per second */
195 samples /= 10;
206 samples *= 4
    [all...]
  /src/external/bsd/zstd/dist/tests/fuzz/
zstd_helpers.c 172 char* const samples = (char*)FUZZ_malloc(totalSampleSize); local
184 memcpy(samples + pos, (const char*)src + offset, toCopy);
188 memset(samples + pos, 0, totalSampleSize - pos);
197 samples, samplesSizes, nbSamples, params);
204 free(samples);
  /src/external/bsd/zstd/dist/lib/dictBuilder/
fastcover.c 36 * There are 32bit indexes used to ref samples, so limit samples size to 4GB
104 unsigned finalize; /* Percentage of training samples used for ZDICT_finalizeDictionary */
128 const BYTE *samples; member in struct:__anon8696
181 const size_t idx = FASTCOVER_hashPtrToIndex(ctx->samples + activeSegment.end, f, d);
193 const size_t delIndex = FASTCOVER_hashPtrToIndex(ctx->samples + activeSegment.begin, f, d);
211 const size_t delIndex = FASTCOVER_hashPtrToIndex(ctx->samples + activeSegment.begin, f, d);
220 const size_t i = FASTCOVER_hashPtrToIndex(ctx->samples + pos, f, d);
281 * Calculate for frequency of hash value of each dmer in ctx->samples
297 const size_t dmerIndex = FASTCOVER_hashPtrToIndex(ctx->samples + start, f, d)
319 const BYTE* const samples = (const BYTE*)samplesBuffer; local
    [all...]
cover.h 88 const size_t *samplesSizes, const BYTE *samples,
  /src/sys/arch/shark/include/
profileio.h 84 unsigned int samples; /* the number of samples in the table. */ member in struct:profHashHeader
85 unsigned int missed; /* the number of samples missed. */
  /src/usr.bin/config/
Makefile 15 MAN+= config.5 config.samples.5
  /src/external/bsd/ntp/dist/util/
tg.c 66 #define SECOND 8000 /* one second of 125-us samples */
232 void delay(int); /* delay samples */
643 int delay /* delay in samples */
646 int samples; /* samples remaining */ local
648 samples = delay;
650 while (samples >= BUFLNG) {
652 samples -= BUFLNG;
654 write(fd, buffer, samples);
  /src/external/bsd/ntp/dist/ntpd/
refclock_msfees.c 201 /* Limits on things. Reduce the number of samples to SAMPLEREDUCE by median
256 u_char nsamples; /* number of samples we've collected */
268 u_char usealldata; /* Use ALL samples */
1241 /* ees_process - process a pile of samples from the clock */
1254 int samples = ees->nsamples; local
1256 int samplereduce = (samples + 1) / 2;
1263 samplelog = (samples < 2) ? 0 :
1264 (samples < 5) ? 1 :
1265 (samples < 9) ? 2 :
1266 (samples < 17) ? 3
    [all...]
  /src/external/cddl/dtracetoolkit/dist/Bin/
dexplorer 21 # dexplorer # default is 5 second samples
22 # dexplorer -y -i30 # no prompting, with 30 second samples
69 samples=20 # max number of tests
94 dexplorer # default is 5 second samples
95 dexplorer -y -i30 # no prompting, with 30 second samples
156 (( total = interval * samples ))
181 (( percent = current * 100 / samples ))
394 printf("%6s %12s %s\n", "PID", "SAMPLES", "ARGS");
  /src/external/cddl/dtracetoolkit/dist/
dexplorer 21 # dexplorer # default is 5 second samples
22 # dexplorer -y -i30 # no prompting, with 30 second samples
69 samples=20 # max number of tests
94 dexplorer # default is 5 second samples
95 dexplorer -y -i30 # no prompting, with 30 second samples
156 (( total = interval * samples ))
181 (( percent = current * 100 / samples ))
394 printf("%6s %12s %s\n", "PID", "SAMPLES", "ARGS");

Completed in 41 milliseconds

1 2 3 4