Home
last modified time | relevance | path

Searched refs:emit (Results 1 – 25 of 58) sorted by relevance

123

/Linux-v4.19/arch/arm64/net/
Dbpf_jit_comp.c74 static inline void emit(const u32 insn, struct jit_ctx *ctx) in emit() function
90 emit(A64_MOVN(is64, reg, (u16)~lo, 0), ctx); in emit_a64_mov_i()
92 emit(A64_MOVN(is64, reg, (u16)~hi, 16), ctx); in emit_a64_mov_i()
94 emit(A64_MOVK(is64, reg, lo, 0), ctx); in emit_a64_mov_i()
97 emit(A64_MOVZ(is64, reg, lo, 0), ctx); in emit_a64_mov_i()
99 emit(A64_MOVK(is64, reg, hi, 16), ctx); in emit_a64_mov_i()
125 emit(A64_MOVN(1, reg, (rev_tmp >> shift) & 0xffff, shift), ctx); in emit_a64_mov_i64()
127 emit(A64_MOVZ(1, reg, (nrm_tmp >> shift) & 0xffff, shift), ctx); in emit_a64_mov_i64()
131 emit(A64_MOVK(1, reg, (nrm_tmp >> shift) & 0xffff, shift), ctx); in emit_a64_mov_i64()
148 emit(A64_MOVZ(1, reg, tmp & 0xffff, shift), ctx); in emit_addr_mov_i64()
[all …]
/Linux-v4.19/arch/arm/net/
Dbpf_jit_32.c236 static inline void emit(u32 inst, struct jit_ctx *ctx) in emit() function
420 emit(ARM_LDR_I(rd, ARM_PC, imm_offset(val, ctx)), ctx); in emit_mov_i_no8m()
422 emit(ARM_MOVW(rd, val & 0xffff), ctx); in emit_mov_i_no8m()
424 emit(ARM_MOVT(rd, val >> 16), ctx); in emit_mov_i_no8m()
433 emit(ARM_MOV_I(rd, imm12), ctx); in emit_mov_i()
441 emit(ARM_BX(tgt_reg), ctx); in emit_bx_r()
443 emit(ARM_MOV_R(ARM_PC, tgt_reg), ctx); in emit_bx_r()
449 emit(ARM_MOV_R(ARM_LR, ARM_PC), ctx); in emit_blx_r()
452 emit(ARM_BLX_R(tgt_reg), ctx); in emit_blx_r()
475 emit(ARM_UDIV(rd, rm, rn), ctx); in emit_udivmod()
[all …]
/Linux-v4.19/arch/sparc/net/
Dbpf_jit_comp_64.c236 static void emit(const u32 insn, struct jit_ctx *ctx) in emit() function
258 emit(SETHI(0, G0), ctx); in emit_nop()
263 emit(OR | RS1(G0) | RS2(from) | RD(to), ctx); in emit_reg_move()
269 emit(SETHI(K, reg), ctx); in emit_set_const()
270 emit(OR_LO(K, reg), ctx); in emit_set_const()
277 emit(SETHI(K, reg), ctx); in emit_set_const_sext()
278 emit(OR_LO(K, reg), ctx); in emit_set_const_sext()
283 emit(SETHI(hbits, reg), ctx); in emit_set_const_sext()
284 emit(XOR | IMMED | RS1(reg) | S13(lbits) | RD(reg), ctx); in emit_set_const_sext()
290 emit(opcode | RS1(dst) | RS2(src) | RD(dst), ctx); in emit_alu()
[all …]
/Linux-v4.19/arch/x86/entry/syscalls/
Dsyscalltbl.sh23 emit() { function
68 emit 64 "$nr" "$entry" "$compat"
72 emit 64 "$nr" "$entry" "$compat"
75 emit "$abi" "$nr" "$entry" "$compat"
/Linux-v4.19/Documentation/input/
Duinput.rst48 void emit(int fd, int type, int code, int val)
95 emit(fd, EV_KEY, KEY_SPACE, 1);
96 emit(fd, EV_SYN, SYN_REPORT, 0);
97 emit(fd, EV_KEY, KEY_SPACE, 0);
98 emit(fd, EV_SYN, SYN_REPORT, 0);
122 /* emit function is identical to of the first example */
159 emit(fd, EV_REL, REL_X, 5);
160 emit(fd, EV_REL, REL_Y, 5);
161 emit(fd, EV_SYN, SYN_REPORT, 0);
191 /* emit function is identical to of the first example */
[all …]
Dnotifier.rst43 emit unicode;
Devent-codes.rst21 emit unchanged values without harm. Userspace may obtain the current state of
101 the REL_X and REL_Y values for one motion, then emit a SYN_REPORT. The next
102 motion will emit more REL_X and REL_Y values and send another SYN_REPORT.
178 be used to emit these codes. Please see multi-touch-protocol.txt for details.
199 may emit coordinates for a touch location.
/Linux-v4.19/scripts/dtc/
Dflattree.c250 static void flatten_tree(struct node *tree, struct emitter *emit, in flatten_tree() argument
261 emit->beginnode(etarget, tree->labels); in flatten_tree()
264 emit->string(etarget, tree->fullpath, 0); in flatten_tree()
266 emit->string(etarget, tree->name, 0); in flatten_tree()
268 emit->align(etarget, sizeof(cell_t)); in flatten_tree()
278 emit->property(etarget, prop->labels); in flatten_tree()
279 emit->cell(etarget, prop->val.len); in flatten_tree()
280 emit->cell(etarget, nameoff); in flatten_tree()
283 emit->align(etarget, 8); in flatten_tree()
285 emit->data(etarget, prop->val); in flatten_tree()
[all …]
/Linux-v4.19/tools/perf/arch/x86/entry/syscalls/
Dsyscalltbl.sh14 emit() { function
32 emit "$nr" "$name"
/Linux-v4.19/drivers/gpu/drm/i915/
Dintel_ringbuffer.c63 space = __intel_ring_space(ring->head, ring->emit, ring->size); in intel_ring_update_space()
1075 ring->emit = tail; in intel_ring_reset()
1774 ring->emit, ring->size)) in wait_for_space()
1797 if (unlikely(bytes > ring->effective_size - ring->emit)) in intel_ring_wait_for_space()
1798 bytes += ring->size - ring->emit; in intel_ring_wait_for_space()
1813 const unsigned int remain_usable = ring->effective_size - ring->emit; in intel_ring_begin()
1826 const int remain_actual = ring->size - ring->emit; in intel_ring_begin()
1869 GEM_BUG_ON(ring->emit + need_wrap > ring->size); in intel_ring_begin()
1873 memset64(ring->vaddr + ring->emit, 0, need_wrap / sizeof(u64)); in intel_ring_begin()
1875 ring->emit = 0; in intel_ring_begin()
[all …]
/Linux-v4.19/scripts/kconfig/
Dqconf.cc410 emit menuChanged(menu); in updateSelection()
415 emit menuSelected(menu); in updateSelection()
715 emit parentSelected(); in keyPressEvent()
730 emit parentSelected(); in keyPressEvent()
739 emit menuSelected(menu); in keyPressEvent()
790 emit parentSelected(); in mouseReleaseEvent()
797 emit menuSelected(menu); in mouseReleaseEvent()
839 emit parentSelected(); in mouseDoubleClickEvent()
847 emit menuSelected(menu); in mouseDoubleClickEvent()
867 emit gotFocus(menu); in focusInEvent()
[all …]
/Linux-v4.19/tools/power/cpupower/utils/helpers/
Dbitmask.c249 static inline int emit(char *buf, int buflen, int rbot, int rtop, int len) in emit() function
288 len = emit(buf, buflen, rbot, rtop, len); in bitmask_displaylist()
/Linux-v4.19/drivers/gpu/drm/nouveau/
Dnv04_fence.c83 fctx->base.emit = nv04_fence_emit; in nv04_fence_context_new()
Dnv50_fence.c50 fctx->base.emit = nv10_fence_emit; in nv50_fence_context_new()
Dnv10_fence.c76 fctx->base.emit = nv10_fence_emit; in nv10_fence_context_new()
Dnouveau_fence.h36 int (*emit)(struct nouveau_fence *); member
Dnv17_fence.c89 fctx->base.emit = nv10_fence_emit; in nv17_fence_context_new()
/Linux-v4.19/Documentation/devicetree/bindings/input/
Dadc-keys.txt19 - linux,code: Keycode to emit.
Dsun4i-lradc-keys.txt14 - linux,code: Keycode to emit.
Dgpio-keys-polled.txt16 - linux,code: Key / Axis code to emit.
Dgpio-keys.txt17 - linux,code: Keycode to emit.
/Linux-v4.19/scripts/kconfig/tests/preprocess/escape/
DKconfig42 # It should not be emit "unterminated reference" error.
/Linux-v4.19/arch/x86/realmode/rm/
DMakefile50 LDFLAGS_realmode.elf := --emit-relocs -T
/Linux-v4.19/tools/testing/selftests/bpf/
DMakefile129 -O2 -target bpf -emit-llvm -c $< -o - | \
/Linux-v4.19/Documentation/devicetree/bindings/iommu/
Darm,smmu-v3.txt40 IDs which a device may emit must be described.

123