Searched refs:full (Results 1 - 25 of 248) sorted by relevance

12345678910

/linux-master/drivers/gpu/drm/radeon/
H A Drs690.c81 tmp.full = dfixed_const(100);
82 rdev->pm.igp_sideport_mclk.full = dfixed_const(le32_to_cpu(info->info.ulBootUpMemoryClock));
83 rdev->pm.igp_sideport_mclk.full = dfixed_div(rdev->pm.igp_sideport_mclk, tmp);
85 rdev->pm.igp_system_mclk.full = dfixed_const(le16_to_cpu(info->info.usK8MemoryClock));
87 rdev->pm.igp_system_mclk.full = dfixed_const(rdev->clock.default_mclk);
88 rdev->pm.igp_system_mclk.full = dfixed_div(rdev->pm.igp_system_mclk, tmp);
90 rdev->pm.igp_system_mclk.full = dfixed_const(400);
91 rdev->pm.igp_ht_link_clk.full = dfixed_const(le16_to_cpu(info->info.usFSBClock));
92 rdev->pm.igp_ht_link_width.full = dfixed_const(info->info.ucHTLinkWidth);
95 tmp.full
[all...]
H A Drv515.c948 a.full = dfixed_const(100);
949 sclk.full = dfixed_const(selected_sclk);
950 sclk.full = dfixed_div(sclk, a);
952 if (crtc->vsc.full > dfixed_const(2))
953 wm->num_line_pair.full = dfixed_const(2);
955 wm->num_line_pair.full = dfixed_const(1);
957 b.full = dfixed_const(mode->crtc_hdisplay);
958 c.full = dfixed_const(256);
959 a.full = dfixed_div(b, c);
960 request_fifo_depth.full
[all...]
H A Dr100.c3241 min_mem_eff.full = dfixed_const_8(0);
3262 temp_ff.full = dfixed_const(temp);
3263 mem_bw.full = dfixed_mul(mclk_ff, temp_ff);
3265 pix_clk.full = 0;
3266 pix_clk2.full = 0;
3267 peak_disp_bw.full = 0;
3269 temp_ff.full = dfixed_const(1000);
3270 pix_clk.full = dfixed_const(mode1->clock); /* convert to fixed point */
3271 pix_clk.full = dfixed_div(pix_clk, temp_ff);
3272 temp_ff.full
[all...]
/linux-master/scripts/tracing/
H A Dftrace-bisect.sh27 # [old-way] # cat available_filter_functions > ~/full-file
37 # seq `wc -l available_filter_functions | cut -d' ' -f1` > ~/full-file
47 # # ftrace-bisect ~/full-file ~/test-file ~/non-test-file
57 # # mv ~/test-file ~/full-file
62 # # mv ~/non-test-file ~/full-file
69 # # ftrace-bisect ~/full-file ~/test-file ~/non-test-file
94 echo 'usage: ftrace-bisect full-file test-file non-test-file'
98 full=$1
102 x=`cat $full | wc -l`
105 cat $full
[all...]
/linux-master/kernel/trace/
H A Dtrace_seq.c83 if (s->full)
95 s->full = 1;
113 if (s->full)
122 s->full = 1;
143 if (s->full)
153 s->full = 1;
177 if (s->full)
187 s->full = 1;
207 if (s->full)
213 s->full
[all...]
/linux-master/arch/x86/include/asm/
H A Dcmpxchg_64.h24 u128 full; member in union:__u128_halves
32 union __u128_halves o = { .full = (_old), }, \
33 n = { .full = (_new), }; \
41 o.full; \
58 union __u128_halves o = { .full = *(_oldp), }, \
59 n = { .full = (_new), }; \
71 *(_oldp) = o.full; \
/linux-master/drivers/gpu/drm/amd/pm/powerplay/hwmgr/
H A Dppevvmath.h37 * A.full => The full number as it is. Generally not easy to read
42 int full; member in union:_fInt
223 temp.full = (X << SHIFT_AMOUNT);
225 temp.full = 0;
241 temp.full = (X << SHIFT_AMOUNT);
243 temp.full = 0;
280 fValue.full = 0;
290 fValue.full = fValue.full << times_shifte
[all...]
/linux-master/tools/testing/selftests/bpf/benchs/
H A Drun_bench_bpf_hashmap_full_update.sh9 summary=$($RUN_BENCH -p $nr_threads bpf-hashmap-full-update)
/linux-master/drivers/acpi/acpica/
H A Dutmath.c22 u64 full; member in union:uint64_overlay
56 multiplicand_ovl.full = multiplicand;
73 *out_product = product.full;
97 operand_ovl.full = operand;
110 *out_result = operand_ovl.full;
134 operand_ovl.full = operand;
147 *out_result = operand_ovl.full;
272 dividend_ovl.full = dividend;
287 *out_quotient = quotient.full;
334 divisor.full
[all...]
/linux-master/drivers/power/supply/
H A Dapm_power.c40 union power_supply_propval full; member in struct:find_bat_param
57 if (!PSY_PROP(bp->bat, CHARGE_FULL_DESIGN, &bp->full) ||
58 !PSY_PROP(bp->bat, CHARGE_FULL, &bp->full)) {
59 if (bp->full.intval > bp->max_charge) {
61 bp->max_charge = bp->full.intval;
63 } else if (!PSY_PROP(bp->bat, ENERGY_FULL_DESIGN, &bp->full) ||
64 !PSY_PROP(bp->bat, ENERGY_FULL, &bp->full)) {
65 if (bp->full.intval > bp->max_energy) {
67 bp->max_energy = bp->full.intval;
92 &bp.full)) {
119 union power_supply_propval full; local
217 union power_supply_propval empty, full, cur; local
[all...]
/linux-master/arch/microblaze/kernel/cpu/
H A DMakefile13 obj-y += cache.o cpuinfo.o cpuinfo-pvr-full.o cpuinfo-static.o mb.o pvr.o
/linux-master/include/drm/
H A Ddrm_fixed.h32 u32 full; member in union:dfixed
40 #define dfixed_mul(A, B) ((u64)((u64)(A).full * (B).full + 2048) >> 12)
41 #define dfixed_init(A) { .full = dfixed_const((A)) }
42 #define dfixed_init_half(A) { .full = dfixed_const_half((A)) }
43 #define dfixed_trunc(A) ((A).full >> 12)
44 #define dfixed_frac(A) ((A).full & ((1 << 12) - 1))
57 if (A.full > dfixed_const(non_frac))
65 u64 tmp = ((u64)A.full << 13);
67 do_div(tmp, B.full);
[all...]
/linux-master/tools/perf/arch/powerpc/util/
H A Devent.c19 weight.full = *array;
21 data->weight = weight.full;
/linux-master/tools/testing/selftests/splice/
H A Dshort_splice_read.sh94 full=$(cat "$filename")
100 two=$(echo "$full" | grep -m1 . | cut -c-2)
102 # Make sure full splice has the same contents as a standard read.
104 if ! do_splice "$filename" 4096 "$full" "full read" ; then
/linux-master/sound/soc/intel/atom/sst/
H A Dsst_loader.c59 csr.full = sst_shim_read64(sst_drv_ctx->shim, SST_CSR);
61 dev_dbg(sst_drv_ctx->dev, "value:0x%llx\n", csr.full);
63 csr.full |= 0x7;
64 sst_shim_write64(sst_drv_ctx->shim, SST_CSR, csr.full);
65 csr.full = sst_shim_read64(sst_drv_ctx->shim, SST_CSR);
67 dev_dbg(sst_drv_ctx->dev, "value:0x%llx\n", csr.full);
69 csr.full &= ~(0x1);
70 sst_shim_write64(sst_drv_ctx->shim, SST_CSR, csr.full);
72 csr.full = sst_shim_read64(sst_drv_ctx->shim, SST_CSR);
73 dev_dbg(sst_drv_ctx->dev, "value:0x%llx\n", csr.full);
[all...]
H A Dsst_ipc.c126 header.full = sst_shim_read64(sst_drv_ctx->shim, SST_IPCX);
137 header.full = sst_shim_read64(sst_drv_ctx->shim, SST_IPCX);
160 msg->mrfld_header.p.header_high.full);
169 sst_shim_write64(sst_drv_ctx->shim, SST_IPCX, msg->mrfld_header.full);
186 imr.full = sst_shim_read64(sst_drv_ctx->shim, SST_IMRX);
187 isr.full = sst_shim_read64(sst_drv_ctx->shim, SST_ISRX);
191 sst_shim_write64(sst_drv_ctx->shim, SST_ISRX, isr.full);
194 clear_ipc.full = sst_shim_read64(sst_drv_ctx->shim, SST_IPCD);
199 sst_shim_write64(sst_drv_ctx->shim, SST_IPCD, clear_ipc.full);
202 sst_shim_write64(sst_drv_ctx->shim, SST_IMRX, imr.full);
[all...]
/linux-master/drivers/media/platform/ti/vpe/
H A Dcsc.c32 struct quantization full; member in struct:colorspace
55 .full = {
69 .full = {
85 .full = {
99 .full = {
195 coeff = csc_coeffs.y2r.r601.full.coeff;
200 coeff = csc_coeffs.y2r.r709.full.coeff;
205 coeff = csc_coeffs.y2r.r601.full.coeff;
223 coeff = csc_coeffs.r2y.r601.full.coeff;
228 coeff = csc_coeffs.r2y.r709.full
[all...]
/linux-master/net/dccp/
H A Dqpolicy.c66 * @full: indicates that no more packets will be admitted
72 bool (*full) (struct sock *sk); member in struct:dccp_qpolicy_operations
80 .full = qpolicy_simple_full,
86 .full = qpolicy_prio_full,
102 return qpol_table[dccp_sk(sk)->dccps_qpolicy].full(sk);
/linux-master/sound/usb/line6/
H A Dmidibuf.h19 int full; member in struct:midi_buffer
H A Dmidibuf.c35 return (this->pos_read == this->pos_write) && !this->full;
40 return this->full;
45 this->pos_read = this->pos_write = this->full = 0;
117 this->full = 1;
237 this->full = 0;
249 this->full = 0;
/linux-master/tools/testing/selftests/bpf/progs/
H A Dbpf_compiler.h22 #define __pragma_loop_unroll_full DO_PRAGMA_(clang loop unroll(full))
/linux-master/arch/mips/include/asm/
H A Dcmpxchg.h44 " " __SYNC(full, loongson3_war) " \n" \
122 " " __SYNC(full, loongson3_war) " \n" \
131 "2: " __SYNC(full, loongson3_war) " \n" \
249 " " __SYNC(full, loongson3_war) " \n"
285 "2: " __SYNC(full, loongson3_war) " \n"
H A Dfutex.h62 " " __SYNC(full, loongson3_war) " \n" \
178 " " __SYNC(full, loongson3_war) " \n"
186 "3: " __SYNC_ELSE(full, loongson3_war, __WEAK_LLSC_MB) "\n"
/linux-master/include/linux/
H A Dtrace_seq.h27 int full; member in struct:trace_seq
34 s->full = 0;
76 * now full and will not take anymore.
80 return s->full || seq_buf_has_overflowed(&s->seq);
/linux-master/samples/bpf/
H A Dhash_func01.h21 #pragma clang loop unroll(full)

Completed in 816 milliseconds

12345678910