| /src/usr.bin/fgen/ | 
| fgen.l | 288 emit-byte		{ ltoken.type = TOK_EMIT_BYTE; ltoken.text = yytext; 315 static int emit(const char *);
 455 		{ "emit",			0x008f, 0, NULL, NULL },
 732 	{ "space",	"bl emit", 0, NULL, NULL },
 1035 	emit(hdrtype);
 1049 	if (need_end0) emit("end0");
 1109 			emit("b(lit)");
 1116 				emit("b(lit)");
 1121 				emit("lxjoin");
 1127 			emit("b(lit)")
 [all...]
 | 
| /src/sys/arch/ia64/stand/common/ | 
| misc.c | 179 #define emit(fmt, args...)	{snprintf(lbuf, sizeof(lbuf), fmt , ## args); pager_output(lbuf);} 183 	emit("%08lx  ", (long) line);
 187 		emit("%02x ", *(u_int8_t *)(line + x));
 189 		emit("-- ");
 192 		emit(" ");
 194 	emit(" |");
 200 		emit("%c", c);
 202 		emit(" ");
 205 	emit("|\n");
 
 | 
| /src/sys/external/bsd/drm2/dist/drm/i915/gt/ | 
| intel_ring.c | 23 	space = __intel_ring_space(ring->head, ring->emit, ring->size); 66 	intel_ring_reset(ring, ring->emit);
 83 	ring->emit = tail;
 202 						ring->emit, ring->size))
 225 	const unsigned int remain_usable = ring->effective_size - ring->emit;
 238 		const int remain_actual = ring->size - ring->emit;
 283 		GEM_BUG_ON(ring->emit + need_wrap > ring->size);
 287 		memset64(ring->vaddr + ring->emit, 0, need_wrap / sizeof(u64));
 289 		ring->emit = 0;
 292 	GEM_BUG_ON(ring->emit > ring->size - bytes)
 [all...]
 | 
| intel_ring_types.h | 46 	u32 emit; /* updated during request construction */  member in struct:intel_ring 
 | 
| intel_ring.h | 53 	GEM_BUG_ON((rq->ring->vaddr + rq->ring->emit) != cs); 
 | 
| intel_engine_cs.c | 1532 		drm_printf(m, "\t\tring->emit:   0x%08x\n", 1533 			   rq->ring->emit);
 
 | 
| /src/usr.bin/xlint/lint2/ | 
| Makefile | 6 SRCS=		main2.c hash.c read.c mem.c chk.c msg.c emit.c emit2.c \ 
 | 
| /src/common/lib/libprop/ | 
| prop_extern.c | 125 			goto emit; 128 			goto emit;
 134 			goto emit;
 138 			goto emit;
 142 			goto emit;
 146 			goto emit;
 150 			goto emit;
 154 			goto emit;
 181 		emit:
 
 | 
| /src/tests/usr.bin/xlint/lint2/ | 
| Makefile | 13 TESTS+=		emit 
 | 
| /src/sys/external/bsd/drm2/dist/drm/nouveau/ | 
| nouveau_fence.h | 38 	int  (*emit)(struct nouveau_fence *);  member in struct:nouveau_fence_chan 
 | 
| nouveau_nv04_fence.c | 88 		fctx->base.emit = nv04_fence_emit; 
 | 
| nouveau_nv10_fence.c | 81 	fctx->base.emit = nv10_fence_emit; 
 | 
| nouveau_nv50_fence.c | 55 	fctx->base.emit = nv10_fence_emit; 
 | 
| nouveau_nv17_fence.c | 94 	fctx->base.emit = nv10_fence_emit; 
 | 
| nouveau_nv84_fence.c | 128 	fctx->base.emit = nv84_fence_emit; 
 | 
| nouveau_fence.c | 238 	ret = fctx->emit(fence); 
 | 
| /src/usr.bin/rpcgen/ | 
| rpc_util.h | 130 void emit(definition *); 
 | 
| rpc_cout.c | 77  * Emit the C-routine for the given definition 80 emit(definition *def)  function in typeref:typename:void
 
 | 
| rpc_main.c | 460 		emit(def); 
 | 
| /src/sys/external/bsd/drm/dist/shared-core/ | 
| radeon_irq.c | 324 	drm_radeon_irq_emit_t *emit = data;  local in function:radeon_irq_emit 338 	if (DRM_COPY_TO_USER(emit->irq_seq, &result, sizeof(int))) {
 
 | 
| i915_irq.c | 340 	drm_i915_irq_emit_t *emit = data;  local in function:i915_irq_emit 352 	if (DRM_COPY_TO_USER(emit->irq_seq, &result, sizeof(int))) {
 
 | 
| /src/common/lib/libc/arch/m68k/gen/ | 
| muldi3.S | 41 |   - GCC does not emit __muldi3() for 68020-40, that have 32 * 32 --> 64 mulul. 
 | 
| /src/usr.bin/xlint/lint1/ | 
| Makefile | 8 		decl.c emit.c emit1.c err.c func.c init.c inittyp.c lex.c \ 
 | 
| /src/sys/external/bsd/drm2/dist/drm/i915/ | 
| i915_request.c | 719 	 * eventually emit this request. This is to guarantee that the 738 	rq->head = rq->ring->emit;
 744 	rq->infix = rq->ring->emit; /* end of header; start of user payload */
 750 	ce->ring->emit = rq->head;
 912 	/* Just emit the first semaphore we see as request space is limited. */
 1236 	 * As we know we will need to emit tracking along the timeline,
 1244 	 * If we consider the case of virtual engine, we must emit a dma-fence
 
 | 
| /src/sys/external/bsd/drm2/dist/drm/i915/gem/ | 
| i915_gem_context.c | 29  * store GPU state, and thus allow GPU clients to not re-emit state (and 998 				int (*emit)(struct i915_request *rq, void *data),
 1042 		if (emit)
 1043 			err = emit(rq, data);
 
 |