| /NextBSD/share/examples/bootforth/ |
| HD | screen.4th | 6 : 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
|
| HD | frames.4th | 62 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
|
| HD | menu.4th | 52 dup emit 94 ." Key " emit ." is not a valid option!"
|
| HD | menuconf.4th | 54 dup emit 104 ." Key " emit ." is not a valid option!"
|
| /NextBSD/sys/boot/forth/ |
| HD | screen.4th | 30 \ 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 …]
|
| HD | frames.4th | 98 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/ |
| HD | misc.c | 183 #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/ |
| HD | x86gas.pl | 47 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);
|
| HD | x86masm.pl | 27 &::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",@_); }
|
| HD | x86nasm.pl | 25 &::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/ |
| HD | flattree.c | 258 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/ |
| HD | MSA.txt | 18 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/ |
| HD | function.h | 108 #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/ |
| HD | demandoc.c | 140 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/ |
| HD | MCLinkerOptimizationHint.h | 126 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/ |
| HD | cmd-doc.tlib | 95 (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/ |
| HD | CTagsEmitter.cpp | 37 void emit(raw_ostream &OS) const { in emit() function in __anon6b2cf1560111::Tag 80 T.emit(OS); in run()
|
| HD | RegisterInfoEmitter.cpp | 284 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/ |
| HD | spuelf.em | 34 /* 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"
|
| HD | ppc32elf.em | 44 /* 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/ |
| HD | CC1Options.td | 157 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/ |
| HD | Makefile | 7 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/ |
| HD | AddressPool.h | 43 void emit(AsmPrinter &Asm, MCSection *AddrSection);
|
| HD | DwarfStringPool.h | 40 void emit(AsmPrinter &Asm, MCSection *StrSection,
|
| /NextBSD/usr.bin/xlint/lint1/ |
| HD | Makefile | 6 init.c emit.c emit1.c inittyp.c
|