/linux-4.4.14/drivers/gpu/drm/i915/ |
D | intel_crt.c | 71 struct intel_crt *crt = intel_encoder_to_crt(encoder); in intel_crt_get_hw_state() local 79 tmp = I915_READ(crt->adpa_reg); in intel_crt_get_hw_state() 95 struct intel_crt *crt = intel_encoder_to_crt(encoder); in intel_crt_get_flags() local 98 tmp = I915_READ(crt->adpa_reg); in intel_crt_get_flags() 147 struct intel_crt *crt = intel_encoder_to_crt(encoder); in intel_crt_set_dpms() local 190 I915_WRITE(crt->adpa_reg, adpa); in intel_crt_set_dpms() 209 struct intel_crt *crt = intel_encoder_to_crt(encoder); in intel_enable_crt() local 211 intel_crt_set_dpms(encoder, crt->connector->base.dpms); in intel_enable_crt() 276 struct intel_crt *crt = intel_attached_crt(connector); in intel_ironlake_crt_detect_hotplug() local 282 if (crt->force_hotplug_required) { in intel_ironlake_crt_detect_hotplug() [all …]
|
D | intel_display.c | 15002 struct drm_connector *crt = NULL; in intel_enable_pipe_a() local 15011 crt = &connector->base; in intel_enable_pipe_a() 15016 if (!crt) in intel_enable_pipe_a() 15019 if (intel_get_load_detect_pipe(crt, NULL, &load_detect_temp, ctx)) in intel_enable_pipe_a() 15020 intel_release_load_detect_pipe(crt, &load_detect_temp, ctx); in intel_enable_pipe_a()
|
/linux-4.4.14/drivers/s390/crypto/ |
D | zcrypt_cca_key.h | 274 static inline int zcrypt_type6_crt_key(struct ica_rsa_modexpo_crt *crt, in zcrypt_type6_crt_key() argument 294 short_len = (crt->inputdatalength + 1) / 2; in zcrypt_type6_crt_key() 297 key_len = 3*long_len + 2*short_len + pad_len + crt->inputdatalength; in zcrypt_type6_crt_key() 320 key->pvt.mod_len = crt->inputdatalength; in zcrypt_type6_crt_key() 324 if (copy_from_user(key->key_parts, crt->np_prime, long_len) || in zcrypt_type6_crt_key() 326 crt->nq_prime, short_len) || in zcrypt_type6_crt_key() 328 crt->bp_key, long_len) || in zcrypt_type6_crt_key() 330 crt->bq_key, short_len) || in zcrypt_type6_crt_key() 332 crt->u_mult_inv, long_len)) in zcrypt_type6_crt_key() 335 0xff, crt->inputdatalength); in zcrypt_type6_crt_key() [all …]
|
D | zcrypt_msgtype50.c | 245 struct ica_rsa_modexpo_crt *crt) in ICACRT_msg_to_type50CRT_msg() argument 250 mod_len = crt->inputdatalength; in ICACRT_msg_to_type50CRT_msg() 306 if (copy_from_user(p, crt->np_prime + MSGTYPE_ADJUSTMENT, short_len) || in ICACRT_msg_to_type50CRT_msg() 307 copy_from_user(q, crt->nq_prime, short_len) || in ICACRT_msg_to_type50CRT_msg() 308 copy_from_user(dp, crt->bp_key + MSGTYPE_ADJUSTMENT, short_len) || in ICACRT_msg_to_type50CRT_msg() 309 copy_from_user(dq, crt->bq_key, short_len) || in ICACRT_msg_to_type50CRT_msg() 310 copy_from_user(u, crt->u_mult_inv + MSGTYPE_ADJUSTMENT, short_len) || in ICACRT_msg_to_type50CRT_msg() 311 copy_from_user(inp, crt->inputdata, mod_len)) in ICACRT_msg_to_type50CRT_msg() 471 struct ica_rsa_modexpo_crt *crt) in zcrypt_cex2a_modexpo_crt() argument 490 rc = ICACRT_msg_to_type50CRT_msg(zdev, &ap_msg, crt); in zcrypt_cex2a_modexpo_crt() [all …]
|
D | zcrypt_api.c | 467 static long zcrypt_rsa_crt(struct ica_rsa_modexpo_crt *crt) in zcrypt_rsa_crt() argument 473 if (crt->outputdatalength < crt->inputdatalength) in zcrypt_rsa_crt() 480 crt->outputdatalength = crt->inputdatalength; in zcrypt_rsa_crt() 488 zdev->min_mod_size > crt->inputdatalength || in zcrypt_rsa_crt() 489 zdev->max_mod_size < crt->inputdatalength) in zcrypt_rsa_crt() 491 if (zdev->short_crt && crt->inputdatalength > 240) { in zcrypt_rsa_crt() 505 if (crt->inputdatalength <= 256) in zcrypt_rsa_crt() 506 len = crt->inputdatalength / 2 - 120; in zcrypt_rsa_crt() 512 if (copy_from_user(&z1, crt->np_prime, len) || in zcrypt_rsa_crt() 513 copy_from_user(&z2, crt->bp_key, len) || in zcrypt_rsa_crt() [all …]
|
D | zcrypt_msgtype6.c | 230 struct ica_rsa_modexpo_crt *crt) in ICACRT_msg_to_type6CRT_msgX() argument 259 msg->length = crt->inputdatalength + 2; in ICACRT_msg_to_type6CRT_msgX() 260 if (copy_from_user(msg->text, crt->inputdata, crt->inputdatalength)) in ICACRT_msg_to_type6CRT_msgX() 264 size = zcrypt_type6_crt_key(crt, msg->text + crt->inputdatalength, 1); in ICACRT_msg_to_type6CRT_msgX() 267 size += sizeof(*msg) + crt->inputdatalength; /* total size of msg */ in ICACRT_msg_to_type6CRT_msgX() 956 struct ica_rsa_modexpo_crt *crt) in zcrypt_msgtype6_modexpo_crt() argument 972 rc = ICACRT_msg_to_type6CRT_msgX(zdev, &ap_msg, crt); in zcrypt_msgtype6_modexpo_crt() 982 crt->outputdata, in zcrypt_msgtype6_modexpo_crt() 983 crt->outputdatalength); in zcrypt_msgtype6_modexpo_crt()
|
/linux-4.4.14/crypto/ |
D | shash.c | 336 struct crypto_ahash *crt = __crypto_ahash_cast(tfm); in crypto_init_shash_ops_async() local 352 crt->init = shash_async_init; in crypto_init_shash_ops_async() 353 crt->update = shash_async_update; in crypto_init_shash_ops_async() 354 crt->final = shash_async_final; in crypto_init_shash_ops_async() 355 crt->finup = shash_async_finup; in crypto_init_shash_ops_async() 356 crt->digest = shash_async_digest; in crypto_init_shash_ops_async() 357 crt->setkey = shash_async_setkey; in crypto_init_shash_ops_async() 359 crt->has_setkey = alg->setkey != shash_no_setkey; in crypto_init_shash_ops_async() 362 crt->export = shash_async_export; in crypto_init_shash_ops_async() 364 crt->import = shash_async_import; in crypto_init_shash_ops_async() [all …]
|
D | ablkcipher.c | 366 struct ablkcipher_tfm *crt = &tfm->crt_ablkcipher; in crypto_init_ablkcipher_ops() local 371 crt->setkey = setkey; in crypto_init_ablkcipher_ops() 372 crt->encrypt = alg->encrypt; in crypto_init_ablkcipher_ops() 373 crt->decrypt = alg->decrypt; in crypto_init_ablkcipher_ops() 375 crt->givencrypt = skcipher_null_givencrypt; in crypto_init_ablkcipher_ops() 376 crt->givdecrypt = skcipher_null_givdecrypt; in crypto_init_ablkcipher_ops() 378 crt->base = __crypto_ablkcipher_cast(tfm); in crypto_init_ablkcipher_ops() 379 crt->ivsize = alg->ivsize; in crypto_init_ablkcipher_ops() 448 struct ablkcipher_tfm *crt = &tfm->crt_ablkcipher; in crypto_init_givcipher_ops() local 453 crt->setkey = tfm->__crt_alg->cra_flags & CRYPTO_ALG_GENIV ? in crypto_init_givcipher_ops() [all …]
|
D | blkcipher.c | 463 struct ablkcipher_tfm *crt = &tfm->crt_ablkcipher; in crypto_init_blkcipher_ops_async() local 466 crt->setkey = async_setkey; in crypto_init_blkcipher_ops_async() 467 crt->encrypt = async_encrypt; in crypto_init_blkcipher_ops_async() 468 crt->decrypt = async_decrypt; in crypto_init_blkcipher_ops_async() 470 crt->givencrypt = skcipher_null_givencrypt; in crypto_init_blkcipher_ops_async() 471 crt->givdecrypt = skcipher_null_givdecrypt; in crypto_init_blkcipher_ops_async() 473 crt->base = __crypto_ablkcipher_cast(tfm); in crypto_init_blkcipher_ops_async() 474 crt->ivsize = alg->ivsize; in crypto_init_blkcipher_ops_async() 481 struct blkcipher_tfm *crt = &tfm->crt_blkcipher; in crypto_init_blkcipher_ops_sync() local 486 crt->setkey = setkey; in crypto_init_blkcipher_ops_sync() [all …]
|
/linux-4.4.14/drivers/staging/lustre/lustre/obdclass/ |
D | cl_page.c | 1150 static enum cl_page_state cl_req_type_state(enum cl_req_type crt) in cl_req_type_state() argument 1152 return crt == CRT_WRITE ? CPS_PAGEOUT : CPS_PAGEIN; in cl_req_type_state() 1156 struct cl_page *pg, enum cl_req_type crt) in cl_page_io_start() argument 1162 cl_page_state_set(env, pg, cl_req_type_state(crt)); in cl_page_io_start() 1173 struct cl_page *pg, enum cl_req_type crt) in cl_page_prep() argument 1179 PINVRNT(env, pg, crt < CRT_NR); in cl_page_prep() 1186 if (crt >= CRT_NR) in cl_page_prep() 1188 result = cl_page_invoke(env, io, pg, CL_PAGE_OP(io[crt].cpo_prep)); in cl_page_prep() 1190 cl_page_io_start(env, pg, crt); in cl_page_prep() 1192 CL_PAGE_HEADER(D_TRACE, env, pg, "%d %d\n", crt, result); in cl_page_prep() [all …]
|
D | cl_io.c | 871 enum cl_req_type crt, struct cl_2queue *queue) in cl_io_submit_rw() argument 876 LINVRNT(crt < ARRAY_SIZE(scan->cis_iop->req_op)); in cl_io_submit_rw() 879 if (scan->cis_iop->req_op[crt].cio_submit == NULL) in cl_io_submit_rw() 881 result = scan->cis_iop->req_op[crt].cio_submit(env, scan, crt, in cl_io_submit_rw() 1377 enum cl_req_type crt, int nr_objects) in cl_req_alloc() argument 1387 req->crq_type = crt; in cl_req_alloc()
|
/linux-4.4.14/drivers/video/fbdev/geode/ |
D | video_gx.c | 302 int blank, hsync, vsync, crt; in gx_blank_display() local 307 blank = 0; hsync = 1; vsync = 1; crt = 1; in gx_blank_display() 310 blank = 1; hsync = 1; vsync = 1; crt = 1; in gx_blank_display() 313 blank = 1; hsync = 1; vsync = 0; crt = 1; in gx_blank_display() 316 blank = 1; hsync = 0; vsync = 1; crt = 1; in gx_blank_display() 319 blank = 1; hsync = 0; vsync = 0; crt = 0; in gx_blank_display() 333 if (crt) in gx_blank_display()
|
D | gx1fb_core.c | 467 module_param_named(crt, crt_option, int, 0444); 468 MODULE_PARM_DESC(crt, "enable CRT output. 0 = off, 1 = on (default)");
|
/linux-4.4.14/include/crypto/ |
D | skcipher.h | 83 struct ablkcipher_tfm *crt = in crypto_skcipher_givencrypt() local 85 return crt->givencrypt(req); in crypto_skcipher_givencrypt() 91 struct ablkcipher_tfm *crt = in crypto_skcipher_givdecrypt() local 93 return crt->givdecrypt(req); in crypto_skcipher_givdecrypt()
|
/linux-4.4.14/drivers/video/fbdev/ |
D | tdfxfb.c | 363 crt_outb(par, i, reg->crt[i]); in do_write_regs() 593 reg.crt[0x09] = 0x80; in tdfxfb_set_par() 641 reg.crt[0x00] = ht - 4; in tdfxfb_set_par() 642 reg.crt[0x01] = hd; in tdfxfb_set_par() 643 reg.crt[0x02] = hbs; in tdfxfb_set_par() 644 reg.crt[0x03] = 0x80 | (hbe & 0x1f); in tdfxfb_set_par() 645 reg.crt[0x04] = hs; in tdfxfb_set_par() 646 reg.crt[0x05] = ((hbe & 0x20) << 2) | (he & 0x1f); in tdfxfb_set_par() 647 reg.crt[0x06] = vt; in tdfxfb_set_par() 648 reg.crt[0x07] = ((vs & 0x200) >> 2) | in tdfxfb_set_par() [all …]
|
D | ps3fb.c | 797 u32 crt; in ps3fb_ioctl() local 799 if (get_user(crt, (u32 __user *) arg)) in ps3fb_ioctl() 802 retval = ps3fb_wait_for_vsync(crt); in ps3fb_ioctl()
|
D | tridentfb.c | 71 static int crt; variable 90 module_param(crt, int, 0); 91 MODULE_PARM_DESC(crt, "Define if CRT is connected"); 905 if (crt || !iscyber(par->chip_id)) in is_flatpanel()
|
/linux-4.4.14/include/linux/ |
D | crypto.h | 868 struct ablkcipher_tfm *crt = crypto_ablkcipher_crt(tfm); in crypto_ablkcipher_setkey() local 870 return crt->setkey(crt->base, key, keylen); in crypto_ablkcipher_setkey() 901 struct ablkcipher_tfm *crt = in crypto_ablkcipher_encrypt() local 903 return crt->encrypt(req); in crypto_ablkcipher_encrypt() 919 struct ablkcipher_tfm *crt = in crypto_ablkcipher_decrypt() local 921 return crt->decrypt(req); in crypto_ablkcipher_decrypt()
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/engine/disp/ |
D | gm107.c | 36 .outp.internal.crt = nv50_dac_output_new,
|
D | gk110.c | 36 .outp.internal.crt = nv50_dac_output_new,
|
D | gk104.c | 36 .outp.internal.crt = nv50_dac_output_new,
|
D | g84.c | 36 .outp.internal.crt = nv50_dac_output_new,
|
D | gm204.c | 36 .outp.internal.crt = nv50_dac_output_new,
|
D | gt200.c | 36 .outp.internal.crt = nv50_dac_output_new,
|
D | g94.c | 36 .outp.internal.crt = nv50_dac_output_new,
|
D | gt215.c | 36 .outp.internal.crt = nv50_dac_output_new,
|
D | priv.h | 14 int (* crt)(struct nvkm_disp *, int index, struct dcb_output *, member
|
D | nv50.h | 57 int (* crt)(struct nvkm_disp *, int index, struct dcb_output *, member
|
D | nv50.c | 47 return disp->func->outp.internal.crt(base, index, dcb, poutp); in nv50_disp_outp_internal_crt_() 133 .outp.internal.crt = nv50_disp_outp_internal_crt_, 824 .outp.internal.crt = nv50_dac_output_new,
|
D | base.c | 328 case DCB_OUTPUT_ANALOG: ctor = outps->crt ; break; in nvkm_disp_ctor()
|
D | gf119.c | 519 .outp.internal.crt = nv50_dac_output_new,
|
/linux-4.4.14/drivers/staging/lustre/lustre/osc/ |
D | osc_page.c | 202 struct osc_page *opg, enum cl_req_type crt) in osc_page_transfer_add() argument 211 list_add(&opg->ops_inflight, &obj->oo_inflight[crt]); in osc_page_transfer_add() 541 enum cl_req_type crt, int brw_flags) in osc_page_submit() argument 547 crt == CRT_WRITE ? CLM_WRITE : CLM_READ, 1)); in osc_page_submit() 554 oap->oap_cmd = crt == CRT_WRITE ? OBD_BRW_WRITE : OBD_BRW_READ; in osc_page_submit() 567 osc_page_transfer_add(env, opg, crt); in osc_page_submit()
|
D | osc_io.c | 100 enum cl_req_type crt, struct cl_2queue *queue) in osc_io_submit() argument 120 CDEBUG(D_CACHE, "%d %d\n", qin->pl_nr, crt); in osc_io_submit() 126 cmd = crt == CRT_WRITE ? OBD_BRW_WRITE : OBD_BRW_READ; in osc_io_submit() 152 result = cl_page_prep(env, io, page, crt); in osc_io_submit() 170 osc_page_submit(env, opg, crt, brw_flags); in osc_io_submit()
|
D | osc_cl_internal.h | 433 enum cl_req_type crt, int brw_flags);
|
D | osc_cache.c | 1290 enum cl_req_type crt; in osc_completion() local 1306 crt = cmd == OBD_BRW_READ ? CRT_READ : CRT_WRITE; in osc_completion() 1326 if (crt == CRT_READ) in osc_completion() 1339 cl_page_completion(env, page, crt, rc); in osc_completion()
|
D | osc_request.c | 1828 enum cl_req_type crt = (cmd & OBD_BRW_WRITE) ? CRT_WRITE : CRT_READ; in osc_build_rpc() local 1889 clerq = cl_req_alloc(env, page, crt, in osc_build_rpc()
|
/linux-4.4.14/drivers/acpi/ |
D | thermal.c | 70 static int crt; variable 71 module_param(crt, int, 0644); 72 MODULE_PARM_DESC(crt, "Disable or lower all critical trip points."); 315 if (crt == -1) { in acpi_thermal_trips_update() 317 } else if (crt > 0) { in acpi_thermal_trips_update() 318 unsigned long crt_k = CELSIUS_TO_DECI_KELVIN(crt); in acpi_thermal_trips_update() 324 crt); in acpi_thermal_trips_update()
|
D | acpi_video.c | 168 u8 crt:1; member 1072 data->flags.crt = 1; in acpi_video_bus_get_one_device() 1095 data->flags.crt = 1; in acpi_video_bus_get_one_device() 1372 if (!video_device->flags.crt) in acpi_video_get_edid()
|
/linux-4.4.14/drivers/video/fbdev/via/ |
D | ioctl.h | 84 unsigned short crt:1; member
|
D | viafbdev.c | 514 u.active_dev.crt = viafb_CRT_ON; in viafb_ioctl()
|
/linux-4.4.14/drivers/staging/lustre/lustre/include/ |
D | cl_object.h | 2118 enum cl_req_type crt, 2845 struct cl_page *pg, enum cl_req_type crt); 2847 struct cl_page *pg, enum cl_req_type crt, int ioret); 2849 enum cl_req_type crt); 2851 struct cl_page *pg, enum cl_req_type crt); 3143 enum cl_req_type crt, int nr_objects);
|
/linux-4.4.14/include/video/ |
D | tdfx.h | 158 unsigned char crt[25]; member
|
/linux-4.4.14/Documentation/devicetree/bindings/pinctrl/ |
D | nvidia,tegra30-pinmux.txt | 89 ao1, ao2, at1, at2, at3, at4, at5, cdev1, cdev2, cec, crt, csus, dap1, 96 blink, cec, clk_12m_out, clk_32k_in, core_pwr_req, cpu_pwr_req, crt,
|
D | nvidia,tegra20-pinmux.txt | 108 ahb_clk, apb_clk, audio_sync, crt, dap1, dap2, dap3, dap4, dap5,
|
/linux-4.4.14/drivers/gpu/drm/nouveau/ |
D | nouveau_bios.h | 151 uint8_t crt, tv, panel; member
|
D | nouveau_bios.c | 1194 bios->legacy.i2c_indices.crt = bios->data[legacy_i2c_offset]; in parse_bmp_structure() 1766 bios->legacy.i2c_indices.crt, 1, 1); in fabricate_dcb_encoder_table()
|
/linux-4.4.14/drivers/video/fbdev/omap2/omapfb/ |
D | omapfb-ioctl.c | 604 u32 crt; in omapfb_ioctl() member 764 if (get_user(p.crt, (__u32 __user *)arg)) { in omapfb_ioctl() 768 if (p.crt != 0) { in omapfb_ioctl()
|
/linux-4.4.14/drivers/video/fbdev/matrox/ |
D | matroxfb_crtc2.c | 446 u_int32_t crt; in matroxfb_dh_ioctl() local 448 if (get_user(crt, (u_int32_t __user *)arg)) in matroxfb_dh_ioctl() 451 if (crt != 0) in matroxfb_dh_ioctl()
|
D | matroxfb_base.c | 900 u_int32_t crt; in matroxfb_ioctl() local 902 if (get_user(crt, (u_int32_t __user *)arg)) in matroxfb_ioctl() 905 return matroxfb_wait_for_sync(minfo, crt); in matroxfb_ioctl()
|
/linux-4.4.14/Documentation/fb/ |
D | tridentfb.txt | 41 crt - assume monitor is present instead of fp
|
/linux-4.4.14/drivers/staging/lustre/lustre/lov/ |
D | lov_io.c | 572 enum cl_req_type crt, struct cl_2queue *queue) in lov_io_submit() argument 599 crt, queue); in lov_io_submit() 642 crt, cl2q); in lov_io_submit()
|
/linux-4.4.14/arch/arm/boot/dts/ |
D | tegra20-colibri-512.dtsi | 38 crt { 40 nvidia,function = "crt";
|
D | tegra20-trimslice.dts | 64 nvidia,function = "crt";
|
D | tegra20-tamonten.dtsi | 60 nvidia,function = "crt";
|
D | tegra20-paz00.dts | 67 nvidia,function = "crt";
|
D | tegra20-whistler.dts | 57 nvidia,function = "crt";
|
D | tegra20-ventana.dts | 73 nvidia,function = "crt";
|
D | tegra20-harmony.dts | 74 nvidia,function = "crt";
|
D | tegra20-seaboard.dts | 74 nvidia,function = "crt";
|
D | tegra30-beaver.dts | 1240 nvidia,function = "crt"; 1247 nvidia,function = "crt";
|
/linux-4.4.14/drivers/staging/lustre/lustre/llite/ |
D | vvp_io.c | 863 enum cl_req_type crt) in vvp_page_sync_io() argument 873 result = cl_io_submit_sync(env, io, crt, queue, 0); in vvp_page_sync_io() 876 if (crt == CRT_READ) in vvp_page_sync_io()
|
D | llite_internal.h | 1342 static inline void cl_stats_tally(struct cl_device *dev, enum cl_req_type crt, in cl_stats_tally() argument 1345 int opc = (crt == CRT_READ) ? LPROC_LL_OSC_READ : in cl_stats_tally()
|
/linux-4.4.14/drivers/crypto/caam/ |
D | caamalg.c | 1460 struct ablkcipher_tfm *crt = &ablkcipher->base.crt_ablkcipher; in ablkcipher_setkey() local 1533 append_seq_load(desc, crt->ivsize, LDST_SRCDST_BYTE_CONTEXT | in ablkcipher_setkey() 1592 append_seq_load(desc, crt->ivsize, LDST_SRCDST_BYTE_CONTEXT | in ablkcipher_setkey() 1656 NFIFOENTRY_PTYPE_RND | (crt->ivsize << NFIFOENTRY_DLEN_SHIFT); in ablkcipher_setkey() 1663 (crt->ivsize << MOVE_LEN_SHIFT) | in ablkcipher_setkey() 1668 append_seq_store(desc, crt->ivsize, in ablkcipher_setkey()
|
/linux-4.4.14/drivers/pinctrl/ |
D | pinctrl-tegra20.c | 1906 FUNCTION(crt), 2205 DRV_PG(crt, 0x8ec),
|
D | pinctrl-tegra30.c | 2031 FUNCTION(crt), 2438 DRV_PINGROUP(crt, 0x8f8, 2, 3, 4, 12, 5, 20, 5, 28, 2, 30, 2),
|
/linux-4.4.14/Documentation/filesystems/caching/ |
D | fscache.txt | 237 crt=N Number of objects created by lookup
|
/linux-4.4.14/Documentation/ |
D | kernel-parameters.txt | 3692 thermal.crt= [HW,ACPI]
|