Lines Matching refs:bx
860 int bx = b; in T0Comp()
861 a.x -= bx; in T0Comp()
869 int bx = cpu.Pop(); in T0Comp()
871 cpu.Push(ax * bx); in T0Comp()
874 int bx = cpu.Pop(); in T0Comp()
876 cpu.Push(ax / bx); in T0Comp()
879 uint bx = cpu.Pop(); in T0Comp()
881 cpu.Push(ax / bx); in T0Comp()
884 int bx = cpu.Pop(); in T0Comp()
886 cpu.Push(ax % bx); in T0Comp()
889 uint bx = cpu.Pop(); in T0Comp()
891 cpu.Push(ax % bx); in T0Comp()
894 int bx = cpu.Pop(); in T0Comp()
896 cpu.Push(ax < bx); in T0Comp()
899 int bx = cpu.Pop(); in T0Comp()
901 cpu.Push(ax <= bx); in T0Comp()
904 int bx = cpu.Pop(); in T0Comp()
906 cpu.Push(ax > bx); in T0Comp()
909 int bx = cpu.Pop(); in T0Comp()
911 cpu.Push(ax >= bx); in T0Comp()
924 uint bx = cpu.Pop().UInt; in T0Comp()
926 cpu.Push(new TValue(ax < bx)); in T0Comp()
929 uint bx = cpu.Pop().UInt; in T0Comp()
931 cpu.Push(new TValue(ax <= bx)); in T0Comp()
934 uint bx = cpu.Pop().UInt; in T0Comp()
936 cpu.Push(new TValue(ax > bx)); in T0Comp()
939 uint bx = cpu.Pop(); in T0Comp()
941 cpu.Push(ax >= bx); in T0Comp()
944 uint bx = cpu.Pop(); in T0Comp()
946 cpu.Push(ax & bx); in T0Comp()
949 uint bx = cpu.Pop(); in T0Comp()
951 cpu.Push(ax | bx); in T0Comp()
954 uint bx = cpu.Pop(); in T0Comp()
956 cpu.Push(ax ^ bx); in T0Comp()