Home
last modified time | relevance | path

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

12345678910

/NextBSD/share/examples/bootforth/
HDscreen.4th6 : escc ( -- ) \ emit Esc-[
7 91 27 emit emit
11 escc 72 emit \ Esc-[H
15 escc 74 emit \ Esc-[J
23 escc .# 59 emit .# 72 emit \ Esc-[%d;%dH
27 escc 3 .# .# 109 emit \ Esc-[3%dm
31 escc 4 .# .# 109 emit \ Esc-[4%dm
35 escc 109 emit
HDframes.4th62 h_el @ emit
88 v_el @ emit
104 2dup at-xy lt_el @ emit \ Draw left-top corner
105 2dup 4 pick + at-xy lb_el @ emit \ Draw left bottom corner
106 2dup swap 5 pick + swap at-xy rt_el @ emit \ Draw right top corner
107 2 pick + swap 3 pick + swap at-xy rb_el @ emit
HDmenu.4th52 dup emit
94 ." Key " emit ." is not a valid option!"
HDmenuconf.4th54 dup emit
104 ." Key " emit ." is not a valid option!"
/NextBSD/sys/boot/forth/
HDscreen.4th30 \ emit Esc-[
31 : escc ( -- ) 27 emit [char] [ emit ;
34 : ho ( -- ) escc [char] H emit ;
37 : cld ( -- ) escc [char] J emit ;
43 : at-xy ( x y -- ) escc .# [char] ; emit .# [char] H emit ;
46 : fg ( x -- ) escc 3 .# .# [char] m emit ;
49 : bg ( x -- ) escc 4 .# .# [char] m emit ;
52 : me ( -- ) escc [char] m emit ;
55 : b ( -- ) escc 1 .# [char] m emit ;
58 : -b ( -- ) escc 22 .# [char] m emit ;
[all …]
HDframes.4th98 h_el @ emit
139 v_el @ emit
155 2dup at-xy lt_el @ emit \ Draw left-top corner
156 2dup 4 pick + at-xy lb_el @ emit \ Draw left bottom corner
157 2dup swap 5 pick + swap at-xy rt_el @ emit \ Draw right top corner
158 2 pick + swap 3 pick + swap at-xy rb_el @ emit
/NextBSD/sys/boot/common/
HDmisc.c183 #define emit(fmt, args...) {sprintf(lbuf, fmt , ## args); pager_output(lbuf);} in hexdump() macro
187 emit("%08lx ", (long) line); in hexdump()
191 emit("%02x ", *(u_int8_t *)(line + x)); in hexdump()
193 emit("-- "); in hexdump()
196 emit(" "); in hexdump()
198 emit(" |"); in hexdump()
204 emit("%c", c); in hexdump()
206 emit(" "); in hexdump()
209 emit("|\n"); in hexdump()
/NextBSD/crypto/openssl/crypto/perlasm/
HDx86gas.pl47 if ($#_==0) { &::emit($opcode); }
49 { &::emit($opcode,@arg); }
50 else { &::emit($opcode.$suffix,@arg);}
60 sub ::cpuid { &::emit(".byte\t0x0f,0xa2"); }
61 sub ::rdtsc { &::emit(".byte\t0x0f,0x31"); }
63 sub ::call { &::emit("call",(&::islabel($_[0]) or "$nmdecor$_[0]")); }
67 *::bswap = sub { &::emit("bswap","%$_[0]"); } if (!$::i386);
HDx86masm.pl27 &::emit($opcode,@arg);
33 sub ::call { &::emit("call",(&::islabel($_[0]) or "$nmdecor$_[0]")); }
34 sub ::call_ptr { &::emit("call",@_); }
35 sub ::jmp_ptr { &::emit("jmp",@_); }
HDx86nasm.pl25 &::emit($opcode,@_);
31 sub ::call { &::emit("call",(&::islabel($_[0]) or "$nmdecor$_[0]")); }
32 sub ::call_ptr { &::emit("call",@_); }
33 sub ::jmp_ptr { &::emit("jmp",@_); }
/NextBSD/contrib/dtc/
HDflattree.c258 static void flatten_tree(struct node *tree, struct emitter *emit, in flatten_tree() argument
269 emit->beginnode(etarget, tree->labels); in flatten_tree()
272 emit->string(etarget, tree->fullpath, 0); in flatten_tree()
274 emit->string(etarget, tree->name, 0); in flatten_tree()
276 emit->align(etarget, sizeof(cell_t)); in flatten_tree()
286 emit->property(etarget, prop->labels); in flatten_tree()
287 emit->cell(etarget, prop->val.len); in flatten_tree()
288 emit->cell(etarget, nameoff); in flatten_tree()
291 emit->align(etarget, 8); in flatten_tree()
293 emit->data(etarget, prop->val); in flatten_tree()
[all …]
/NextBSD/contrib/llvm/lib/Target/Mips/
HDMSA.txt18 It is not possible to emit bclri.b since andi.b covers exactly the
23 It is not possible to emit vshf.w when the shuffle description is
36 It is not possible to emit ilvl.d, or pckev.d since ilvev.d covers the
40 It is not possible to emit ilvr.d, or pckod.d since ilvod.d covers the
48 It is not possible to emit splati.w since shf.w covers the same cases.
52 On MIPS32, the copy_u.d intrinsic will emit this instruction instead of
66 It is (currently) not possible to emit bmz.v, or bsel.v since bmnz.v is
/NextBSD/contrib/gcc/
HDfunction.h108 #define reg_rtx_no (cfun->emit->x_reg_rtx_no)
109 #define regno_reg_rtx (cfun->emit->x_regno_reg_rtx)
110 #define seq_stack (cfun->emit->sequence_stack)
112 #define REGNO_POINTER_ALIGN(REGNO) (cfun->emit->regno_pointer_align[REGNO])
186 struct emit_status *emit; member
/NextBSD/contrib/mdocml/
HDdemandoc.c140 int emit; in pstring() local
155 emit = isalpha((unsigned char)p[0]) && in pstring()
164 emit = 0; in pstring()
180 if (emit && end - start >= 1) { in pstring()
/NextBSD/contrib/llvm/include/llvm/MC/
HDMCLinkerOptimizationHint.h126 void emit(MachObjectWriter &ObjWriter, const MCAsmLayout &Layout) const { in emit() function
188 void emit(MachObjectWriter &ObjWriter, const MCAsmLayout &Layout) const { in emit() function
190 D.emit(ObjWriter, Layout); in emit()
/NextBSD/contrib/ntp/sntp/ag-tpl/0-old/
HDcmd-doc.tlib95 (emit (string-append ".Sh \"" sect-name "\"\n"))
108 (emit (head-line))
186 (emit (string-substitute (get "sub-text") rep-string (get field-name)))
230 (emit ".Pp\n") :+][+:
250 CASE (emit "\n") sec-type :+][+:
252 (if home-rc-files (emit home-rc-text))
256 (if environ-init (emit environ-text))
315 .\" alt Alternate -- emit no text
317 .\" append invoke the "append" macro to emit additional text
319 .\" invoke the "mk" macro then emit the saved text
[all …]
/NextBSD/contrib/llvm/utils/TableGen/
HDCTagsEmitter.cpp37 void emit(raw_ostream &OS) const { in emit() function in __anon6b2cf1560111::Tag
80 T.emit(OS); in run()
HDRegisterInfoEmitter.cpp284 PSetsSeqs.emit(OS, printInt, "-1"); in EmitRegUnitPressure()
890 DiffSeqs.emit(OS, printDiff16); in runMCDesc()
895 LaneMaskSeqs.emit(OS, printMask, "~0u"); in runMCDesc()
900 SubRegIdxSeqs.emit(OS, printSubRegIndex); in runMCDesc()
916 RegStrings.emit(OS, printChar); in runMCDesc()
991 RegClassStrings.emit(OS, printChar); in runMCDesc()
1162 VTSeqs.emit(OS, printSimpleValueType, "MVT::Other"); in runTargetDesc()
1235 SuperRegIdxSeqs.emit(OS, printSubRegIndex); in runTargetDesc()
/NextBSD/contrib/binutils/ld/emultempl/
HDspuelf.em34 /* Whether to emit symbols for stubs. */
40 /* Whether to emit symbols with stack requirements for each function. */
443 { "emit-stub-syms", no_argument, NULL, OPTION_SPU_STUB_SYMS },
447 { "emit-stack-syms", no_argument, NULL, OPTION_SPU_STACK_SYMS },
454 --emit-stub-syms Add symbols on overlay call stubs.\n\
458 --emit-stack-syms Add __stack_func giving stack needed for each func.\n"
HDppc32elf.em44 /* Whether to emit symbols for stubs. */
191 { "emit-stub-syms", no_argument, NULL, OPTION_STUBSYMS },
200 --emit-stub-syms Label linker stubs with a symbol.\n\
/NextBSD/contrib/llvm/tools/clang/include/clang/Driver/
HDCC1Options.td157 HelpText<"Do not emit code that uses the red zone.">;
177 HelpText<"Instrument the program to emit gcov coverage data when run.">;
291 HelpText<"Set the maximum number of errors to emit before stopping (0 = no limit).">;
401 def emit_html : Flag<["-"], "emit-html">,
415 def emit_module : Flag<["-"], "emit-module">,
417 def emit_pth : Flag<["-"], "emit-pth">,
419 def emit_pch : Flag<["-"], "emit-pch">,
421 def emit_llvm_bc : Flag<["-"], "emit-llvm-bc">,
422 HelpText<"Build ASTs then convert to LLVM, emit .bc file">;
423 def emit_llvm_only : Flag<["-"], "emit-llvm-only">,
[all …]
/NextBSD/usr.bin/xlint/lint2/
HDMakefile7 SRCS= main2.c hash.c read.c mem.c mem2.c chk.c msg.c emit.c emit2.c inittyp.c
/NextBSD/contrib/llvm/lib/CodeGen/AsmPrinter/
HDAddressPool.h43 void emit(AsmPrinter &Asm, MCSection *AddrSection);
HDDwarfStringPool.h40 void emit(AsmPrinter &Asm, MCSection *StrSection,
/NextBSD/usr.bin/xlint/lint1/
HDMakefile6 init.c emit.c emit1.c inittyp.c

12345678910