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

1 2 3 4

  /src/tests/usr.bin/mkdep/
t_mkdep.sh 38 atf_check touch sample.c
40 atf_check mkdep -f sample.d -P some/path/ sample.c
41 atf_check -o ignore grep '^some/path/sample.o:' sample.d
51 atf_check touch sample.c
54 atf_check mkdep -f sample.d sample.c
55 atf_check -o ignore grep '^sample.o:' sample.
    [all...]
  /src/sys/arch/x68k/usr.bin/bellctrl/
Makefile 5 all: bellctrl sample.fm
7 sample.fm: sample_fm.c
8 $(CC) -c -o sample.aout ${.CURDIR}/sample_fm.c
9 strip sample.aout
10 dd bs=1 skip=32 count=52 if=sample.aout of=$@
11 rm sample.aout
17 CLEANFILES+=sample.fm
  /src/share/examples/racoon/
Makefile 10 FILES= psk.txt.sample racoon.conf.sample \
11 racoon.conf.sample-gssapi racoon.conf.sample-inherit \
12 racoon.conf.sample-natt racoon.conf.sample-plainrsa \
  /src/sys/external/bsd/drm2/include/linux/
average.h 50 ewma_##NAME##_add(struct ewma_##NAME *ewma, unsigned long sample) \
55 sample <<= (PREC); \
57 ewma->ewma_state = sample; \
60 ewma->ewma_state = (((state << shift) - state) + sample) >> shift; \
  /src/sys/modules/ath/
Makefile 11 athrate-sample.c
  /src/sys/arch/shark/shark/
profile.c 495 /* now check whether we want this sample.
579 struct profHashEntry *sample; local in function:profEnter
611 first = sample = &table->entries[index];
615 while ( (sample->pc != lr) && (table->hdr.last < table->hdr.tableSize) )
617 if (sample->pc == 0)
620 sample->pc = lr;
624 if (sample->next != 0)
627 prev = sample;
628 sample = &table->entries[sample->next]
694 struct profHashEntry *sample; local in function:displayTable
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/i915/
i915_pmu.c 169 pmu->sample[__I915_SAMPLE_RC6].cur = val;
179 val += pmu->sample[__I915_SAMPLE_RC6].cur;
182 if (val < pmu->sample[__I915_SAMPLE_RC6_LAST_REPORTED].cur)
183 val = pmu->sample[__I915_SAMPLE_RC6_LAST_REPORTED].cur;
185 pmu->sample[__I915_SAMPLE_RC6_LAST_REPORTED].cur = val;
197 pmu->sample[__I915_SAMPLE_RC6].cur = __get_rc6(&i915->gt);
262 add_sample(struct i915_pmu_sample *sample, u32 val)
264 sample->cur += val;
312 add_sample(&pmu->sample[I915_SAMPLE_WAIT], period_ns);
314 add_sample(&pmu->sample[I915_SAMPLE_SEMA], period_ns)
522 u8 sample; local in function:engine_event_init
585 u8 sample = engine_event_sample(event); local in function:__i915_pmu_event_read
679 u8 sample = engine_event_sample(event); local in function:i915_pmu_enable
721 u8 sample = engine_event_sample(event); local in function:i915_pmu_disable
914 enum drm_i915_pmu_engine_sample sample; member in struct:create_event_attributes::__anon6d4915ef0208
    [all...]
i915_pmu.h 97 * @sample: Current and previous (raw) counters for sampling events.
104 struct i915_pmu_sample sample[__I915_NUM_PMU_SAMPLERS]; member in struct:i915_pmu
  /src/usr.sbin/tprof/
tprof_analyze.c 204 tprof_sample_t sample; local in function:tprof_analyze
205 size_t n = fread(&sample, sizeof(sample), 1, f);
216 if (filter_by_pid && (pid_t)sample.s_pid != target_pid) {
219 in_kernel = (sample.s_flags & TPROF_SAMPLE_INKERNEL) != 0;
225 a->addr = (uint64_t)sample.s_pc;
227 a->pid = sample.s_pid;
232 a->lwpid = sample.s_lwpid;
237 a->cpuid = sample.s_cpuid;
251 c = __SHIFTOUT(sample.s_flags, TPROF_SAMPLE_COUNTER_MASK)
    [all...]
  /src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/microchip/
sparx5_nand.dtsi 28 rx-sample-delay-ns = <7>; /* Tune for speed */
  /src/sys/arch/x86/x86/
cpu_rng.c 117 * the CPU has drawn an independent sample from the physical
312 cpu_rng_early_sample(uint64_t *sample)
334 n = cpu_rng_rdseed_rdrand(sample);
336 n = cpu_rng_rdseed(sample);
338 n = cpu_rng_rdrand(sample);
340 *sample = rdtsc();
  /src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/
r8a7742-iwg21d-q7-dbcm-ov5640-single.dtsi 27 pclk-sample = <1>;
socfpga_cyclone5_mcvevk.dts 62 ts,sample-time = <4>;
stm32f429-disco.dts 129 st,sample-time = <4>;
133 /* 8 sample average control */
sun8i-s3-pinecube.dts 73 pclk-sample = <1>; /* Rising */
120 pclk-sample = <1>; /* Rising */
imx53-m53.dtsi 60 st,sample-time = <4>;
rk3288-veyron-sdmmc.dtsi 82 rockchip,default-sample-phase = <90>;
  /src/sys/dev/i2c/
sensirion_voc_algorithm.c 315 VocAlgorithmParams* params, fix16_t sample);
327 fix16_t sample);
333 fix16_t sample);
671 VocAlgorithmParams* params, fix16_t sample) {
676 (sample - params->m_Mean_Variance_Estimator___Sigmoid__X0)));
722 fix16_t sample) {
728 (sample - F16(VocAlgorithm_SIGMOID_X0))));
734 if ((sample >= F16(0.))) {
771 fix16_t sample) {
779 params->m_Adaptive_Lowpass___X1 = sample;
    [all...]
  /src/sys/lib/libkern/
entpool.c 150 /* Enter the sample, stirring as needed. */
172 * Return true if the sample was consumed in its entirety, or true
173 * if the sample was truncated so the caller should arrange to
195 * Truncate the sample and enter it with 1-byte length encoding
423 uint8_t sample[1] = {0xff};
430 entpool_enter(P, sample, 1);
443 entpool_enter(P, sample, 1);
459 entpool_enter(P, sample, 1);
478 entpool_enter(P, sample, 1);
485 if (!entpool_enter_nostir(P, sample, 1)
416 uint8_t sample[1] = {0xff}; local in function:entpool_selftest
    [all...]
  /src/sys/arch/mips/cavium/dev/
octeon_rnm.c 67 * The first sample of each RO always seems to be zero. Further,
89 * more than one sample from each RO could be squeezed in there.
121 #define ENT_DELAY_CLOCK 8 /* cycles for each 64-bit RO sample batch */
166 uint64_t bist_status, sample, expected = UINT64_C(0xd654ff35fadf866b); local in function:octrnm_attach
189 * 81 cycles for it to produce a single sample, and draw the
190 * deterministic sample to test.
198 sample = octrnm_load(sc);
199 if (sample != expected)
201 " expected %016"PRIx64, sample, expected);
229 /* Sample the ring oscillators round-robin. *
    [all...]
  /src/sys/arch/m68k/060sp/dist/
fskeletn.s 70 # simply execute an "rte" as with the sample code below.
84 # The sample routine below simply clears the exception status bit and
102 # The sample routine below simply clears the exception status bit and
121 # The sample routine below simply clears the exception status bit and
140 # The sample routine below simply clears the exception status bit and
159 # The sample routine below simply clears the exception status bit and
178 # The sample routine below simply clears the exception status bit and
196 # The sample routine below clears the exception status bit, clears the NaN
235 # The sample code below enables the FPU, sets the PC field in the exception stack
258 # The sample code below simply executes an "rte"
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvif/
list.h 296 #define __container_of(ptr, sample, member) \
297 (void *)container_of((ptr), typeof(*(sample)), member)
  /src/usr.bin/audio/common/
wav.c 85 * sample header is:
143 u_int *sample, u_int *channels, off_t *datasize)
286 if (sample)
287 *sample = getle32(fmt.sample_rate);
317 * 24-27 sample rate
320 * 34-35 bits per sample
  /src/usr.sbin/bta2dpd/bta2dpd/
sbc_encode.c 377 get_bits(uint8_t *data, int numbits, uint32_t *sample)
396 *sample = (uint32_t)tmp_cache;
400 *sample = (uint32_t)cache;
411 *sample = (uint32_t)tmp_cache;
417 move_bits(uint8_t *data, int numbits, uint32_t sample)
438 cache |= sample & __BITS((uintmax_t)numbits, 0);
450 move_bits_crc(uint8_t *data, int numbits, uint32_t sample)
474 cache |= sample & __BITS((uintmax_t)numbits, 0);
  /src/sys/netinet/
dccp_tcplike.c 166 void tcplike_rtt_sample(struct tcplike_send_ccb *cb, u_int16_t sample)
172 cb->rtt = sample;
178 if (sample >= cb->rtt) {
179 err = sample - cb->rtt;
182 err = cb->rtt - sample;
193 cb->srtt = ( 0.8 * cb->srtt ) + (0.2 * sample);
199 LOSS_DEBUG((LOG_INFO, "RTT Sample: %u , New RTO: %u\n", sample, cb->rto));

Completed in 50 milliseconds

1 2 3 4