search for: storeaddr

Displaying 3 results from an estimated 3 matches for "storeaddr".

2011 May 31
1
Geokit query with multiple models involved
...to :store end Now given a book isbn (which is in the Book model) and a store, I need to find other stores within 5 miles that have that book. I have looked around but not quite sure how to bring in the Book and BookStore models with my GeoKit query on something like Store.within(5, :origin => @storeaddr). I am on Rails 3.0.5 and using gem ''geokit-rails3'' Appreciate any thoughts/pointers. -S -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3Mb...
2006 Dec 19
3
[LLVMdev] alias-aware scheduling
...SrcValueOffset = ST->getSrcValueOffset(); + } else { + assert(0 && "FindAliasInfo expected a memory operand"); + } + + return false; + } + + /// getStoreRoot - Return a virtual root for a store to a specified address. + /// + SDOperand getStoreRoot(SDOperand StoreAddr, + int64_t StoreSize, + const Value *StoreAddrValue, + int StoreOffset) { + // The special behavior may be disabled by an option. + if (!SchedulerMemoryDisambiguation) + return getRoot(); + + std::vector<SDOper...
2005 Jan 31
1
[LLVMdev] Question about Global Variable
...sh_back(Zero2); Constant *pStr = ConstantExpr::getGetElementPtr(Cstr, idxVec); // trying to get pointer of initial value GetElementPtrInst *GEP = new GetElementPtrInst( PointerAry , idxVec, "GetAryElement" , BB); // insert getelementptr and get the pionter of AddrOfGstr[0] StoreInst *storeAddr = new StoreInst(pStr , GEP , BB); // trying to assign the pStr to GEP The above code is for getting the pionter of initial value of Cstr and assign it to AddrOfGstr[0], which should be like char a[10]="test str"; main(){ char *AddrOfGstr[20]; AddrOfGstr[0] = a; } the code is compi...