Home
last modified time | relevance | path

Searched full:rr (Results 1 – 25 of 258) sorted by relevance

1234567891011

/linux/fs/xfs/scrub/
H A Drtrmap_repair.c105 struct xrep_rtrmap *rr; in xrep_setup_rtrmapbt() local
114 rr = kzalloc_obj(struct xrep_rtrmap, XCHK_GFP_FLAGS); in xrep_setup_rtrmapbt()
115 if (!rr) in xrep_setup_rtrmapbt()
118 rr->sc = sc; in xrep_setup_rtrmapbt()
119 sc->buf = rr; in xrep_setup_rtrmapbt()
140 struct xrep_rtrmap *rr, in xrep_rtrmap_stash() argument
154 struct xfs_scrub *sc = rr->sc; in xrep_rtrmap_stash()
161 if (xchk_iscan_aborted(&rr->iscan)) in xrep_rtrmap_stash()
167 mutex_lock(&rr->lock); in xrep_rtrmap_stash()
168 mcur = xfs_rtrmapbt_mem_cursor(sc->sr.rtg, sc->tp, &rr->rtrmap_btree); in xrep_rtrmap_stash()
[all …]
H A Drmap_repair.c166 struct xrep_rmap *rr; in xrep_setup_ag_rmapbt() local
175 rr = kzalloc_obj(struct xrep_rmap, XCHK_GFP_FLAGS); in xrep_setup_ag_rmapbt()
176 if (!rr) in xrep_setup_ag_rmapbt()
179 rr->sc = sc; in xrep_setup_ag_rmapbt()
180 sc->buf = rr; in xrep_setup_ag_rmapbt()
210 struct xrep_rmap *rr, in xrep_rmap_stash() argument
224 struct xfs_scrub *sc = rr->sc; in xrep_rmap_stash()
231 if (xchk_iscan_aborted(&rr->iscan)) in xrep_rmap_stash()
236 mutex_lock(&rr->lock); in xrep_rmap_stash()
237 mcur = xfs_rmapbt_mem_cursor(sc->sa.pag, sc->tp, &rr->rmap_btree); in xrep_rmap_stash()
[all …]
H A Drtrefcount_repair.c160 struct xrep_rtrefc *rr, in xrep_rtrefc_stash() argument
174 if (xchk_should_terminate(rr->sc, &error)) in xrep_rtrefc_stash()
179 error = xrep_rtrefc_check_ext(rr->sc, &irec); in xrep_rtrefc_stash()
183 trace_xrep_refc_found(rtg_group(rr->sc->sr.rtg), &irec); in xrep_rtrefc_stash()
185 return xfarray_append(rr->refcount_records, &irec); in xrep_rtrefc_stash()
191 struct xrep_rtrefc *rr, in xrep_rtrefc_stash_cow() argument
195 return xrep_rtrefc_stash(rr, XFS_REFC_DOMAIN_COW, bno, len, 1); in xrep_rtrefc_stash_cow()
217 struct xrep_rtrefc *rr, in xrep_rtrefc_walk_rmaps() argument
221 struct xfs_btree_cur *cur = rr->sc->sr.rmap_cur; in xrep_rtrefc_walk_rmaps()
235 if (xchk_should_terminate(rr->sc, &error)) in xrep_rtrefc_walk_rmaps()
[all …]
H A Drefcount_repair.c163 struct xrep_refc *rr, in xrep_refc_stash() argument
174 struct xfs_scrub *sc = rr->sc; in xrep_refc_stash()
182 error = xrep_refc_check_ext(rr->sc, &irec); in xrep_refc_stash()
188 return xfarray_append(rr->refcount_records, &irec); in xrep_refc_stash()
194 struct xrep_refc *rr, in xrep_refc_stash_cow() argument
198 return xrep_refc_stash(rr, XFS_REFC_DOMAIN_COW, agbno, len, 1); in xrep_refc_stash_cow()
229 struct xrep_refc *rr, in xrep_refc_walk_rmaps() argument
233 struct xfs_btree_cur *cur = rr->sc->sa.rmap_cur; in xrep_refc_walk_rmaps()
247 if (xchk_should_terminate(rr->sc, &error)) in xrep_refc_walk_rmaps()
265 error = xrep_refc_stash_cow(rr, rmap->rm_startblock, in xrep_refc_walk_rmaps()
[all …]
/linux/lib/crypto/x86/
H A Dsha1-ssse3-and-avx.S127 RR F1,A,B,C,D,E,0
128 RR F1,D,E,A,B,C,2
129 RR F1,B,C,D,E,A,4
130 RR F1,E,A,B,C,D,6
131 RR F1,C,D,E,A,B,8
133 RR F1,A,B,C,D,E,10
134 RR F1,D,E,A,B,C,12
135 RR F1,B,C,D,E,A,14
136 RR F1,E,A,B,C,D,16
137 RR F1,C,D,E,A,B,18
[all …]
/linux/fs/resctrl/
H A Dmonitor.c418 static int __l3_mon_event_count(struct rdtgroup *rdtgrp, struct rmid_read *rr) in __l3_mon_event_count() argument
428 if (!domain_header_is_valid(rr->hdr, RESCTRL_MON_DOMAIN, RDT_RESOURCE_L3)) { in __l3_mon_event_count()
429 rr->err = -EIO; in __l3_mon_event_count()
432 d = container_of(rr->hdr, struct rdt_l3_mon_domain, hdr); in __l3_mon_event_count()
434 if (rr->is_mbm_cntr) { in __l3_mon_event_count()
435 cntr_id = mbm_cntr_get(rr->r, d, rdtgrp, rr->evt->evtid); in __l3_mon_event_count()
437 rr->err = -ENOENT; in __l3_mon_event_count()
442 if (rr->first) { in __l3_mon_event_count()
443 if (rr->is_mbm_cntr) in __l3_mon_event_count()
444 resctrl_arch_reset_cntr(rr->r, d, closid, rmid, cntr_id, rr->evt->evtid); in __l3_mon_event_count()
[all …]
/linux/arch/x86/crypto/
H A Ddes3_ede-asm_64.S483 initial_permutation3(RL, RR);
489 round3(0, RR, RL, load_next_key, __movq);
490 round3(1, RL, RR, load_next_key, __movq);
491 round3(2, RR, RL, load_next_key, __movq);
492 round3(3, RL, RR, load_next_key, __movq);
493 round3(4, RR, RL, load_next_key, __movq);
494 round3(5, RL, RR, load_next_key, __movq);
495 round3(6, RR, RL, load_next_key, __movq);
496 round3(7, RL, RR, load_next_key, __movq);
497 round3(8, RR, RL, load_next_key, __movq);
[all …]
/linux/drivers/gpu/drm/amd/display/dc/inc/hw/
H A Dhw_shared.h345 * RR - Rear Right
362 * RL RR
375 * 0b00110011 - - RR RL - - FR FL
376 * 0b00110111 - - RR RL - LFE FR FL
377 * 0b00111011 - - RR RL FC - FR FL
378 * 0b00111111 - - RR RL FC LFE FR FL
379 * 0b01110011 - RC RR RL - - FR FL
380 * 0b01110111 - RC RR RL - LFE FR FL
381 * 0b01111011 - RC RR RL FC - FR FL
382 * 0b01111111 - RC RR RL FC LFE FR FL
[all …]
/linux/drivers/acpi/
H A Dreboot.c11 static void acpi_pci_reboot(struct acpi_generic_address *rr, u8 reset_value) in acpi_pci_reboot() argument
21 devfn = PCI_DEVFN((rr->address >> 32) & 0xffff, in acpi_pci_reboot()
22 (rr->address >> 16) & 0xffff); in acpi_pci_reboot()
26 (rr->address & 0xffff), reset_value); in acpi_pci_reboot()
29 static inline void acpi_pci_reboot(struct acpi_generic_address *rr, in acpi_pci_reboot() argument
38 struct acpi_generic_address *rr; in acpi_reboot() local
44 rr = &acpi_gbl_FADT.reset_register; in acpi_reboot()
61 switch (rr->space_id) { in acpi_reboot()
63 acpi_pci_reboot(rr, reset_value); in acpi_reboot()
/linux/sound/hda/core/
H A Dhdmi_chmap.c20 * RL RLC RC RRC RR
23 * CEA RL/RR; The SMPTE channel _assignment_ C/LFE is swapped to CEA LFE/FC.
33 RR = (1 << 7), /* Rear Right */ enumerator
49 /* 3 */ "RL/RR",
66 [3] = RL | RR,
90 * surround71 = {FL, FR, RLC, RRC, FC, LFE, RL, RR}
127 { .ca_index = 0x08, .speakers = { 0, 0, RR, RL, 0, 0, FR, FL } },
129 { .ca_index = 0x09, .speakers = { 0, 0, RR, RL, 0, LFE, FR, FL } },
131 { .ca_index = 0x0a, .speakers = { 0, 0, RR, RL, FC, 0, FR, FL } },
133 { .ca_index = 0x0b, .speakers = { 0, 0, RR, RL, FC, LFE, FR, FL } },
[all …]
/linux/fs/gfs2/
H A Drecovery.c58 struct gfs2_revoke_replay *rr = NULL, *iter; in gfs2_revoke_add() local
62 rr = iter; in gfs2_revoke_add()
67 if (rr) { in gfs2_revoke_add()
68 rr->rr_where = where; in gfs2_revoke_add()
72 rr = kmalloc_obj(struct gfs2_revoke_replay, GFP_NOFS); in gfs2_revoke_add()
73 if (!rr) in gfs2_revoke_add()
76 rr->rr_blkno = blkno; in gfs2_revoke_add()
77 rr->rr_where = where; in gfs2_revoke_add()
78 list_add(&rr->rr_list, head); in gfs2_revoke_add()
85 struct gfs2_revoke_replay *rr = NULL, *iter; in gfs2_revoke_check() local
[all …]
/linux/fs/jffs2/
H A Dxattr.c448 struct jffs2_raw_xref rr; in verify_xattr_ref() local
459 rc = jffs2_flash_read(c, offset, sizeof(rr), &readlen, (char *)&rr); in verify_xattr_ref()
460 if (rc || sizeof(rr) != readlen) { in verify_xattr_ref()
462 rc, sizeof(rr), readlen, offset); in verify_xattr_ref()
466 crc = crc32(0, &rr, sizeof(rr) - 4); in verify_xattr_ref()
467 if (crc != je32_to_cpu(rr.node_crc)) { in verify_xattr_ref()
469 offset, je32_to_cpu(rr.node_crc), crc); in verify_xattr_ref()
472 if (je16_to_cpu(rr.magic) != JFFS2_MAGIC_BITMASK in verify_xattr_ref()
473 || je16_to_cpu(rr.nodetype) != JFFS2_NODETYPE_XREF in verify_xattr_ref()
474 || je32_to_cpu(rr.totlen) != PAD(sizeof(rr))) { in verify_xattr_ref()
[all …]
/linux/tools/build/tests/
H A Drun.sh20 # use -rR to disable make's builtin rules
21 make -rR -C ex V=1 ex.o >> ex.out 2>&1
22 make -rR -C ex V=1 ex.i >> ex.out 2>&1
23 make -rR -C ex V=1 ex.s >> ex.out 2>&1
/linux/sound/soc/codecs/
H A Dhdmi-codec.c31 * RL RLC RC RRC RR
43 RR = BIT(7), /* Rear Right */ enumerator
202 .mask = FL | FR | LFE | FC | RL | RR },
204 .mask = FL | FR | FC | RL | RR },
206 .mask = FL | FR | LFE | RL | RR },
208 .mask = FL | FR | RL | RR },
218 .mask = FL | FR | LFE | FC | RL | RR | RLC | RRC },
220 .mask = FL | FR | LFE | FC | RL | RR | FLC | FRC },
222 .mask = FL | FR | FC | RL | RR | RLC | RRC },
224 .mask = FL | FR | FC | RL | RR | FL
[all...]
/linux/block/partitions/
H A Dacorn.c75 struct riscix_record *rr; in riscix_partition() local
77 rr = read_part_sector(state, first_sect, &sect); in riscix_partition()
78 if (!rr) in riscix_partition()
84 if (rr->magic == RISCIX_MAGIC) { in riscix_partition()
92 if (rr->part[part].one && in riscix_partition()
93 memcmp(rr->part[part].name, "All\0", 4)) { in riscix_partition()
95 le32_to_cpu(rr->part[part].start), in riscix_partition()
96 le32_to_cpu(rr->part[part].length)); in riscix_partition()
98 strlcat(state->pp_buf, rr->part[part].name, PAGE_SIZE); in riscix_partition()
/linux/net/ax25/
H A Dax25_ds_subr.c44 * DB0ACH->DL1BKE <RR C P R0> [DAMA] in ax25_ds_enquiry_response()
47 * DL1BKE->DB0ACH <RR R F R0> in ax25_ds_enquiry_response()
52 * DB0ACH->DL1BKE <RR C P R0> [DAMA] in ax25_ds_enquiry_response()
53 * DL1BKE->DB0ACH <RR R F R0> in ax25_ds_enquiry_response()
59 * this mode anyway (a RR or RNR invokes the retransmission). in ax25_ds_enquiry_response()
/linux/arch/arm/mach-rpc/include/mach/
H A Dacornfb.h48 u_int rr, v, p; in acornfb_vidc20_find_pll() local
51 rr = 41667 * r; in acornfb_vidc20_find_pll()
53 v = (rr + pixclk / 2) / pixclk; in acornfb_vidc20_find_pll()
58 p = (rr + v / 2) / v; in acornfb_vidc20_find_pll()
/linux/drivers/gpu/drm/omapdrm/dss/
H A Ddispc.c417 #define RR(dispc, reg) \ macro
536 /*RR(dispc, IRQENABLE);*/ in dispc_restore_context()
537 /*RR(dispc, CONTROL);*/ in dispc_restore_context()
538 RR(dispc, CONFIG); in dispc_restore_context()
539 RR(dispc, LINE_NUMBER); in dispc_restore_context()
542 RR(dispc, GLOBAL_ALPHA); in dispc_restore_context()
544 RR(dispc, CONFIG2); in dispc_restore_context()
546 RR(dispc, CONFIG3); in dispc_restore_context()
549 RR(dispc, DEFAULT_COLOR(i)); in dispc_restore_context()
550 RR(dispc, TRANS_COLOR(i)); in dispc_restore_context()
[all …]
/linux/drivers/media/i2c/
H A Dtda7432.c108 #define TDA7432_RR 0x06 /* Attenuation RR (Right Rear) */
276 u8 lf, lr, rf, rr; in tda7432_s_ctrl() local
282 rr = rf = -t->balance->val; in tda7432_s_ctrl()
286 rr = rf = TDA7432_ATTEN_0DB; in tda7432_s_ctrl()
290 rr = rf = TDA7432_ATTEN_0DB; in tda7432_s_ctrl()
297 rr |= TDA7432_MUTE; in tda7432_s_ctrl()
303 tda7432_write(sd, TDA7432_RR, rr); in tda7432_s_ctrl()
/linux/drivers/soc/fsl/qbman/
H A Dbman.c164 union bm_mc_result *rr; member
433 mc->rr = portal->addr.ce + BM_CL_RR0; in bm_mc_init()
469 union bm_mc_result *rr = mc->rr + mc->rridx; in bm_mc_commit() local
475 dpaa_invalidate_touch_ro(rr); in bm_mc_commit()
484 union bm_mc_result *rr = mc->rr + mc->rridx; in bm_mc_result() local
492 if (!rr->verb) { in bm_mc_result()
493 dpaa_invalidate_touch_ro(rr); in bm_mc_result()
501 return rr; in bm_mc_result()
/linux/io_uring/
H A Drsrc.c382 struct io_uring_rsrc_register rr; in io_register_rsrc() local
385 if (size != sizeof(rr)) in io_register_rsrc()
388 memset(&rr, 0, sizeof(rr)); in io_register_rsrc()
389 if (copy_from_user(&rr, arg, size)) in io_register_rsrc()
391 if (!rr.nr || rr.resv2) in io_register_rsrc()
393 if (rr.flags & ~IORING_RSRC_REGISTER_SPARSE) in io_register_rsrc()
398 if (rr.flags & IORING_RSRC_REGISTER_SPARSE && rr.data) in io_register_rsrc()
400 return io_sqe_files_register(ctx, u64_to_user_ptr(rr.data), in io_register_rsrc()
401 rr.nr, u64_to_user_ptr(rr.tags)); in io_register_rsrc()
403 if (rr.flags & IORING_RSRC_REGISTER_SPARSE && rr.data) in io_register_rsrc()
[all …]
/linux/drivers/isdn/mISDN/
H A Ddsp_cmx.c1305 int r, rr, t, tt, o_r, o_rr; local
1363 rr = (r + len) & CMX_BUFF_MASK;
1385 while (r != rr && t != tt) {
1395 if (r == rr) {
1412 while (r != rr && t != tt) {
1417 if (r != rr) {
1421 memset(d, dsp_silence, (rr - r) & CMX_BUFF_MASK);
1429 while (r != rr && t != tt) {
1434 while (r != rr) {
1457 o_r = (o_rr - rr + r) & CMX_BUFF_MASK;
[all …]
/linux/drivers/mtd/nand/raw/
H A Dnand_hynix.c290 struct hynix_read_retry *rr = NULL; in hynix_mlc_1xnm_rr_init() local
314 rr = kzalloc(sizeof(*rr) + (nregs * nmodes), GFP_KERNEL); in hynix_mlc_1xnm_rr_init()
315 if (!rr) { in hynix_mlc_1xnm_rr_init()
322 u8 *val = rr->values + (i * nregs); in hynix_mlc_1xnm_rr_init()
336 rr->nregs = nregs; in hynix_mlc_1xnm_rr_init()
337 rr->regs = hynix_1xnm_mlc_read_retry_regs; in hynix_mlc_1xnm_rr_init()
338 hynix->read_retry = rr; in hynix_mlc_1xnm_rr_init()
346 kfree(rr); in hynix_mlc_1xnm_rr_init()
/linux/Documentation/driver-api/media/drivers/ccs/
H A Dccs.rst28 ccs/smiapp-sensor-vv-mmmm-rr.fw (sensor) and
33 ccs/smia-sensor-vv-mmmm-rr.fw (sensor).
36 and rrrr or rr revision number.
/linux/drivers/gpu/drm/bridge/synopsys/
H A Ddw-hdmi-ahb-audio.c101 * 3 RR:5 RL:4 FC:3 = =
102 * 4 RR:5 RL:4 = =
103 * 5 RR:5 = =
110 { 0x33, 0x08 }, /* FL,FR,RL,RR */
111 { 0x37, 0x09 }, /* FL,FR,LFE,RL,RR */
112 { 0x3f, 0x0b }, /* FL,FR,LFE,FC,RL,RR */
113 { 0x7f, 0x0f }, /* FL,FR,LFE,FC,RL,RR,RC */
114 { 0xff, 0x13 }, /* FL,FR,LFE,FC,RL,RR,[FR]RC,[FR]LC */

1234567891011