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

1 2

  /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...]
isl_tab.h 119 * The samples matrix contains "n_sample" integer points that have at some
123 * out is removed. These samples are only maintained for the context
165 struct isl_mat *samples; member in struct:isl_tab
  /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/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/external/lgpl3/gmp/dist/tests/mpz/
t-bin.c 71 samples (void) function
320 samples ();
  /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/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/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/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/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);
tg2.c 104 * showed 8000 samples/sec, now as specified on command line.
240 #define SECOND (8000) /* one second of 125-us samples */
501 void delay(int); /* delay samples */
2378 int Delay /* delay in samples */
2381 int samples; /* samples remaining */ local
2383 samples = Delay;
2385 while (samples >= BUFLNG) {
2387 samples -= BUFLNG;
2389 write(fd, buffer, samples);
    [all...]
  /src/external/gpl2/gmake/dist/
getloadavg.c 471 static unsigned int samples;
722 samples = cpus < 2 ? 3 : (2 * cpus / 3);
737 for (i = samples - 1; i > 0; --i)
745 loadavg[elem++] = load / samples / cpus;
470 static unsigned int samples; variable
  /src/sys/dev/pci/
if_wpivar.h 121 struct wpi_power_sample samples[WPI_SAMPLES_COUNT]; member in struct:wpi_power_group
if_wpireg.h 629 struct wpi_eeprom_sample samples[5]; member in struct:wpi_eeprom_group
  /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.c 45 * There are 32bit indexes used to ref samples, so limit samples size to 4GB
222 const BYTE *samples; member in struct:__anon8689
262 return memcmp(ctx->samples + lhs, ctx->samples + rhs, ctx->d);
269 U64 const lhs = MEM_readLE64(ctx->samples + *(U32 const *)lp) & mask;
270 U64 const rhs = MEM_readLE64(ctx->samples + *(U32 const *)rp) & mask;
364 /* Count the number of samples this dmer shows up in */
555 const BYTE *const samples = (const BYTE *)samplesBuffer; local
557 /* Split samples into testing and training sets *
    [all...]
  /src/sys/compat/sunos/
sunos.h 136 u_int samples; member in struct:sunos_audio_prinfo
  /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/usr.sbin/tprof/
tprof_top.c 100 /* for profiling and counting samples */
718 struct ptrarray *samples; local
747 samples = &sample_list[opt_mode];
754 ndisp = samples->pa_inuse;
804 e = (struct sample_elm *)samples->pa_ptrs[i];
849 if ((u_int)ndisp != samples->pa_inuse) {
851 sample_event_width, ":", samples->pa_inuse - ndisp);
996 printf("collecting 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/bsd/tcpdump/dist/
print-sflow.c 56 * | num samples in datagram |
68 nd_uint32_t samples; member in struct:sflow_datagram_t
78 nd_uint32_t samples; member in struct:sflow_v6_datagram_t
870 nsamples=GET_BE_U_4(sflow_datagram->samples);
871 ND_PRINT("sFlowv%u, %s agent %s, agent-id %u, seqnum %u, uptime %u, samples %u, length %u",
886 nsamples=GET_BE_U_4(sflow_v6_datagram->samples);
887 ND_PRINT("sFlowv%u, %s agent %s, agent-id %u, seqnum %u, uptime %u, samples %u, length %u",
  /src/external/gpl3/binutils/dist/gprofng/src/
Experiment.h 181 // Returns the number of samples. For use by FilterNumeric
185 return samples->size ();
589 Vector<Sample*> *samples; // Array of Sample pointers member in class:Experiment
  /src/external/gpl3/binutils.old/dist/gprofng/src/
Experiment.h 181 // Returns the number of samples. For use by FilterNumeric
185 return samples->size ();
589 Vector<Sample*> *samples; // Array of Sample pointers member in class:Experiment
  /src/sys/sys/
audioio.h 62 u_int samples; /* number of samples */ member in struct:audio_prinfo
106 u_int samples; /* Total number of bytes transferred */ member in struct:audio_offset
  /src/external/bsd/zstd/dist/tests/
decodecorpus.c 1260 /* allocate space for samples */
1264 BYTE* const samples = malloc(5000*sizeof(BYTE)); local
1265 if (samples == NULL) {
1266 DISPLAY("Error: could not allocate space for samples\n");
1270 /* generate samples */
1278 *(samples + (samplesPos++)) = (BYTE)literalValue;
1303 /* finalize dictionary with random samples */
1306 samples, sampleSizes, numSamples,
1316 free(samples);

Completed in 56 milliseconds

1 2