/linux-6.8/crypto/ |
D | rmd160.c | 51 u32 aa, bb, cc, dd, ee, aaa, bbb, ccc, ddd, eee; in rmd160_transform() local 63 ccc = state[2]; in rmd160_transform() 158 ROUND(aaa, bbb, ccc, ddd, eee, F5, KK1, in[5], 8); in rmd160_transform() 159 ROUND(eee, aaa, bbb, ccc, ddd, F5, KK1, in[14], 9); in rmd160_transform() 160 ROUND(ddd, eee, aaa, bbb, ccc, F5, KK1, in[7], 9); in rmd160_transform() 161 ROUND(ccc, ddd, eee, aaa, bbb, F5, KK1, in[0], 11); in rmd160_transform() 162 ROUND(bbb, ccc, ddd, eee, aaa, F5, KK1, in[9], 13); in rmd160_transform() 163 ROUND(aaa, bbb, ccc, ddd, eee, F5, KK1, in[2], 15); in rmd160_transform() 164 ROUND(eee, aaa, bbb, ccc, ddd, F5, KK1, in[11], 15); in rmd160_transform() 165 ROUND(ddd, eee, aaa, bbb, ccc, F5, KK1, in[4], 5); in rmd160_transform() [all …]
|
/linux-6.8/fs/unicode/ |
D | utf8-norm.c | 156 * defined. The CCC of a non-defined code point is 0. 159 * with a non-zero CCC that occur between two characters with 160 * a CCC of 0, or at the begin or end of a string. 161 * The unicode standard guarantees that all CCC values are 164 * Code points with CCC 0 are known as stoppers. 168 * The CCC of a decomposable character is the same as the CCC 172 * These do affect normalization, as they all have CCC 0. 433 u8c->ccc = STOPPER; in utf8ncursor() 454 * Characters are emitted if they match the current CCC in u8c->ccc. 455 * Hitting end-of-string while u8c->ccc == STOPPER means we're done, [all …]
|
D | mkutf8data.c | 151 * defined. The CCC of a non-defined code point is 0. 154 * with a non-zero CCC that occur between two characters with 155 * a CCC of 0, or at the begin or end of a string. 156 * The unicode standard guarantees that all CCC values are 159 * Code points with CCC 0 are known as stoppers. 163 * The CCC of a decomposable character is the same as the CCC 167 * These do affect normalization, as they all have CCC 0. 1341 int ccc; member 1381 if (left->ccc != right->ccc) in nfdi_equal() 1398 if (left->ccc != right->ccc) in nfdicf_equal() [all …]
|
D | utf8n.h | 42 short int ccc; member
|
/linux-6.8/include/linux/i3c/ |
D | ccc.h | 14 /* I3C CCC (Common Command Codes) related definitions */ 56 * struct i3c_ccc_events - payload passed to ENEC/DISEC CCC 60 * Depending on the CCC command, the specific events coming from all devices 69 * struct i3c_ccc_mwl - payload passed to SETMWL/GETMWL CCC 81 * struct i3c_ccc_mrl - payload passed to SETMRL/GETMRL CCC 121 * struct i3c_ccc_defslvs - payload passed to DEFSLVS CCC 150 * struct i3c_ccc_enttm - payload passed to ENTTM CCC 154 * Information passed to the ENTTM CCC to instruct an I3C device to enter a 174 * struct i3c_ccc_getpid - payload passed to GETPID CCC 183 * struct i3c_ccc_getbcr - payload passed to GETBCR CCC [all …]
|
D | master.h | 15 #include <linux/i3c/ccc.h> 326 * dynamic address (RSTDAA CCC), we need to make sure no one is trying 383 * should send an ENTDAA CCC command and then add all devices 388 * @supports_ccc_cmd: should return true if the CCC command is supported, false 391 * all CCC commands are supported. 392 * @send_ccc_cmd: send a CCC command 423 * IRQ) and then send the ENEC CCC command (with the IBI flag set) 426 * @disable_ibi: disable an IBI. First send the DISEC CCC command with the IBI
|
/linux-6.8/Documentation/driver-api/i3c/ |
D | protocol.rst | 121 I3C CCC commands 124 CCC (Common Command Code) commands are meant to be used for anything that is 127 CCC commands contain an 8-bit CCC ID describing the command that is executed. 132 payload is either sent by the master sending the command (write CCC command), 133 or sent by the slave receiving the command (read CCC command). Of course, read 135 Note that, when sending a CCC command to a specific device, the device address 139 from the CCC ID. 141 Note that vendors can use a dedicated range of CCC IDs for their own commands 172 using a broadcast CCC command.
|
/linux-6.8/drivers/i3c/master/mipi-i3c-hci/ |
D | core.c | 193 struct i3c_ccc_cmd *ccc) in i3c_hci_send_ccc_cmd() argument 198 bool prefixed = raw && !!(ccc->id & I3C_CCC_DIRECT); in i3c_hci_send_ccc_cmd() 199 unsigned int nxfers = ccc->ndests + prefixed; in i3c_hci_send_ccc_cmd() 204 ccc->id, ccc->rnw, ccc->ndests, ccc->dests[0].payload.len); in i3c_hci_send_ccc_cmd() 215 ccc->id, true); in i3c_hci_send_ccc_cmd() 220 xfer[i].data = ccc->dests[i].payload.data; in i3c_hci_send_ccc_cmd() 221 xfer[i].data_len = ccc->dests[i].payload.len; in i3c_hci_send_ccc_cmd() 222 xfer[i].rnw = ccc->rnw; in i3c_hci_send_ccc_cmd() 223 ret = hci->cmd->prep_ccc(hci, &xfer[i], ccc->dests[i].addr, in i3c_hci_send_ccc_cmd() 224 ccc->id, raw); in i3c_hci_send_ccc_cmd() [all …]
|
D | ext_caps.c | 38 DBG("raw CCC quirks set"); in hci_extcap_hardware_id() 153 dev_info(&hci->master.dev, "CCC Response Configuration available\n"); in hci_extcap_ccc_resp_conf()
|
D | hci.h | 137 #define HCI_QUIRK_RAW_CCC BIT(1) /* CCC framing must be explicit */
|
/linux-6.8/Documentation/devicetree/bindings/clock/ |
D | microchip,mpfs-ccc.yaml | 4 $id: http://devicetree.org/schemas/clock/microchip,mpfs-ccc.yaml# 20 const: microchip,mpfs-ccc 31 The CCC PLL's have two input clocks. It is required that even if the input 72 compatible = "microchip,mpfs-ccc";
|
/linux-6.8/drivers/power/supply/ |
D | axp20x_battery.c | 617 int ccc = info->constant_charge_current_max_ua; in axp20x_power_probe() local 624 /* Set max to unverified value to be able to set CCC */ in axp20x_power_probe() 625 axp20x_batt->max_ccc = ccc; in axp20x_power_probe() 627 if (ccc <= 0 || axp20x_set_constant_charge_current(axp20x_batt, in axp20x_power_probe() 628 ccc)) { in axp20x_power_probe() 631 ccc = 300000; in axp20x_power_probe() 632 axp20x_batt->max_ccc = ccc; in axp20x_power_probe() 633 axp20x_set_constant_charge_current(axp20x_batt, ccc); in axp20x_power_probe() 638 * Update max CCC to a valid value if battery info is present or set it in axp20x_power_probe()
|
/linux-6.8/drivers/i3c/master/ |
D | dw-i3c-master.c | 681 struct i3c_ccc_cmd *ccc) in dw_i3c_ccc_set() argument 687 if (ccc->id & I3C_CCC_DIRECT) { in dw_i3c_ccc_set() 688 pos = dw_i3c_master_get_addr_pos(master, ccc->dests[0].addr); in dw_i3c_ccc_set() 698 cmd->tx_buf = ccc->dests[0].payload.data; in dw_i3c_ccc_set() 699 cmd->tx_len = ccc->dests[0].payload.len; in dw_i3c_ccc_set() 701 cmd->cmd_hi = COMMAND_PORT_ARG_DATA_LEN(ccc->dests[0].payload.len) | in dw_i3c_ccc_set() 706 COMMAND_PORT_CMD(ccc->id) | in dw_i3c_ccc_set() 716 ccc->err = I3C_ERROR_M2; in dw_i3c_ccc_set() 723 static int dw_i3c_ccc_get(struct dw_i3c_master *master, struct i3c_ccc_cmd *ccc) in dw_i3c_ccc_get() argument 729 pos = dw_i3c_master_get_addr_pos(master, ccc->dests[0].addr); in dw_i3c_ccc_get() [all …]
|
D | svc-i3c-master.c | 1180 /* cmd->xfer is NULL if I2C or CCC transfer */ in svc_i3c_master_start_xfer_locked() 1234 /* No software support for CCC commands targeting more than one slave */ in svc_i3c_master_supports_ccc_cmd() 1239 struct i3c_ccc_cmd *ccc) in svc_i3c_master_send_bdcast_ccc_cmd() argument 1241 unsigned int xfer_len = ccc->dests[0].payload.len + 1; in svc_i3c_master_send_bdcast_ccc_cmd() 1257 buf[0] = ccc->id; in svc_i3c_master_send_bdcast_ccc_cmd() 1258 memcpy(&buf[1], ccc->dests[0].payload.data, ccc->dests[0].payload.len); in svc_i3c_master_send_bdcast_ccc_cmd() 1263 cmd->addr = ccc->dests[0].addr; in svc_i3c_master_send_bdcast_ccc_cmd() 1264 cmd->rnw = ccc->rnw; in svc_i3c_master_send_bdcast_ccc_cmd() 1285 struct i3c_ccc_cmd *ccc) in svc_i3c_master_send_direct_ccc_cmd() argument 1287 unsigned int xfer_len = ccc->dests[0].payload.len; in svc_i3c_master_send_direct_ccc_cmd() [all …]
|
/linux-6.8/drivers/clk/microchip/ |
D | clk-mpfs-ccc.c | 58 * mpfs_ccc_lock prevents anything else from writing to a fabric ccc 204 pll_hw->name = devm_kasprintf(dev, GFP_KERNEL, "ccc%s_pll%u", in mpfs_ccc_register_plls() 216 return dev_err_probe(dev, ret, "failed to register ccc id: %d\n", in mpfs_ccc_register_plls() 267 { .compatible = "microchip,mpfs-ccc", }, 275 .name = "microchip-mpfs-ccc",
|
D | Makefile | 5 obj-$(CONFIG_MCHP_CLK_MPFS) += clk-mpfs-ccc.o
|
/linux-6.8/arch/mips/include/asm/ |
D | pgtable-bits.h | 203 * 64-bit, R1 or earlier: CCC D V G [S H] M A W R P 204 * 32-bit, R1 or earlier: CCC D V G M A W R P 205 * 64-bit, R2 or later: CCC D V G RI/R XI [S H] M A W P 206 * 32-bit, R2 or later: CCC D V G RI/R XI M A W P
|
/linux-6.8/drivers/gpu/drm/armada/ |
D | armada_overlay.c | 354 #define CCC(v) ((v) << 24 | (v) << 16 | (v) << 8) in armada_overlay_set_property() macro 355 drm_to_overlay_state(state)->colorkey_yr = CCC(K2R(val)); in armada_overlay_set_property() 356 drm_to_overlay_state(state)->colorkey_ug = CCC(K2G(val)); in armada_overlay_set_property() 357 drm_to_overlay_state(state)->colorkey_vb = CCC(K2B(val)); in armada_overlay_set_property() 358 #undef CCC in armada_overlay_set_property()
|
/linux-6.8/arch/riscv/boot/dts/microchip/ |
D | mpfs.dtsi | 263 compatible = "microchip,mpfs-ccc"; 271 compatible = "microchip,mpfs-ccc"; 279 compatible = "microchip,mpfs-ccc"; 287 compatible = "microchip,mpfs-ccc";
|
/linux-6.8/drivers/i3c/ |
D | master.c | 69 * normal operations (HDR, SDR transfers or CCC commands that do not change bus 908 * Send a ENTDAA CCC command to start a DAA procedure. 910 * Note that this function only sends the ENTDAA CCC command, all the logic 959 * i3c_master_disec_locked() - send a DISEC CCC command 964 * Send a DISEC CCC command to disable some or all events coming from a 980 * i3c_master_enec_locked() - send an ENEC CCC command 985 * Sends an ENEC CCC command to enable some or all events coming from a 1001 * i3c_master_defslvs_locked() - send a DEFSLVS CCC command 1004 * Send a DEFSLVS CCC command containing all the devices known to the @master. 1219 * while expecting shorter length from this CCC command. in i3c_master_getmxds_locked() [all …]
|
/linux-6.8/fs/smb/client/ |
D | cifsroot.c | 28 char addr[sizeof("aaa.bbb.ccc.ddd")]; in parse_srvaddr()
|
/linux-6.8/Documentation/gpu/amdgpu/display/ |
D | mpo-cursor.svg | 402 sodipodi:nodetypes="ccc" /> 408 sodipodi:nodetypes="ccc" /> 414 sodipodi:nodetypes="ccc" />
|
/linux-6.8/drivers/ata/ |
D | ahci_dwc.c | 233 /* 1ms tick is generated only for the CCC or DevSleep features */ in ahci_dwc_init_timer() 254 dev_info(&dpriv->pdev->dev, "Update CCC/DevSlp timer for Fapp %lu MHz\n", in ahci_dwc_init_timer()
|
/linux-6.8/tools/perf/bench/ |
D | find-bit-bench.c | 46 : "=@ccc" (oldbit) in asm_test_bit()
|
/linux-6.8/samples/kfifo/ |
D | record-example.c | 59 "ccc",
|