Home
last modified time | relevance | path

Searched refs:PushLong (Results 1 – 14 of 14) sorted by relevance

/dports/lang/yorick/yorick-y_2_2_04/i/
H A Dtestp.i203 32 sp+>1 PushLong(3)
221 62 sp+>1 PushLong(0)
239 92 sp+>2 PushLong(1)
284 167 sp+>2 PushLong(3)
287 172 sp+>3 PushLong(6)
299 191 sp+>2 PushLong(5)
303 197 sp+>2 PushLong(7)
305 201 sp+>4 PushLong(3)
319 223 sp+>2 PushLong(1)
328 238 sp+>2 PushLong(1)
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.debug/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/
H A DPushLong.java19 public class PushLong extends SimpleInstruction { class
23 public PushLong(long value) { in PushLong() method in PushLong
/dports/lang/yorick/yorick-y_2_2_04/yorick/
H A Dfuncdef.c17 extern VMaction PushVariable, PushReference, PushLong, PushDouble, PushString;
165 tmp->code[pc++].Action = &PushLong; in ypush_func()
H A Dparse.c32 extern VMaction PushChar, PushShort, PushInt, PushLong,
456 { return PushInteger(l, &PushLong); } in YpLong()
493 return (a==&PushChar || a==&PushShort || a==&PushInt || a==&PushLong || in IsPushConst()
H A Ddebug.c51 extern VMaction PushChar, PushShort, PushInt, PushLong,
117 { &PushLong, "PushLong", "%4ld sp+>%-4d %s(%ld)",
H A Dops.c21 extern VMaction PushChar, PushShort, PushInt, PushLong,
68 void PushLong(void) in PushLong() function
/dports/graphics/xfractint/xfractint-20.04p16/common/
H A Dlorenz.c344 PushLong((fudge + Sqrt.x) / 2, Sqrt.y / 2); in orbit3dlongsetup()
345 PushLong((fudge - Sqrt.x) / 2, -Sqrt.y / 2); in orbit3dlongsetup()
348 PushLong((fudge - Sqrt.x) / 2, -Sqrt.y / 2); in orbit3dlongsetup()
349 PushLong((fudge + Sqrt.x) / 2, Sqrt.y / 2); in orbit3dlongsetup()
805 PushLong(color * lnew.x, color * lnew.y); in Linverse_julia_orbit()
839 PushLong(-lnew.x, -lnew.y); in Linverse_julia_orbit()
842 PushLong( lnew.x, lnew.y); in Linverse_julia_orbit()
843 PushLong(-lnew.x, -lnew.y); in Linverse_julia_orbit()
849 PushLong( lnew.x, lnew.y); in Linverse_julia_orbit()
852 PushLong(-lnew.x, -lnew.y); in Linverse_julia_orbit()
[all …]
H A Djiim.c288 PushLong(long x, long y) in PushLong() function
383 return PushLong(x, y); in EnQueueLong()
/dports/lang/mono/mono-5.10.1.57/mcs/class/PEAPI/
H A DCode.cs570 public void PushLong(long l) in PushLong() method in PEAPI.CILInstructions
/dports/graphics/xfractint/xfractint-20.04p16/headers/
H A Dprototyp.h657 extern int PushLong (long , long);
/dports/graphics/graphite2/graphite2-1.3.14/doc/
H A DOpCodes.asc23 |05 |PushLong |<long> |Push the 32-bit signed number onto the stack. +
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/net_4_x/
H A DPEAPI.cs161 public void PushLong(long l) { } in PushLong() method in PEAPI.CILInstructions
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/mono/
H A DPEAPI.cs162 public void PushLong(long l) { } in PushLong() method in PEAPI.CILInstructions
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.debug/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/engine/
H A DASTInstructionCompiler.java87 import org.eclipse.jdt.internal.debug.eval.ast.instructions.PushLong;
3236 push(new PushLong(parseLongValue(subToken))); in visit()