| /OK3568_Linux_fs/external/xserver/dix/ |
| H A D | dixutils.c | 695 CallbackPtr cbr; in _AddCallback() local 697 cbr = malloc(sizeof(CallbackRec)); in _AddCallback() 698 if (!cbr) in _AddCallback() 700 cbr->proc = callback; in _AddCallback() 701 cbr->data = data; in _AddCallback() 702 cbr->next = (*pcbl)->list; in _AddCallback() 703 cbr->deleted = FALSE; in _AddCallback() 704 (*pcbl)->list = cbr; in _AddCallback() 712 CallbackPtr cbr, pcbr; in _DeleteCallback() local 714 for (pcbr = NULL, cbr = cbl->list; cbr != NULL; pcbr = cbr, cbr = cbr->next) { in _DeleteCallback() [all …]
|
| /OK3568_Linux_fs/u-boot/arch/x86/lib/ |
| H A D | coreboot_table.c | 73 static u32 cb_table_add_entry(struct cb_header *cbh, struct cb_record *cbr) in cb_table_add_entry() argument 75 cbh->table_bytes += cbr->size; in cb_table_add_entry() 78 return (u32)cbr + cbr->size; in cb_table_add_entry() 91 struct cb_record *cbr = (struct cb_record *)(cbh + 1); in cb_table_finalize() local 93 cbh->table_checksum = compute_ip_checksum(cbr, cbh->table_bytes); in cb_table_finalize() 100 struct cb_record *cbr; in write_coreboot_table() local 109 cbr = (struct cb_record *)(cbh + 1); in write_coreboot_table() 117 mem = (struct cb_memory *)cbr; in write_coreboot_table() 145 cbr = (struct cb_record *)cb_table_add_entry(cbh, cbr); in write_coreboot_table() 150 fb = (struct cb_framebuffer *)cbr; in write_coreboot_table() [all …]
|
| /OK3568_Linux_fs/kernel/arch/mips/kernel/ |
| H A D | smp-bmips.c | 511 void __iomem *cbr = BMIPS_GET_CBR(); in bmips_set_reset_vec() local 514 __raw_writel(val, cbr + BMIPS_RELO_VECTOR_CONTROL_0); in bmips_set_reset_vec() 518 __raw_writel(val, cbr + BMIPS_RELO_VECTOR_CONTROL_1); in bmips_set_reset_vec() 584 void __iomem __maybe_unused *cbr = BMIPS_GET_CBR(); in bmips_cpu_setup() local 600 cfg = __raw_readl(cbr + BMIPS_RAC_CONFIG); in bmips_cpu_setup() 601 __raw_writel(cfg | 0x100, cbr + BMIPS_RAC_CONFIG); in bmips_cpu_setup() 602 __raw_readl(cbr + BMIPS_RAC_CONFIG); in bmips_cpu_setup() 604 cfg = __raw_readl(cbr + BMIPS_RAC_CONFIG); in bmips_cpu_setup() 605 __raw_writel(cfg | 0xf, cbr + BMIPS_RAC_CONFIG); in bmips_cpu_setup() 606 __raw_readl(cbr + BMIPS_RAC_CONFIG); in bmips_cpu_setup() [all …]
|
| /OK3568_Linux_fs/kernel/arch/mips/bmips/ |
| H A D | dma.c | 69 void __iomem *cbr = BMIPS_GET_CBR(); in arch_sync_dma_for_cpu_all() local 78 cfg = __raw_readl(cbr + BMIPS_RAC_CONFIG); in arch_sync_dma_for_cpu_all() 79 __raw_writel(cfg | 0x100, cbr + BMIPS_RAC_CONFIG); in arch_sync_dma_for_cpu_all() 80 __raw_readl(cbr + BMIPS_RAC_CONFIG); in arch_sync_dma_for_cpu_all()
|
| /OK3568_Linux_fs/kernel/tools/perf/util/intel-pt-decoder/ |
| H A D | intel-pt-decoder.c | 157 unsigned int cbr; member 672 unsigned int cbr; member 710 unsigned int cbr; in intel_pt_calc_cyc_cb() local 827 cbr = pkt_info->packet.payload; in intel_pt_calc_cyc_cb() 828 if (data->cbr && data->cbr != cbr) in intel_pt_calc_cyc_cb() 830 data->cbr = cbr; in intel_pt_calc_cyc_cb() 831 data->cbr_cyc_to_tsc = decoder->max_non_turbo_ratio_fp / cbr; in intel_pt_calc_cyc_cb() 847 if (!data->cbr && decoder->cbr) { in intel_pt_calc_cyc_cb() 848 data->cbr = decoder->cbr; in intel_pt_calc_cyc_cb() 857 if (data->cbr && cyc_to_tsc > data->cbr_cyc_to_tsc && in intel_pt_calc_cyc_cb() [all …]
|
| H A D | intel-pt-decoder.h | 217 uint32_t cbr; member
|
| /OK3568_Linux_fs/kernel/tools/perf/scripts/python/ |
| H A D | intel-pt-events.py | 44 cbr = data[0] 46 p = ((cbr * 1000 / data[2]) + 5) / 10 47 print("%3u freq: %4u MHz (%3u%%)" % (cbr, f, p), end=' ')
|
| H A D | export-to-sqlite.py | 728 def cbr(id, raw_buf): function 730 cbr = data[0] 732 percent = ((cbr * 1000 / data[2]) + 5) / 10 734 cbr_query.addBindValue(str(cbr)) 793 cbr(id, raw_buf)
|
| H A D | export-to-postgresql.py | 1053 def cbr(id, raw_buf): function 1055 cbr = data[0] 1057 percent = ((cbr * 1000 / data[2]) + 5) / 10 1058 value = struct.pack("!hiqiiiiii", 4, 8, id, 4, cbr, 4, int(MHz), 4, int(percent)) 1106 cbr(id, raw_buf)
|
| /OK3568_Linux_fs/kernel/drivers/misc/sgi-gru/ |
| H A D | grumain.c | 775 int ctxnum, ctxnum0, flag = 0, cbr, dsr; in gru_steal_context() local 781 cbr = gts->ts_cbr_au_count; in gru_steal_context() 797 if (check_gru_resources(gru, cbr, dsr, GRU_NUM_CCH)) in gru_steal_context() 837 gru->gs_gid, ctxnum, ngts, cbr, dsr, hweight64(gru->gs_cbr_map), in gru_steal_context()
|
| H A D | grutables.h | 490 #define CBR_BYTES(cbr) ((cbr) * GRU_HANDLE_BYTES * GRU_CBR_AU_SIZE * 2) argument
|
| /OK3568_Linux_fs/kernel/tools/perf/util/ |
| H A D | event.h | 254 u32 cbr : 8, member
|
| H A D | intel-pt.c | 1535 ptq->cbr_seen = ptq->state->cbr; in intel_pt_synth_cbr_sample() 1544 raw.freq = cpu_to_le32(raw.cbr * pt->cbr2khz); in intel_pt_synth_cbr_sample() 2001 if (ptq->state->cbr != ptq->cbr_seen) { in intel_pt_sample()
|
| /OK3568_Linux_fs/kernel/tools/perf/Documentation/ |
| H A D | perf-intel-pt.txt | 900 cbr: cbr: 22 freq: 2189 MHz (200%) 906 "cbr" includes the frequency and the percentage of maximum non-turbo
|
| /OK3568_Linux_fs/kernel/tools/perf/ |
| H A D | builtin-script.c | 1731 len = fprintf(fp, " cbr: %2u freq: %4u MHz ", data->cbr, freq); in perf_sample__fprintf_synth_cbr() 1733 percent = (5 + (1000 * data->cbr) / data->max_nonturbo) / 10; in perf_sample__fprintf_synth_cbr()
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/omapdrm/dss/ |
| H A D | dispc.c | 856 int yr, yg, yb, cbr, cbg, cbb, crr, crg, crb; member 887 dispc_write_reg(dispc, DISPC_OVL_CONV_COEF(plane, 3), CVAL(ct->cbg, ct->cbr)); in dispc_wb_write_color_conv_coef()
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/share/info/ |
| H A D | as.info | 9221 0111KKKKddddKKKK cbr d,n
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/share/info/ |
| H A D | as.info | 9221 0111KKKKddddKKKK cbr d,n
|