search for: _target

Displaying 20 results from an estimated 22 matches for "_target".

Did you mean: target
2017 Dec 06
2
[AMDGPU] Strange results with different address spaces
> On Dec 6, 2017, at 02:28, Haidl, Michael <michael.haidl at uni-muenster.de> wrote: > > The IR goes through a backend agnostic preparation phase that brings it into SSA from and changes the AS from 0 to 1. This sounds possibly problematic to me. The IR should be created with the correct address space to begin with. Changing this in the middle sounds suspect. > After this
2008 May 07
1
Assigning to the foreign key on a belongs_to association
...+ define_method("#{reflection.primary_key_name}=") do | target_id| + instance_variable_set(ivar, nil) + self["#{reflection.primary_key_name}"] = target_id + end + end + define_method("set_#{reflection.name}_target") do | target| return if target.nil? and association_proxy_class == BelongsToAssociat association = association_proxy_class.new(self, reflection) diff --git a/activerecord/test/cases/associations/ belongs_to_associations_test.rb b/activerecord/test/cases/associations/ b...
2007 Feb 22
0
3 commits - libswfdec/swfdec_js.c libswfdec/swfdec_js_movie.c libswfdec/swfdec_script.c
...S_TRUE; } -static const char *properties[22] = { - "_x", "_y", "_xscale", "_yscale", "_currentframe", - "_totalframes", "_alpha", "_visible", "_width", "_height", - "_rotation", "_target", "_framesloaded", "_name", "_droptarget", - "_url", "_highquality", "_focusrect", "_soundbuftime", "_quality", - "_xmouse", "_ymouse" -}; - -static JSBool +static const char * swfdec_eval_js...
2005 Aug 02
2
rpmbuild question.
I am attempting to build from a src.rpm (knowing very little about rpm at all) and the spec file notes that the architecture should be set on the command line: > # platform defines - set one below or define the build_xxx on the command line Now. My question is this, how does one do this using rpmbuild? The syntax rpmbuild --target centos4 package.src.rpm seemingly has no effect.
2014 Jan 22
2
[LLVMdev] [RFC] LTO: deallocating llvm::Module inside lto_codegen_add_module
...odule.h b/include/llvm/LTO/LTOModule.h index c70afa4..1180e58 100644 --- a/include/llvm/LTO/LTOModule.h +++ b/include/llvm/LTO/LTOModule.h @@ -164,6 +164,11 @@ public: return _asm_undefines; } + void destroyLLVMModule() { + _module.reset(); + _target.reset(); + } + private: /// parseMetadata - Parse metadata from the module // FIXME: it only parses "Linker Options" metadata at the moment diff --git a/lib/LTO/LTOCodeGenerator.cpp b/lib/LTO/LTOCodeGenerator.cpp index cae0ea2..a947fa8 100644 --- a/...
2010 Dec 08
0
[LLVMdev] Reviewer for our Path Profiling Implementation
...mespace (e.g. llvm::PathProfile) or give them fully descriptive names. +++ include/llvm/Analysis/PathProfileInfo.cpp +unsigned PathEdge::getDuplicateNumber() { + return _duplicateNumber; +} + +BasicBlock* PathEdge::getSource() { + return _source; +} + +BasicBlock* PathEdge::getTarget() { + return _target; +} ... Trivial accessors should be defined inline. -Andy
2010 Dec 08
1
[LLVMdev] Reviewer for our Path Profiling Implementation
...ames. > > +++ include/llvm/Analysis/PathProfileInfo.cpp > > +unsigned PathEdge::getDuplicateNumber() { > + return _duplicateNumber; > +} > + > +BasicBlock* PathEdge::getSource() { > + return _source; > +} > + > +BasicBlock* PathEdge::getTarget() { > + return _target; > +} > ... > > Trivial accessors should be defined inline. > > -Andy -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20101208/b3583233/attachment.html>
2011 Dec 07
8
DomU pygrub issue - OSS Xen to XCP
Hi, All I''m just new to this list, I''m started to dealing with OSS Xen to XCP migration earlier this week, seem the domUs installed via virt-install are function well, but domUs copied via dom0 are failed during bootup process, finally I realize if I could fix this on my OSS Xen will resolve all. Can I have any suggestion from you please ? *Details* *Source XenHost* OS:
2010 Dec 03
4
[LLVMdev] Reviewer for our Path Profiling Implementation
I am a student at the University of Alberta under the supervision of José Nelson Amaral, and I have been working on implementing path profiling into LLVM. I have completed my project and would like to submit it. We are looking for a reviewer for the path profiling implementation. We have sent previous requests to the llvmdev list but have so far been unsuccessful. Please see the attached
2020 Mar 16
4
DWARF .debug_aranges data objects and address spaces
On Mon, Mar 16, 2020 at 9:31 AM Robinson, Paul <paul.robinson at sony.com> wrote: > With AVR being affected, upstreaming a patch to put segment selectors into > .debug_aranges becomes completely reasonable. There would likely want to > be a target hook somewhere to return a value saying what size to use, with > the default implementation returning zero. > *nod* something
2007 Oct 10
0
4 commits - libswfdec/Makefile.am libswfdec/swfdec_initialize.as libswfdec/swfdec_initialize.h m4/gtk-doc.m4 Makefile.am test/trace
...rget diff --git a/libswfdec/swfdec_initialize.as b/libswfdec/swfdec_initialize.as index 032acd7..b42e06a 100644 --- a/libswfdec/swfdec_initialize.as +++ b/libswfdec/swfdec_initialize.as @@ -239,7 +239,7 @@ MovieClip.prototype["loadVariables"] = f } else { loadVariables (url, this._target, "POST"); } - setTarget (null); + setTarget (""); }; // work around ming bug, causing loadMovie to be lower cased diff --git a/libswfdec/swfdec_initialize.h b/libswfdec/swfdec_initialize.h index 53550cd..ee9cb44 100644 --- a/libswfdec/swfdec_initialize.h +++ b/libswfdec...
2007 Apr 05
0
Branch 'as' - 9 commits - configure.ac libswfdec/swfdec_as_context.c libswfdec/swfdec_as_frame.c libswfdec/swfdec_as_frame.h libswfdec/swfdec_as_function.h libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_object.c libswfdec/swfdec_as_object.h
...;; - } -} - -static const char *properties[22] = { - "_x", "_y", "_xscale", "_yscale", "_currentframe", - "_totalframes", "_alpha", "_visible", "_width", "_height", - "_rotation", "_target", "_framesloaded", "_name", "_droptarget", - "_url", "_highquality", "_focusrect", "_soundbuftime", "_quality", - "_xmouse", "_ymouse" -}; - -static void -swfdec_action_get_property (SwfdecAsC...
2007 Oct 14
0
4 commits - libswfdec/swfdec_as_interpret.c libswfdec/swfdec_sound.c test/trace
.../test/trace/getsetproperty-target.as @@ -0,0 +1,34 @@ +// makeswf -v 7 -s 200x150 -r 1 -o getsetproperty-target.swf getsetproperty-target.as + +createEmptyMovieClip ("a", 0); +a.createEmptyMovieClip ("a", 0); + +function do_test (x) { + // equivalent code: + // trace (eval (x)._target); + // eval (x)._x = 42; + // trace (eval (x)._x); + asm { + push "x" + getvariable + dup + push 11 + getproperty + trace + dup + push 0, 42 + setproperty + push 0 + getproperty + trace + }; +}; + +tests = [ "/a/a", "a/../a::::a"...
2007 Jun 27
0
Branch 'as' - 6 commits - libswfdec/swfdec_as_interpret.c libswfdec/swfdec_movie_asprops.c libswfdec/swfdec_movie.c libswfdec/swfdec_movie.h libswfdec/swfdec_sprite.c libswfdec/swfdec_sprite.h libswfdec/swfdec_sprite_movie_as.c
...mc_alpha_set }, - { SWFDEC_AS_STR__visible, mc_visible_get, mc_visible_set }, - { SWFDEC_AS_STR__width, mc_width_get, mc_width_set }, - { SWFDEC_AS_STR__height, mc_height_get, mc_height_set }, - { SWFDEC_AS_STR__rotation, mc_rotation_get, mc_rotation_set }, - { SWFDEC_AS_STR__target, NULL, NULL }, //"_target" - { SWFDEC_AS_STR__framesloaded,mc_framesloaded, NULL}, - { SWFDEC_AS_STR__name, mc_name_get, mc_name_set }, - { SWFDEC_AS_STR__droptarget, NULL, NULL }, //"_droptarget" - { SWFDEC_AS_STR__url, NULL, NULL }, //"_url" - { SWFDE...
2013 Jul 12
14
[LLVMdev] [Proposal] Parallelize post-IPO stage.
...bool generateMakefile(std::string &ErrMsg); + +private: + IPOPartMgr &PartMgr; + IPOFileMgr &FileMgr; + IPOFile *MergedObjFile; + bool MergeObjs; +}; + LTOCodeGenerator::LTOCodeGenerator() : _context(getGlobalContext()), _linker(new Module("ld-temp.o", _context)), _target(NULL), _emitDwarfDebugInfo(false), _scopeRestrictionsDone(false), _codeModel(LTO_CODEGEN_PIC_MODEL_DYNAMIC), - _nativeObjectFile(NULL) { + _nativeObjectFile(NULL), + _IPOPartMgr(_IPOFileMgr) { InitializeAllTargets(); InitializeAllTargetMCs(); InitializeAllAsmPrinters();...
2017 Oct 12
0
[ANNOUNCE] nftables 0.8 release
...cache man: Fix typo. src: Remove xt_stmt_() functions. src: gmputil: Remove mpz_get_be64() function. src: cli: Remove cli_display() function. src: netlink: Remove unused functions. src: mnl: Remove unused functions. src: Initialize struct stmt in _match and _target functions. tests: shell: Add tests for chain rename. tests: files: Remove old tests for chain rename.
2007 Oct 11
0
2 commits - libswfdec/swfdec_as_context.c libswfdec/swfdec_initialize.as libswfdec/swfdec_initialize.h
...;") diff --git a/libswfdec/swfdec_initialize.as b/libswfdec/swfdec_initialize.as index b42e06a..3fffa4e 100644 --- a/libswfdec/swfdec_initialize.as +++ b/libswfdec/swfdec_initialize.as @@ -253,7 +253,7 @@ MovieClip.prototype["loadMovie"] = funct } else { loadMovie (url, this._target, "POST"); } - setTarget (null); + setTarget (""); }; MovieClip.prototype.attachMovie = ASnative (900, 0); diff --git a/libswfdec/swfdec_initialize.h b/libswfdec/swfdec_initialize.h index ee9cb44..6420e24 100644 --- a/libswfdec/swfdec_initialize.h +++ b/libswfdec/swfdec_...
2007 Oct 12
0
Changes to 'refs/tags/0.5.3'
...REing look up ".." correctly when first item in GetVariable lookup allow creating video and audio streams on demand - don;t require them in the header add a missed test - the most important one update test to include GetVariable/SetVariable actions implement _target property make SetTarget actions work properly using the new lookup magic disable WARNING messages by default add tests for setTarget action changes fix swfdec_as_context_startup() to work on non-SwfdecPlayer objects giving VP6 a one-byte clamp size is NetStream specifi...
2007 Apr 04
0
Branch 'as' - 4 commits - libswfdec/Makefile.am libswfdec/swfdec_as_context.c libswfdec/swfdec_as_frame.c libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_interpret.h libswfdec/swfdec_as_object.c libswfdec/swfdec_as_types.c libswfdec/swfdec_as_types.h
...ted native properties, + * but usually just causes a lot of spam. */ +//#define SWFDEC_WARN_MISSING_PROPERTIES + +/*** SUPPORT FUNCTIONS ***/ + +#define swfdec_action_has_register(cx, i) \ + ((i) < ((SwfdecScript *) (cx)->fp->swf)->n_registers) + +static SwfdecMovie * +swfdec_action_get_target (SwfdecAsContext *context) +{ + SwfdecAsObject *object = context->frame->scope; + + if (!SWFDEC_IS_MOVIE (object)) { + SWFDEC_ERROR ("no valid target"); + return NULL; + } + return SWFDEC_MOVIE (object); +} + +#if 0 +static void +swfdec_action_push_string (SwfdecAsContext...
2007 Jan 25
0
Branch 'interpreter' - 28 commits - configure.ac libswfdec/js libswfdec/swfdec_buffer.c libswfdec/swfdec_edittext_movie.c libswfdec/swfdec_js.c libswfdec/swfdec_js_global.c libswfdec/swfdec_js.h libswfdec/swfdec_js_movie.c libswfdec/swfdec_player.c
...S_TRUE; } +static const char *properties[22] = { + "_x", "_y", "_xscale", "_yscale", "_currentframe", + "_totalframes", "_alpha", "_visible", "_width", "_height", + "_rotation", "_target", "_framesloaded", "_name", "_droptarget", + "_url", "_highquality", "_focusrect", "_soundbuftime", "_quality", + "_xmouse", "_ymouse" +}; + +static JSBool +swfdec_eval_jsval (JSContext *cx, J...