| /OK3568_Linux_fs/kernel/tools/perf/util/ |
| H A D | data-convert-bt.c | 140 static __maybe_unused int value_set_##_name(struct ctf_writer *cw, \ 145 struct bt_ctf_field_type *type = cw->data._name; \ 159 value_set_string(struct ctf_writer *cw, struct bt_ctf_event *event, in value_set_string() argument 162 struct bt_ctf_field_type *type = cw->data.string; in value_set_string() 188 get_tracepoint_field_type(struct ctf_writer *cw, struct tep_format_field *field) in get_tracepoint_field_type() argument 193 return cw->data.string; in get_tracepoint_field_type() 198 return cw->data.u64_hex; in get_tracepoint_field_type() 203 return cw->data.s64; in get_tracepoint_field_type() 205 return cw->data.s32; in get_tracepoint_field_type() 209 return cw->data.u64; in get_tracepoint_field_type() [all …]
|
| /OK3568_Linux_fs/external/xserver/composite/ |
| H A D | compalloc.c | 82 CompWindowPtr cw = GetCompWindow(pWin); in compReportDamage() local 88 cw->damaged = TRUE; in compReportDamage() 97 CompWindowPtr cw = GetCompWindow(pWin); in compDestroyDamage() local 99 cw->damage = 0; in compDestroyDamage() 136 CompWindowPtr cw = GetCompWindow(pWin); in compRedirectWindow() local 152 if (cw && update == CompositeRedirectManual) in compRedirectWindow() 153 for (ccw = cw->clients; ccw; ccw = ccw->next) in compRedirectWindow() 170 if (!cw) { in compRedirectWindow() 171 cw = malloc(sizeof(CompWindowRec)); in compRedirectWindow() 172 if (!cw) { in compRedirectWindow() [all …]
|
| H A D | compwindow.c | 151 CompWindowPtr cw = GetCompWindow(pWin); in compCheckRedirect() local 156 (cw != NULL) && (pWin->parent != NULL); in compCheckRedirect() 178 if (cw->update == CompositeRedirectAutomatic) in compCheckRedirect() 303 CompWindowPtr cw = GetCompWindow(pWin); in compClipNotify() local 305 if (cw) { in compClipNotify() 306 if (cw->borderClipX != pWin->drawable.x || in compClipNotify() 307 cw->borderClipY != pWin->drawable.y) { in compClipNotify() 308 RegionTranslate(&cw->borderClip, in compClipNotify() 309 pWin->drawable.x - cw->borderClipX, in compClipNotify() 310 pWin->drawable.y - cw->borderClipY); in compClipNotify() [all …]
|
| H A D | compext.c | 200 CompWindowPtr cw; in ProcCompositeCreateRegionFromBorderClip() local 209 cw = GetCompWindow(pWin); in ProcCompositeCreateRegionFromBorderClip() 210 if (cw) in ProcCompositeCreateRegionFromBorderClip() 211 pBorderClip = &cw->borderClip; in ProcCompositeCreateRegionFromBorderClip() 229 CompWindowPtr cw; in ProcCompositeNameWindowPixmap() local 246 cw = GetCompWindow(pWin); in ProcCompositeNameWindowPixmap() 247 if (!cw) in ProcCompositeNameWindowPixmap() 704 CompWindowPtr cw; in PanoramiXCompositeNameWindowPixmap() local 743 cw = GetCompWindow(pWin); in PanoramiXCompositeNameWindowPixmap() 744 if (!cw) { in PanoramiXCompositeNameWindowPixmap()
|
| /OK3568_Linux_fs/kernel/drivers/media/test-drivers/vivid/ |
| H A D | vivid-cec.c | 26 struct vivid_cec_work *cw = in vivid_cec_bus_free_work() local 31 cancel_delayed_work_sync(&cw->work); in vivid_cec_bus_free_work() 33 list_del(&cw->list); in vivid_cec_bus_free_work() 34 cec_transmit_attempt_done(cw->adap, CEC_TX_STATUS_LOW_DRIVE); in vivid_cec_bus_free_work() 35 kfree(cw); in vivid_cec_bus_free_work() 125 struct vivid_cec_work *cw = in vivid_cec_xfer_done_worker() local 127 struct vivid_dev *dev = cw->dev; in vivid_cec_xfer_done_worker() 128 struct cec_adapter *adap = cw->adap; in vivid_cec_xfer_done_worker() 129 u8 dest = cec_msg_destination(&cw->msg); in vivid_cec_xfer_done_worker() 133 valid_dest = cec_msg_is_broadcast(&cw->msg); in vivid_cec_xfer_done_worker() [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/ |
| H A D | fpu_control.h | 27 #define _FPU_GETCW(cw) (cw) = 0 argument 28 #define _FPU_SETCW(cw) (void) (cw) argument 58 # define _FPU_GETCW(cw) \ argument 59 __asm__ __volatile__ ("mrc p10, 7, %0, cr1, cr0, 0" : "=r" (cw)) 61 # define _FPU_SETCW(cw) \ argument 62 __asm__ __volatile__ ("mcr p10, 7, %0, cr1, cr0, 0" : : "r" (cw)) 64 # define _FPU_GETCW(cw) \ argument 65 __asm__ __volatile__ ("vmrs %0, fpscr" : "=r" (cw)) 66 # define _FPU_SETCW(cw) \ argument 67 __asm__ __volatile__ ("vmsr fpscr, %0" : : "r" (cw))
|
| /OK3568_Linux_fs/kernel/net/netfilter/ipvs/ |
| H A D | ip_vs_wrr.c | 62 int cw; /* current weight */ member 120 mark->cw = mark->mw; in ip_vs_wrr_init_svc() 147 if (mark->cw > mark->mw || !mark->cw) in ip_vs_wrr_dest_changed() 148 mark->cw = mark->mw; in ip_vs_wrr_dest_changed() 150 mark->cw = (mark->cw / mark->di) * mark->di + 1; in ip_vs_wrr_dest_changed() 181 atomic_read(&dest->weight) >= mark->cw) in ip_vs_wrr_schedule() 186 mark->cw -= mark->di; in ip_vs_wrr_schedule() 187 if (mark->cw <= 0) { in ip_vs_wrr_schedule() 188 mark->cw = mark->mw; in ip_vs_wrr_schedule() 200 last_pass = mark->cw <= mark->di; in ip_vs_wrr_schedule()
|
| /OK3568_Linux_fs/kernel/drivers/md/ |
| H A D | dm-zoned-target.c | 396 static void dmz_handle_bio(struct dmz_target *dmz, struct dm_chunk_work *cw, in dmz_handle_bio() argument 458 static inline void dmz_get_chunk_work(struct dm_chunk_work *cw) in dmz_get_chunk_work() argument 460 refcount_inc(&cw->refcount); in dmz_get_chunk_work() 467 static void dmz_put_chunk_work(struct dm_chunk_work *cw) in dmz_put_chunk_work() argument 469 if (refcount_dec_and_test(&cw->refcount)) { in dmz_put_chunk_work() 470 WARN_ON(!bio_list_empty(&cw->bio_list)); in dmz_put_chunk_work() 471 radix_tree_delete(&cw->target->chunk_rxtree, cw->chunk); in dmz_put_chunk_work() 472 kfree(cw); in dmz_put_chunk_work() 481 struct dm_chunk_work *cw = container_of(work, struct dm_chunk_work, work); in dmz_chunk_work() local 482 struct dmz_target *dmz = cw->target; in dmz_chunk_work() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/media/pci/ttpci/ |
| H A D | av7110_ca.c | 305 (descr->cw[0]<<8)|descr->cw[1], in dvb_ca_ioctl() 306 (descr->cw[2]<<8)|descr->cw[3], in dvb_ca_ioctl() 307 (descr->cw[4]<<8)|descr->cw[5], in dvb_ca_ioctl() 308 (descr->cw[6]<<8)|descr->cw[7]); in dvb_ca_ioctl()
|
| /OK3568_Linux_fs/kernel/drivers/pps/clients/ |
| H A D | pps_parport.c | 44 unsigned int cw; /* port clear timeout */ member 66 if (dev->cw == 0) in parport_irq() 91 for (i = dev->cw; i; i--) in parport_irq() 105 dev->cw = 0; in parport_irq() 173 device->cw = clear_wait; in parport_attach()
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/ssv6xxx/smac/ |
| H A D | ssv_ht_rc.c | 224 unsigned int cw = HT_CW_MIN; 245 ctime = (t_slot * cw) >> 1; 246 cw = min((cw << 1) | 1, cw_max); 247 ctime += (t_slot * cw) >> 1; 248 cw = min((cw << 1) | 1, cw_max); 252 ctime = (t_slot * cw) >> 1; 253 cw = min((cw << 1) | 1, cw_max);
|
| /OK3568_Linux_fs/kernel/fs/ceph/ |
| H A D | debugfs.c | 228 struct cap_wait *cw; in caps_show() local 261 list_for_each_entry(cw, &mdsc->cap_wait_list, list) { in caps_show() 262 seq_printf(s, "%-13d0x%-17llx%-17s%-17s\n", cw->tgid, cw->ino, in caps_show() 263 ceph_cap_string(cw->need), in caps_show() 264 ceph_cap_string(cw->want)); in caps_show()
|
| /OK3568_Linux_fs/kernel/drivers/infiniband/hw/ocrdma/ |
| H A D | ocrdma_verbs.c | 1888 hdr->cw |= (OCRDMA_FLAG_AH_VLAN_PR << OCRDMA_WQE_FLAGS_SHIFT); in ocrdma_build_ud_hdr() 1945 hdr->cw |= (OCRDMA_TYPE_INLINE << OCRDMA_WQE_TYPE_SHIFT); in ocrdma_build_inline_sges() 1952 hdr->cw |= (OCRDMA_TYPE_LKEY << OCRDMA_WQE_TYPE_SHIFT); in ocrdma_build_inline_sges() 1954 hdr->cw |= ((wqe_size / OCRDMA_WQE_STRIDE) << OCRDMA_WQE_SIZE_SHIFT); in ocrdma_build_inline_sges() 2004 hdr->cw |= ((wqe_size / OCRDMA_WQE_STRIDE) << OCRDMA_WQE_SIZE_SHIFT); in ocrdma_build_read() 2005 hdr->cw |= (OCRDMA_READ << OCRDMA_WQE_OPCODE_SHIFT); in ocrdma_build_read() 2006 hdr->cw |= (OCRDMA_TYPE_LKEY << OCRDMA_WQE_TYPE_SHIFT); in ocrdma_build_read() 2038 hdr->cw |= (OCRDMA_FR_MR << OCRDMA_WQE_OPCODE_SHIFT); in ocrdma_build_reg() 2039 hdr->cw |= ((wqe_size / OCRDMA_WQE_STRIDE) << OCRDMA_WQE_SIZE_SHIFT); in ocrdma_build_reg() 2117 hdr->cw = 0; in ocrdma_post_send() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/media/usb/gspca/ |
| H A D | w996Xcf.c | 398 int start_cropx, start_cropy, x, y, fw, fh, cw, ch, in w9968cf_set_crop_window() local 436 cw = (fw >= fh) ? max_width : SC(sd->gspca_dev.pixfmt.width) / fh; in w9968cf_set_crop_window() 442 x = (max_width - cw) / 2; in w9968cf_set_crop_window() 447 reg_w(sd, 0x12, start_cropx + x + cw); in w9968cf_set_crop_window()
|
| /OK3568_Linux_fs/kernel/drivers/mtd/nand/raw/ |
| H A D | qcom_nandc.c | 1587 u8 *data_buf, u8 *oob_buf, int page, int cw) in qcom_nandc_read_cw_raw() argument 1599 set_address(host, host->cw_size * cw, page); in qcom_nandc_read_cw_raw() 1606 if (cw == (ecc->steps - 1)) { in qcom_nandc_read_cw_raw() 1645 dev_err(nandc->dev, "failure to read raw cw %d\n", cw); in qcom_nandc_read_cw_raw() 1676 int cw, data_size, oob_size, ret = 0; in check_for_erased_page() local 1686 for_each_set_bit(cw, &uncorrectable_cws, ecc->steps) { in check_for_erased_page() 1687 if (cw == (ecc->steps - 1)) { in check_for_erased_page() 1696 cw_data_buf = data_buf + (cw * host->cw_data); in check_for_erased_page() 1697 cw_oob_buf = oob_buf + (cw * ecc->bytes); in check_for_erased_page() 1700 cw_oob_buf, page, cw); in check_for_erased_page() [all …]
|
| /OK3568_Linux_fs/kernel/net/mac80211/ |
| H A D | rc80211_minstrel_ht.c | 1009 unsigned int cw = mp->cw_min; in minstrel_calc_retransmit() local 1029 ctime = (t_slot * cw) >> 1; in minstrel_calc_retransmit() 1030 cw = min((cw << 1) | 1, mp->cw_max); in minstrel_calc_retransmit() 1031 ctime += (t_slot * cw) >> 1; in minstrel_calc_retransmit() 1032 cw = min((cw << 1) | 1, mp->cw_max); in minstrel_calc_retransmit() 1046 ctime = (t_slot * cw) >> 1; in minstrel_calc_retransmit() 1047 cw = min((cw << 1) | 1, mp->cw_max); in minstrel_calc_retransmit()
|
| H A D | rc80211_minstrel.c | 490 unsigned int cw = mp->cw_min; in minstrel_rate_init() local 521 tx_time_single += (t_slot * cw) >> 1; in minstrel_rate_init() 522 cw = min((cw << 1) | 1, mp->cw_max); in minstrel_rate_init()
|
| /OK3568_Linux_fs/external/xserver/miext/damage/ |
| H A D | Makefile.am | 5 AM_CPPFLAGS = -I$(srcdir)/../cw
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/linux/dvb/ |
| H A D | ca.h | 132 unsigned char cw[8]; member
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/linux/dvb/ |
| H A D | ca.h | 132 unsigned char cw[8]; member
|
| /OK3568_Linux_fs/kernel/include/uapi/linux/dvb/ |
| H A D | ca.h | 132 unsigned char cw[8]; member
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/poly2tri/common/ |
| H A D | shapes.cpp | 121 Point *cw = t.PointCW(p); in OppositePoint() local 122 return PointCW(*cw); in OppositePoint()
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/ath/ath9k/ |
| H A D | mac.c | 199 u32 cw; in ath9k_hw_set_txq_props() local 221 cw = min(qinfo->tqi_cwmin, 1024U); in ath9k_hw_set_txq_props() 223 while (qi->tqi_cwmin < cw) in ath9k_hw_set_txq_props() 228 cw = min(qinfo->tqi_cwmax, 1024U); in ath9k_hw_set_txq_props() 230 while (qi->tqi_cwmax < cw) in ath9k_hw_set_txq_props()
|
| /OK3568_Linux_fs/kernel/drivers/ata/ |
| H A D | sata_mv.c | 2038 __le16 *cw; in mv_qc_prep() local 2074 cw = &pp->crqb[in_index].ata_cmd[0]; in mv_qc_prep() 2089 mv_crqb_pack_cmd(cw++, tf->hob_nsect, ATA_REG_NSECT, 0); in mv_qc_prep() 2093 mv_crqb_pack_cmd(cw++, tf->hob_feature, ATA_REG_FEATURE, 0); in mv_qc_prep() 2094 mv_crqb_pack_cmd(cw++, tf->feature, ATA_REG_FEATURE, 0); in mv_qc_prep() 2106 mv_crqb_pack_cmd(cw++, tf->nsect, ATA_REG_NSECT, 0); in mv_qc_prep() 2107 mv_crqb_pack_cmd(cw++, tf->hob_lbal, ATA_REG_LBAL, 0); in mv_qc_prep() 2108 mv_crqb_pack_cmd(cw++, tf->lbal, ATA_REG_LBAL, 0); in mv_qc_prep() 2109 mv_crqb_pack_cmd(cw++, tf->hob_lbam, ATA_REG_LBAM, 0); in mv_qc_prep() 2110 mv_crqb_pack_cmd(cw++, tf->lbam, ATA_REG_LBAM, 0); in mv_qc_prep() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/infiniband/hw/mlx4/ |
| H A D | mcg.c | 1121 struct clean_work *cw = container_of(work, struct clean_work, work); in mcg_clean_task() local 1123 _mlx4_ib_mcg_port_cleanup(cw->ctx, cw->destroy_wq); in mcg_clean_task() 1124 cw->ctx->flushing = 0; in mcg_clean_task() 1125 kfree(cw); in mcg_clean_task()
|