Home
last modified time | relevance | path

Searched refs:j0 (Results 1 – 5 of 5) sorted by relevance

/linux/scripts/coccinelle/api/
H A Dplatform_no_drv_owner.cocci88 position j0;
93 * .owner@j0 = THIS_MODULE,
99 position j0;
104 * .owner@j0 = THIS_MODULE,
110 position j0;
115 * .owner@j0 = THIS_MODULE,
121 position j0;
126 * .owner@j0 = THIS_MODULE,
133 j0 << fix1_context.j0;
137 coccilib.org.print_todo(j0[0], msg)
[all …]
/linux/scripts/coccinelle/iterators/
H A Dfor_each_child.cocci153 position j0, j1;
156 i@j0(es,n,...) {
176 position ruleone_context.j0, ruleone_context.j1;
179 * i@j0(es,n,...) {
191 position j0, j2;
194 i@j0(es,n,...) {
222 position ruletwo_context.j0, ruletwo_context.j2;
225 * i@j0(es,n,...) {
246 position j0, j3;
249 i@j0(es,n,...) {
[all …]
H A Ddevice_node_continue.cocci82 position j0;
85 * of_node_put@j0@p2(n);
90 j0 << t_context.j0;
94 coccilib.org.print_todo(j0[0], msg)
99 j0 << t_context.j0;
103 coccilib.report.print_report(j0[0], msg)
/linux/scripts/coccinelle/tests/
H A Dodd_ptr_err.cocci67 position j0, j1;
70 if (IS_ERR@j0(x) || ...) {
86 position r1_context.j0, r1_context.j1;
89 * if (IS_ERR@j0(x) || ...) {
101 j0 << r1_context.j0;
106 coccilib.org.print_todo(j0[0], msg)
112 j0 << r1_context.j0;
117 coccilib.report.print_report(j0[0], msg)
/linux/drivers/crypto/
H A Datmel-aes.c119 __be32 j0[AES_BLOCK_SIZE / sizeof(u32)]; member
1325 memcpy(ctx->j0, iv, ivsize); in atmel_aes_gcm_start()
1326 ctx->j0[3] = cpu_to_be32(1); in atmel_aes_gcm_start()
1340 NULL, ctx->j0, atmel_aes_gcm_process); in atmel_aes_gcm_start()
1370 __be32 j0_lsw, *j0 = ctx->j0; in atmel_aes_gcm_length() local
1374 j0_lsw = j0[3]; in atmel_aes_gcm_length()
1375 be32_add_cpu(&j0[3], 1); in atmel_aes_gcm_length()
1376 atmel_aes_write_block(dd, AES_IVR(0), j0); in atmel_aes_gcm_length()
1377 j0[3] = j0_lsw; in atmel_aes_gcm_length()
1487 atmel_aes_write_ctrl(dd, false, ctx->j0); in atmel_aes_gcm_tag()