Home
last modified time | relevance | path

Searched refs:DEST (Results 1 – 14 of 14) sorted by relevance

/linux-6.1.9/arch/hexagon/include/asm/
Delf.h91 #define CS_COPYREGS(DEST,REGS) \ argument
93 DEST.cs0 = REGS->cs0;\
94 DEST.cs1 = REGS->cs1;\
97 #define CS_COPYREGS(DEST,REGS) argument
100 #define ELF_CORE_COPY_REGS(DEST, REGS) \ argument
102 DEST.r0 = REGS->r00; \
103 DEST.r1 = REGS->r01; \
104 DEST.r2 = REGS->r02; \
105 DEST.r3 = REGS->r03; \
106 DEST.r4 = REGS->r04; \
[all …]
/linux-6.1.9/arch/sparc/include/asm/
Dasm.h10 #define BRANCH32(TYPE, PREDICT, DEST) \ argument
11 TYPE,PREDICT %icc, DEST
12 #define BRANCH32_ANNUL(TYPE, PREDICT, DEST) \ argument
13 TYPE,a,PREDICT %icc, DEST
14 #define BRANCH_REG_ZERO(PREDICT, REG, DEST) \ argument
15 brz,PREDICT REG, DEST
16 #define BRANCH_REG_ZERO_ANNUL(PREDICT, REG, DEST) \ argument
17 brz,a,PREDICT REG, DEST
18 #define BRANCH_REG_NOT_ZERO(PREDICT, REG, DEST) \ argument
19 brnz,PREDICT REG, DEST
[all …]
Dtrap_block.h153 #define TRAP_LOAD_TRAP_BLOCK(DEST, TMP) \ argument
155 sethi %hi(trap_block), DEST; \
157 or DEST, %lo(trap_block), DEST; \
158 add DEST, TMP, DEST; \
161 #define TRAP_LOAD_PGD_PHYS(DEST, TMP) \ argument
162 TRAP_LOAD_TRAP_BLOCK(DEST, TMP) \
163 ldx [DEST + TRAP_PER_CPU_PGD_PADDR], DEST;
166 #define TRAP_LOAD_IRQ_WORK_PA(DEST, TMP) \ argument
167 TRAP_LOAD_TRAP_BLOCK(DEST, TMP) \
168 add DEST, TRAP_PER_CPU_IRQ_WORKLIST_PA, DEST;
[all …]
/linux-6.1.9/arch/sparc/net/
Dbpf_jit_comp_32.c171 #define emit_loadimm(K, DEST) \ argument
175 *prog++ = OR | IMMED | RS1(G0) | S13(K) | RD(DEST); \
177 emit_set_const(K, DEST); \
181 #define emit_loadptr(BASE, STRUCT, FIELD, DEST) \ argument
184 *prog++ = LDPTRI | RS1(BASE) | S13(_off) | RD(DEST); \
187 #define emit_load32(BASE, STRUCT, FIELD, DEST) \ argument
190 *prog++ = LD32I | RS1(BASE) | S13(_off) | RD(DEST); \
193 #define emit_load16(BASE, STRUCT, FIELD, DEST) \ argument
196 *prog++ = LD16I | RS1(BASE) | S13(_off) | RD(DEST); \
199 #define __emit_load8(BASE, STRUCT, FIELD, DEST) \ argument
[all …]
/linux-6.1.9/Documentation/translations/zh_CN/dev-tools/
Dgcov.rst216 DEST=$3
218 if [ -z "$KSRC" ] || [ -z "$KOBJ" ] || [ -z "$DEST" ]; then
227 -perm /u+r,g+r | tar cfz $DEST -P -T -
230 echo "$DEST successfully created, copy to test system and unpack with:"
231 echo " tar xfz $DEST -P"
233 echo "Could not create file $DEST"
247 DEST=$1
250 if [ -z "$DEST" ] ; then
260 tar czf $DEST -C $TEMPDIR sys
263 echo "$DEST successfully created, copy to build system and unpack with:"
[all …]
/linux-6.1.9/arch/alpha/include/asm/
Delf.h114 #define ELF_CORE_COPY_REGS(DEST, REGS) \ argument
115 dump_elf_thread(DEST, REGS, current_thread_info());
120 #define ELF_CORE_COPY_TASK_REGS(TASK, DEST) \ argument
121 dump_elf_task(*(DEST), TASK)
126 #define ELF_CORE_COPY_FPREGS(TASK, DEST) \ argument
127 dump_elf_task_fp(*(DEST), TASK)
/linux-6.1.9/Documentation/dev-tools/
Dgcov.rst226 DEST=$3
228 if [ -z "$KSRC" ] || [ -z "$KOBJ" ] || [ -z "$DEST" ]; then
237 -perm /u+r,g+r | tar cfz $DEST -P -T -
240 echo "$DEST successfully created, copy to test system and unpack with:"
241 echo " tar xfz $DEST -P"
243 echo "Could not create file $DEST"
257 DEST=$1
260 if [ -z "$DEST" ] ; then
270 tar czf $DEST -C $TEMPDIR sys
273 echo "$DEST successfully created, copy to build system and unpack with:"
[all …]
/linux-6.1.9/arch/arm64/crypto/
Dpolyval-ce-core.S193 DEST .req \dest
204 eor DEST.16b, PH.16b, TMP_V.16b
205 .unreq DEST
/linux-6.1.9/arch/x86/math-emu/
Dreg_u_div.S75 #define DEST PARAM3 macro
91 movl DEST,%edi
/linux-6.1.9/drivers/net/ethernet/sis/
Dsis900.h210 OVERRUN = 0x02000000, DEST = 0x00800000, BCAST = 0x01800000, enumerator
/linux-6.1.9/drivers/video/fbdev/
Ddnfb.c92 #define DEST 0x5 macro
/linux-6.1.9/arch/sparc/kernel/
Dsun4v_tlb_miss.S24 #define COMPUTE_TAG_TARGET(DEST, VADDR, CTX, ZERO_CTX_LABEL) \ argument
25 srlx VADDR, 22, DEST; \
/linux-6.1.9/Documentation/networking/
Dila.rst246 ip route add DEST/128 encap ila LOC csum-mode MODE ident-type TYPE via ADDR
248 Destination (DEST) can either be a SIR address (for an ILA host or ingress
/linux-6.1.9/drivers/net/ethernet/huawei/hinic/
Dhinic_hw_api_cmd.c245 cell->desc |= HINIC_API_CMD_DESC_SET(dest, DEST) | in prepare_api_cmd()