Searched refs:cc (Results 76 - 100 of 445) sorted by relevance

1234567891011>>

/linux-master/arch/alpha/kernel/
H A Dtime.c291 validate_cc_value(unsigned long cc)
326 return cc;
330 return cc;
332 if (cc < cpu_hz[index].min - deviation
333 || cc > cpu_hz[index].max + deviation)
336 return cc;
351 int cc, count = 0;
367 cc = rpcc();
371 cc = rpcc() - cc;
286 validate_cc_value(unsigned long cc) argument
346 int cc, count = 0; local
[all...]
H A Dsys_jensen.c148 unsigned int cc;
150 __asm __volatile("rpcc %0" : "=r"(cc));
153 if (cc - last_msg > ((JENSEN_CYCLES_PER_SEC) * 3) ||
155 printk(KERN_CRIT " irq %d count %d cc %u @ %lx\n",
156 irq, count, cc-last_cc, get_irq_regs()->pc);
158 last_msg = cc;
161 last_cc = cc;
/linux-master/drivers/clk/qcom/
H A Dclk-spmi-pmic-div.c186 struct spmi_pmic_div_clk_cc *cc = data; local
189 if (idx < 0 || idx >= cc->nclks) {
191 __func__, clkspec->args[0], cc->nclks);
195 return &cc->clks[idx].hw;
200 struct spmi_pmic_div_clk_cc *cc; local
234 cc = devm_kzalloc(dev, struct_size(cc, clks, nclks), GFP_KERNEL);
235 if (!cc)
237 cc->nclks = nclks;
254 for (i = 0, clkdiv = cc
[all...]
H A Dlpass-gfm-sm8250.c239 struct lpass_gfm *cc; local
246 cc = devm_kzalloc(dev, sizeof(*cc), GFP_KERNEL);
247 if (!cc)
250 cc->base = devm_platform_ioremap_resource(pdev, 0);
251 if (IS_ERR(cc->base))
252 return PTR_ERR(cc->base);
273 gfm->priv = cc;
274 gfm->gfm_mux = cc->base;
/linux-master/arch/s390/lib/
H A Dstring.c32 : "cc", "memory", "0");
46 : "cc", "memory", "0");
97 : "cc", "memory", "0");
144 : "cc", "memory", "0");
225 : "cc", "memory", "0");
236 int cc; local
241 " ipm %[cc]\n"
242 " srl %[cc],28\n"
243 : [cc] "=&d" (cc), [r
264 int cc; local
[all...]
/linux-master/arch/xtensa/include/asm/
H A Dcoprocessor.h101 #define XCHAL_SA_REG(list,cc,abi,type,y,name,z,align,size,...) \
102 __REG ## list (cc, abi, type, name, size, align)
104 #define __REG0(cc,abi,t,name,s,a) __REG0_ ## cc (abi,name)
105 #define __REG1(cc,abi,t,name,s,a) __REG1_ ## cc (name)
106 #define __REG2(cc,abi,type,...) __REG2_ ## type (__VA_ARGS__)
/linux-master/drivers/net/ethernet/amd/xgbe/
H A Dxgbe-ptp.c125 static u64 xgbe_cc_read(const struct cyclecounter *cc) argument
127 struct xgbe_prv_data *pdata = container_of(cc,
219 struct cyclecounter *cc = &pdata->tstamp_cc; local
249 cc->read = xgbe_cc_read;
250 cc->mask = CLOCKSOURCE_MASK(64);
251 cc->mult = 1;
252 cc->shift = 0;
/linux-master/fs/ubifs/
H A Dcompress.c116 err = crypto_comp_compress(compr->cc, in_buf, in_len, out_buf,
179 err = crypto_comp_decompress(compr->cc, in_buf, in_len, out_buf,
200 compr->cc = crypto_alloc_comp(compr->capi_name, 0, 0);
201 if (IS_ERR(compr->cc)) {
203 current->pid, compr->name, PTR_ERR(compr->cc));
204 return PTR_ERR(compr->cc);
219 crypto_free_comp(compr->cc);
/linux-master/arch/s390/kvm/
H A Dpv.c68 int cc; local
73 cc = uv_cmd_nodata(kvm_s390_pv_cpu_get_handle(vcpu), UVC_CMD_DESTROY_SEC_CPU, rc, rrc);
77 WARN_ONCE(cc, "protvirt destroy cpu failed rc %x rrc %x", *rc, *rrc);
80 if (!cc)
97 return cc ? EIO : 0;
107 int cc; local
132 cc = uv_call(0, (u64)&uvcb);
140 if (cc) {
218 int cc; local
223 cc
278 int cc; local
388 int cc; local
427 int cc = 0; local
564 int cc, ret; local
620 int cc = uv_call(0, (u64)&uvcb); local
689 int cc; local
707 int cc; local
760 int cc, ret; local
[all...]
/linux-master/arch/x86/
H A DMakefile16 RETPOLINE_CFLAGS := $(call cc-option,-mindirect-branch=thunk-extern -mindirect-branch-register)
17 RETPOLINE_VDSO_CFLAGS := $(call cc-option,-mindirect-branch=thunk-inline -mindirect-branch-register)
23 RETPOLINE_CFLAGS += $(call cc-option,-mindirect-branch-cs-prefix)
36 ifneq ($(call cc-option, -mpreferred-stack-boundary=4),)
39 else ifneq ($(call cc-option, -mstack-alignment=16),)
49 -mno-mmx -mno-sse $(call cc-option,-fcf-protection=none)
87 KBUILD_CFLAGS += $(call cc-option,-fcf-protection=branch -fno-jump-tables)
90 KBUILD_CFLAGS += $(call cc-option,-fcf-protection=none)
135 KBUILD_CFLAGS += $(call cc-option,-falign-jumps=1)
138 KBUILD_CFLAGS += $(call cc
[all...]
/linux-master/drivers/ptp/
H A Dptp_mock.c29 * 64-bit overflow during the multiplication with cc->mult, given the max "adj"
40 struct cyclecounter cc; member in struct:mock_phc
44 static u64 mock_phc_cc_read(const struct cyclecounter *cc) argument
59 phc->cc.mult = MOCK_PHC_CC_MULT + adj;
83 timecounter_init(&phc->tc, &phc->cc, ns);
140 phc->cc = (struct cyclecounter) {
148 timecounter_init(&phc->tc, &phc->cc, 0);
/linux-master/arch/mips/bcm47xx/
H A Dserial.c57 struct bcma_drv_cc *cc = &(bcm47xx_bus.bcma.bus.drv_cc); local
61 for (i = 0; i < cc->nr_serial_ports &&
65 bcma_port = &(cc->serial_ports[i]);
/linux-master/arch/m68k/fpsp040/
H A Dx_unsupp.S61 | except in the case of fmove, which leaves the cc's intact.
70 andl #0x0FFF40FF,%d1 |clear all but cc's, snan bit, aexcs, and qbyte
/linux-master/kernel/sched/
H A DMakefile5 ccflags-y += $(call cc-disable-warning, unused-but-set-variable)
/linux-master/arch/s390/kernel/
H A Dcpcmd.c33 : "cc");
40 int cc; local
48 " ipm %[cc]\n"
49 " srl %[cc],28\n"
50 : [cc] "=&d" (cc), [ry] "+&d" (ry.pair)
52 : "cc");
53 if (cc)
/linux-master/include/linux/platform_data/
H A Dbrcmfmac.h109 * @cc: firmware country code string.
114 char cc[BRCMFMAC_COUNTRY_BUF_SZ]; member in struct:brcmfmac_pd_cc_entry
/linux-master/tools/virtio/
H A DMakefile16 cc-option = $(call __cc-option, $(CC),$(1))
18 CFLAGS += -g -O2 -Werror -Wno-maybe-uninitialized -Wall -I. -I../include/ -I ../../usr/include/ -Wno-pointer-sign -fno-strict-overflow -fno-strict-aliasing -fno-common -MMD -U_FORTIFY_SOURCE -include ../../include/linux/kconfig.h $(call cc-option,-mfunction-return=thunk) $(call cc-option,-fcf-protection=none) $(call cc-option,-mindirect-branch-register)
/linux-master/sound/soc/qcom/qdsp6/
H A Dq6prm.c218 struct q6prm *cc; local
220 cc = devm_kzalloc(dev, sizeof(*cc), GFP_KERNEL);
221 if (!cc)
224 cc->dev = dev;
225 cc->gdev = gdev;
226 mutex_init(&cc->lock);
227 init_waitqueue_head(&cc->wait);
228 dev_set_drvdata(dev, cc);
/linux-master/drivers/staging/media/imx/
H A Dimx-media-utils.c392 const struct imx_media_pixfmt **cc)
420 if (cc)
421 *cc = lcc;
470 const struct imx_media_pixfmt *cc; local
473 cc = imx_media_find_mbus_format(tryfmt->code, PIXFMT_SEL_ANY);
474 if (!cc)
475 cc = imx_media_find_ipu_format(tryfmt->code,
478 if (cc && cc->cs == IPUV3_COLORSPACE_RGB)
521 const struct imx_media_pixfmt *cc)
390 imx_media_init_mbus_fmt(struct v4l2_mbus_framefmt *mbus, u32 width, u32 height, u32 code, u32 field, const struct imx_media_pixfmt **cc) argument
519 imx_media_mbus_fmt_to_pix_fmt(struct v4l2_pix_format *pix, const struct v4l2_mbus_framefmt *mbus, const struct imx_media_pixfmt *cc) argument
[all...]
/linux-master/arch/mips/
H A DMakefile54 CROSS_COMPILE := $(call cc-cross-prefix, $(tool-archpref)-linux- $(tool-archpref)-linux-gnu- $(tool-archpref)-unknown-linux-gnu-)
60 ifeq ($(call cc-option-yn,-mmcount-ra-address), y)
65 cflags-y += $(call cc-option, -mno-check-zero-division)
112 cflags-$(CONFIG_SB1XXX_CORELIS) += $(call cc-option,-mno-sched-prolog) \
146 cflags-y += $(call cc-option,-Wa$(comma)-mno-fix-loongson3-llsc,)
151 cflags-$(CONFIG_CPU_R3000) += $(call cc-option,-march=r3000,-march=mips1)
152 cflags-$(CONFIG_CPU_R4300) += $(call cc-option,-march=r4300,-march=mips3) -Wa,--trap
153 cflags-$(CONFIG_CPU_R4X00) += $(call cc-option,-march=r4600,-march=mips3) -Wa,--trap
154 cflags-$(CONFIG_CPU_TX49XX) += $(call cc-option,-march=r4600,-march=mips3) -Wa,--trap
163 cflags-$(CONFIG_CPU_P5600) += $(call cc
[all...]
/linux-master/drivers/media/test-drivers/vivid/
H A Dvivid-vbi-gen.c69 static void cc_insert(u8 *cc, u8 ch) argument
75 cc[2 * i] = cc[2 * i + 1] = (ch & (1 << i)) ? 1 : 0;
76 tot += cc[2 * i];
78 cc[14] = cc[15] = !(tot & 1);
88 u8 cc[CC_PREAMBLE_BITS + 2 * 16] = { local
98 cc_insert(cc + CC_PREAMBLE_BITS, data->data[0]);
99 cc_insert(cc + CC_PREAMBLE_BITS + 16, data->data[1]);
101 for (i = 0, bit = 0; bit < sizeof(cc); bi
[all...]
/linux-master/drivers/net/ethernet/freescale/
H A Dfec_ptp.c140 tempval = fep->cc.read(&fep->cc);
167 * is bigger than fep->cc.mask would be a error.
169 val &= fep->cc.mask;
173 fep->next_counter = (val + fep->reload_period) & fep->cc.mask;
192 fep->next_counter = (fep->next_counter + fep->reload_period) & fep->cc.mask;
237 compare_val &= fep->cc.mask;
240 fep->next_counter = (compare_val + fep->reload_period) & fep->cc.mask;
259 fep->next_counter = (fep->next_counter + fep->reload_period) & fep->cc.mask;
277 * @cc
283 fec_ptp_read(const struct cyclecounter *cc) argument
[all...]
/linux-master/arch/x86/math-emu/
H A Dstatus_w.h7 | Australia. E-mail billm@vaxc.cc.monash.edu.au |
52 static inline void setcc(int cc) argument
55 partial_status |= (cc) & (SW_C0 | SW_C1 | SW_C2 | SW_C3);
/linux-master/drivers/usb/host/
H A Dfhci-q.c217 u32 cc = td->status; local
223 cc == USB_TD_RX_DATA_UNDERUN))
224 cc = USB_TD_OK;
234 status_to_error(cc);
249 cc == USB_TD_RX_DATA_UNDERUN) {
251 cc = USB_TD_OK;
253 if (cc != USB_TD_OK) {
255 urb->status = status_to_error(cc);
/linux-master/drivers/net/ethernet/cavium/common/
H A Dcavium_ptp.c212 static u64 cavium_ptp_cc_read(const struct cyclecounter *cc) argument
215 container_of(cc, struct cavium_ptp, cycle_counter);
225 struct cyclecounter *cc; local
250 cc = &clock->cycle_counter;
251 cc->read = cavium_ptp_cc_read;
252 cc->mask = CYCLECOUNTER_MASK(64);
253 cc->mult = 1;
254 cc->shift = 0;

Completed in 191 milliseconds

1234567891011>>