Lines Matching refs:ANSI

2496 	ANSI(0x019, 0,		"i",			loop_i);
2497 ANSI(0x01a, 0, "j", loop_j);
2498 ANSI(0x01d, 0, "execute", execute);
2499 ANSI(0x01e, 0, "+", add);
2500 ANSI(0x01f, 0, "-", subtract);
2501 ANSI(0x020, 0, "*", multiply);
2502 ANSI(0x021, 0, "/", divide);
2503 ANSI(0x022, 0, "mod", mod);
2505 ANSI(0x023, 0, "and", and);
2506 ANSI(0x024, 0, "or", or);
2507 ANSI(0x025, 0, "xor", xor);
2508 ANSI(0x026, 0, "invert", invert);
2509 ANSI(0x027, 0, "lshift", lshift);
2510 ANSI(0x028, 0, "rshift", rshift);
2511 ANSI(0x029, 0, ">>a", rshifta);
2512 ANSI(0x02a, 0, "/mod", slash_mod);
2513 ANSI(0x02b, 0, "u/mod", uslash_mod);
2514 ANSI(0x02c, 0, "negate", negate);
2515 ANSI(0x02d, 0, "abs", f_abs);
2516 ANSI(0x02e, 0, "min", f_min);
2517 ANSI(0x02f, 0, "max", f_max);
2518 ANSI(0x030, 0, ">r", to_r);
2519 ANSI(0x031, 0, "r>", from_r);
2520 ANSI(0x032, 0, "r@", rfetch);
2521 ANSI(0x033, 0, "exit", f_exit);
2522 ANSI(0x034, 0, "0=", zero_equals);
2523 ANSI(0x035, 0, "0<>", zero_not_equals);
2524 ANSI(0x036, 0, "0<", zero_less);
2525 ANSI(0x037, 0, "0<=", zero_less_equals);
2526 ANSI(0x038, 0, "0>", zero_greater);
2527 ANSI(0x039, 0, "0>=", zero_greater_equals);
2528 ANSI(0x03a, 0, "<", less);
2529 ANSI(0x03b, 0, ">", greater);
2530 ANSI(0x03c, 0, "=", equals);
2531 ANSI(0x03d, 0, "<>", not_equals);
2532 ANSI(0x03e, 0, "u>", unsign_greater);
2533 ANSI(0x03f, 0, "u<=", unsign_less_equals);
2534 ANSI(0x040, 0, "u<", unsign_less);
2535 ANSI(0x041, 0, "u>=", unsign_greater_equals);
2536 ANSI(0x042, 0, ">=", greater_equals);
2537 ANSI(0x043, 0, "<=", less_equals);
2538 ANSI(0x044, 0, "between", between);
2539 ANSI(0x045, 0, "within", within);
2540 ANSI(0x046, 0, "drop", drop);
2541 ANSI(0x047, 0, "dup", f_dup);
2542 ANSI(0x048, 0, "over", over);
2543 ANSI(0x049, 0, "swap", swap);
2544 ANSI(0x04a, 0, "rot", rot);
2545 ANSI(0x04b, 0, "-rot", minus_rot);
2546 ANSI(0x04c, 0, "tuck", tuck);
2547 ANSI(0x04d, 0, "nip", nip);
2548 ANSI(0x04e, 0, "pick", pick);
2549 ANSI(0x04f, 0, "roll", roll);
2550 ANSI(0x050, 0, "?dup", qdup);
2551 ANSI(0x051, 0, "depth", depth);
2552 ANSI(0x052, 0, "2drop", two_drop);
2553 ANSI(0x053, 0, "2dup", two_dup);
2554 ANSI(0x054, 0, "2over", two_over);
2555 ANSI(0x055, 0, "2swap", two_swap);
2556 ANSI(0x056, 0, "2rot", two_rot);
2557 ANSI(0x057, 0, "2/", two_slash);
2558 ANSI(0x058, 0, "u2/", utwo_slash);
2559 ANSI(0x059, 0, "2*", two_times);
2560 ANSI(0x05a, 0, "/c", slash_c);
2561 ANSI(0x05b, 0, "/w", slash_w);
2562 ANSI(0x05c, 0, "/l", slash_l);
2563 ANSI(0x05d, 0, "/n", slash_n);
2564 ANSI(0x05e, 0, "ca+", ca_plus);
2565 ANSI(0x05f, 0, "wa+", wa_plus);
2566 ANSI(0x060, 0, "la+", la_plus);
2567 ANSI(0x061, 0, "na+", na_plus);
2568 ANSI(0x062, 0, "char+", char_plus);
2569 ANSI(0x063, 0, "wa1+", wa1_plus);
2570 ANSI(0x064, 0, "la1+", la1_plus);
2571 ANSI(0x065, 0, "cell+", cell_plus);
2572 ANSI(0x066, 0, "chars", do_chars);
2573 ANSI(0x067, 0, "/w*", slash_w_times);
2574 ANSI(0x068, 0, "/l*", slash_l_times);
2575 ANSI(0x069, 0, "cells", cells);
2576 ANSI(0x06a, 0, "on", do_on);
2577 ANSI(0x06b, 0, "off", do_off);
2578 ANSI(0x06c, 0, "+!", addstore);
2579 ANSI(0x06d, 0, "@", fetch);
2580 ANSI(0x06e, 0, "l@", lfetch);
2581 ANSI(0x06f, 0, "w@", wfetch);
2582 ANSI(0x070, 0, "<w@", swfetch);
2583 ANSI(0x071, 0, "c@", cfetch);
2584 ANSI(0x072, 0, "!", store);
2585 ANSI(0x073, 0, "l!", lstore);
2586 ANSI(0x074, 0, "w!", wstore);
2587 ANSI(0x075, 0, "c!", cstore);
2588 ANSI(0x076, 0, "2@", two_fetch);
2589 ANSI(0x077, 0, "2!", two_store);
2590 ANSI(0x078, 0, "move", fc_move);
2591 ANSI(0x079, 0, "fill", fc_fill);
2592 ANSI(0x07a, 0, "comp", fc_comp);
2593 ANSI(0x07b, 0, "noop", noop);
2594 ANSI(0x07c, 0, "lwsplit", lwsplit);
2595 ANSI(0x07d, 0, "wljoin", wljoin);
2596 ANSI(0x07e, 0, "lbsplit", lbsplit);
2597 ANSI(0x07f, 0, "bljoin", bljoin);
2598 ANSI(0x080, 0, "wbflip", wbflip);
2599 ANSI(0x081, 0, "upc", upper_case);
2600 ANSI(0x082, 0, "lcc", lower_case);
2601 ANSI(0x083, 0, "pack", pack_str);
2602 ANSI(0x084, 0, "count", count_str);
2603 ANSI(0x085, 0, "body>", to_acf);
2604 ANSI(0x086, 0, ">body", to_body);
2606 ANSI(0x089, 0, "unloop", unloop);
2608 ANSI(0x09f, 0, ".s", dot_s);
2609 ANSI(0x0a0, 0, "base", base);
2611 ANSI(0x0a2, 0, "$number", dollar_number);
2612 ANSI(0x0a3, 0, "digit", digit);
2614 ANSI(0x0a9, 0, "bl", space);
2615 ANSI(0x0aa, 0, "bs", backspace);
2616 ANSI(0x0ab, 0, "bell", bell);
2617 ANSI(0x0ac, 0, "bounds", fc_bounds);
2618 ANSI(0x0ad, 0, "here", here);
2620 ANSI(0x0af, 0, "wbsplit", wbsplit);
2621 ANSI(0x0b0, 0, "bwjoin", bwjoin);
2625 ANSI(0x0d0, 0, "c,", ccomma);
2626 ANSI(0x0d1, 0, "w,", wcomma);
2627 ANSI(0x0d2, 0, "l,", lcomma);
2628 ANSI(0x0d3, 0, ",", comma);
2629 ANSI(0x0d4, 0, "um*", um_multiply);
2630 ANSI(0x0d5, 0, "um/mod", um_slash_mod);
2632 ANSI(0x0d8, 0, "d+", d_plus);
2633 ANSI(0x0d9, 0, "d-", d_minus);
2635 ANSI(0x0dc, 0, "state", state);
2636 ANSI(0x0de, 0, "behavior", behavior);
2637 ANSI(0x0dd, 0, "compile,", compile_comma);
2639 ANSI(0x216, 0, "abort", f_abort);
2640 ANSI(0x217, 0, "catch", catch);
2641 ANSI(0x218, 0, "throw", throw);
2643 ANSI(0x226, 0, "lwflip", lwflip);
2644 ANSI(0x227, 0, "lbflip", lbflip);
2645 ANSI(0x228, 0, "lbflips", lbflips);
2647 ANSI(0x236, 0, "wbflips", wbflips);
2648 ANSI(0x237, 0, "lwflips", lwflips);