Home
last modified time | relevance | path

Searched refs:orig_code (Results 1 – 25 of 321) sorted by relevance

12345678910>>...13

/dports/devel/p5-constant-defer/constant-defer-6/devel/Memoize/
H A DToConstant.t41 my $orig_code;
42 BEGIN { $orig_code = \&foo; }
50 Scalar::Util::weaken ($orig_code);
51 is ($orig_code, undef, 'orig foo() code garbage collected');
/dports/devel/py-wsme/WSME-0.11.0/wsmeext/
H A Dflask.py90 orig_code = getattr(orig_exception, 'code', None)
96 if orig_code and is_valid_code(orig_code):
97 res.status_code = orig_code
H A Dpecan.py105 orig_code = getattr(orig_exception, 'code', None)
113 if orig_code and is_valid_code(orig_code):
114 pecan.response.status = orig_code
/dports/devel/p5-constant-defer/constant-defer-6/t/
H A Dconstant-defer.t71 my $orig_code;
72 $orig_code = \&FOO;
77 ok (&$orig_code(), 123, 'FOO orig second run');
95 Scalar::Util::weaken ($orig_code);
98 ! defined $orig_code,
/dports/lang/mono/mono-5.10.1.57/mono/mini/
H A Dtramp-s390x.c132 mono_arch_patch_callsite (guint8 *method_start, guint8 *orig_code, guint8 *addr) in mono_arch_patch_callsite() argument
137 opcode = *((unsigned short *) (orig_code - 2)); in mono_arch_patch_callsite()
140 S390_EMIT_CALL((orig_code - 14), addr); in mono_arch_patch_callsite()
141 mono_arch_flush_icache (orig_code - 14, 12); in mono_arch_patch_callsite()
144 orig_code -= 4; in mono_arch_patch_callsite()
145 displace = ((gssize) addr - (gssize) (orig_code - 2)) / 2; in mono_arch_patch_callsite()
146 s390_patch_rel (orig_code, displace); in mono_arch_patch_callsite()
147 mono_arch_flush_icache (orig_code, 4); in mono_arch_patch_callsite()
H A Dtramp-amd64.c136 mono_arch_patch_callsite (guint8 *method_start, guint8 *orig_code, guint8 *addr) in mono_arch_patch_callsite() argument
140 gboolean can_write = mono_breakpoint_clean_code (method_start, orig_code, 14, buf, sizeof (buf)); in mono_arch_patch_callsite()
148 g_assert ((guint64)(orig_code - 11) % 8 == 0); in mono_arch_patch_callsite()
149 mono_atomic_xchg_ptr ((gpointer*)(orig_code - 11), addr); in mono_arch_patch_callsite()
150 VALGRIND_DISCARD_TRANSLATIONS (orig_code - 11, sizeof (gpointer)); in mono_arch_patch_callsite()
153 …olean disp_32bit = ((((gint64)addr - (gint64)orig_code)) < (1 << 30)) && ((((gint64)addr - (gint64… in mono_arch_patch_callsite()
170 mono_atomic_xchg_i32 ((gint32*)(orig_code - 4), ((gint64)addr - (gint64)orig_code)); in mono_arch_patch_callsite()
171 VALGRIND_DISCARD_TRANSLATIONS (orig_code - 5, 4); in mono_arch_patch_callsite()
177 gpointer *got_entry = (gpointer*)((guint8*)orig_code + (*(guint32*)(orig_code - 4))); in mono_arch_patch_callsite()
180 VALGRIND_DISCARD_TRANSLATIONS (orig_code - 5, sizeof (gpointer)); in mono_arch_patch_callsite()
H A Dtramp-x86.c93 mono_arch_patch_callsite (guint8 *method_start, guint8 *orig_code, guint8 *addr) in mono_arch_patch_callsite() argument
97 gboolean can_write = mono_breakpoint_clean_code (method_start, orig_code, 8, buf, sizeof (buf)); in mono_arch_patch_callsite()
109 orig_code -= 6; in mono_arch_patch_callsite()
112 mono_atomic_xchg_i32 ((gint32*)(orig_code + 2), (guint)addr - ((guint)orig_code + 1) - 5); in mono_arch_patch_callsite()
115 VALGRIND_DISCARD_TRANSLATIONS (orig_code + 2, 4); in mono_arch_patch_callsite()
120 mono_atomic_xchg_i32 ((gint32*)(orig_code + 2), (guint)addr - ((guint)orig_code + 1) - 5); in mono_arch_patch_callsite()
H A Dtramp-wasm.c37 mono_arch_patch_callsite (guint8 *method_start, guint8 *orig_code, guint8 *addr) in mono_arch_patch_callsite() argument
/dports/devel/p5-DateTime/DateTime-1.54/t/
H A D23storable.t72 my $orig_code = $dt1->locale->$meth;
75 $orig_code,
80 $orig_code,
/dports/devel/p5-DateTime/DateTime-1.54/xt/author/
H A Dpp-23storable.t76 my $orig_code = $dt1->locale->$meth;
79 $orig_code,
84 $orig_code,
/dports/lang/cython-devel/cython-2b1e743/Cython/Build/
H A DInline.py155 def _inline_key(orig_code, arg_sigs, language_level): argument
156 key = orig_code, arg_sigs, sys.version_info, sys.executable, language_level, Cython.__version__
189 orig_code = code
198 _cython_inline_cache[orig_code] = _unbound_symbols = unbound_symbols(code)
213 key_hash = _inline_key(orig_code, arg_sigs, language_level)
285 _cython_inline_cache[orig_code, arg_sigs, key_hash] = module.__invoke
/dports/lang/cython/Cython-0.29.24/build/lib.dragonfly-6.3-DEVELOPMENT-x86_64-3.8/Cython/Build/
H A DInline.py151 def _inline_key(orig_code, arg_sigs, language_level): argument
152 key = orig_code, arg_sigs, sys.version_info, sys.executable, language_level, Cython.__version__
182 orig_code = code
191 _cython_inline_cache[orig_code] = _unbound_symbols = unbound_symbols(code)
205 key_hash = _inline_key(orig_code, arg_sigs, language_level)
273 _cython_inline_cache[orig_code, arg_sigs, key_hash] = module.__invoke
/dports/lang/cython/Cython-0.29.24/Cython/Build/
H A DInline.py151 def _inline_key(orig_code, arg_sigs, language_level): argument
152 key = orig_code, arg_sigs, sys.version_info, sys.executable, language_level, Cython.__version__
182 orig_code = code
191 _cython_inline_cache[orig_code] = _unbound_symbols = unbound_symbols(code)
205 key_hash = _inline_key(orig_code, arg_sigs, language_level)
273 _cython_inline_cache[orig_code, arg_sigs, key_hash] = module.__invoke
/dports/lang/cython/stage/usr/local/lib/python3.8/site-packages/Cython/Build/
H A DInline.py151 def _inline_key(orig_code, arg_sigs, language_level): argument
152 key = orig_code, arg_sigs, sys.version_info, sys.executable, language_level, Cython.__version__
182 orig_code = code
191 _cython_inline_cache[orig_code] = _unbound_symbols = unbound_symbols(code)
205 key_hash = _inline_key(orig_code, arg_sigs, language_level)
273 _cython_inline_cache[orig_code, arg_sigs, key_hash] = module.__invoke
/dports/mail/isbg/isbg-e626d8d0628f691c041032c53f20d764b11d0079/isbg/
H A Dspamproc.py69 orig_code = None
74 orig_code = code
87 return code, orig_code
93 orig_code = None
/dports/chinese/ttfm/ttfm-0.9.5/
H A Dttfinfo.c117 static const char *get_foundry (const FT_Char orig_code[4]);
1126 get_foundry (const FT_Char orig_code[4]) in get_foundry()
1214 code[0] = toupper(orig_code[0]); in get_foundry()
1215 code[1] = toupper(orig_code[1]); in get_foundry()
1216 code[2] = toupper(orig_code[2]); in get_foundry()
1217 code[3] = toupper(orig_code[3]); in get_foundry()
/dports/math/py-cypari2/cypari2-2.1.2/venv/lib/python3.7/site-packages/Cython/Build/
H A DInline.py159 orig_code = code
168 _cython_inline_cache[orig_code] = _unbound_symbols = unbound_symbols(code)
186 key = orig_code, arg_sigs, sys.version_info, sys.executable, language_level, Cython.__version__
254 _cython_inline_cache[orig_code, arg_sigs] = module.__invoke
/dports/devel/p5-Future/Future-0.47/lib/Future/
H A DUtils.pm369 my $orig_code = $code;
375 unshift @_, $value; goto &$orig_code;
/dports/net/miredo/miredo-1.2.6/libteredo/
H A Dteredo.h122 uint8_t orig_code; member
/dports/lang/gcc12-devel/gcc-12-20211205/gcc/
H A Ddojump.c1117 enum rtx_code first_code, orig_code = code; in do_compare_rtx_and_jump() local
1125 else if ((orig_code == EQ || orig_code == NE) in do_compare_rtx_and_jump()
1129 code = orig_code == EQ ? ORDERED : UNORDERED; in do_compare_rtx_and_jump()
1199 if (orig_code == NE && can_compare_p (UNEQ, mode, ccp_jump)) in do_compare_rtx_and_jump()
/dports/lang/gcc11-devel/gcc-11-20211009/gcc/
H A Ddojump.c1117 enum rtx_code first_code, orig_code = code; in do_compare_rtx_and_jump() local
1125 else if ((orig_code == EQ || orig_code == NE) in do_compare_rtx_and_jump()
1129 code = orig_code == EQ ? ORDERED : UNORDERED; in do_compare_rtx_and_jump()
1199 if (orig_code == NE && can_compare_p (UNEQ, mode, ccp_jump)) in do_compare_rtx_and_jump()
/dports/lang/gcc11/gcc-11.2.0/gcc/
H A Ddojump.c1117 enum rtx_code first_code, orig_code = code; in do_compare_rtx_and_jump() local
1125 else if ((orig_code == EQ || orig_code == NE) in do_compare_rtx_and_jump()
1129 code = orig_code == EQ ? ORDERED : UNORDERED; in do_compare_rtx_and_jump()
1199 if (orig_code == NE && can_compare_p (UNEQ, mode, ccp_jump)) in do_compare_rtx_and_jump()
/dports/misc/cxx_atomics_pic/gcc-11.2.0/gcc/
H A Ddojump.c1117 enum rtx_code first_code, orig_code = code; in do_compare_rtx_and_jump() local
1125 else if ((orig_code == EQ || orig_code == NE) in do_compare_rtx_and_jump()
1129 code = orig_code == EQ ? ORDERED : UNORDERED; in do_compare_rtx_and_jump()
1199 if (orig_code == NE && can_compare_p (UNEQ, mode, ccp_jump)) in do_compare_rtx_and_jump()
/dports/www/dillo2/dillo-3.0.5/src/
H A Dgif.c451 uint_t o_index, o_size, orig_code; in Gif_sequence() local
493 orig_code = code; in Gif_sequence()
531 if (orig_code == gif->last_code) { in Gif_sequence()
/dports/lang/gcc48/gcc-4.8.5/gcc/
H A Dgimple-ssa-strength-reduction.c2389 enum tree_code orig_code, repl_code; in replace_one_candidate() local
2392 orig_code = gimple_assign_rhs_code (c->cand_stmt); in replace_one_candidate()
2430 orig_code, orig_rhs1, orig_rhs2, in replace_one_candidate()
2450 orig_code, orig_rhs1, orig_rhs2, in replace_one_candidate()
2465 if (orig_code != MINUS_EXPR in replace_one_candidate()
2530 enum tree_code orig_code = gimple_assign_rhs_code (c->cand_stmt); in replace_profitable_candidates() local
2538 && orig_code != MODIFY_EXPR in replace_profitable_candidates()
2539 && orig_code != NOP_EXPR) in replace_profitable_candidates()

12345678910>>...13