HomeSort by relevance Sort by last modified time
    Searched refs:New (Results 226 - 250 of 424) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/giflib/
gif_lib.h 188 GifFileType *DGifOpen(void *userPtr, InputFunc readFunc); /* new one
258 * Everything below this point is new after version 1.2, supporting `slurp
296 extern void MakeExtension(SavedImage * New, int Function);
297 extern int AddExtensionBlock(SavedImage * New, int Len,
  /external/llvm/include/llvm/Analysis/
ProfileInfo.h 161 void splitBlock(const BType *Old, const BType* New);
168 void transfer(const FType *Old, const FType *New);
229 MachineProfile = new ProfileInfoT<MachineFunction, MachineBasicBlock>();
  /external/llvm/lib/Target/PowerPC/
PPCJITInfo.cpp 314 // Fill in the new target.
465 void PPCJITInfo::replaceMachineCodeForFunction(void *Old, void *New) {
466 EmitBranchToAt((intptr_t)Old, (intptr_t)New, false, is64Bit);
  /external/llvm/lib/Transforms/IPO/
PruneEH.cpp 58 Pass *llvm::createPruneEHPass() { return new PruneEH(); }
202 DeleteBasicBlock(UnwindBlock); // Delete the new BB.
214 // new BB.
215 BasicBlock *New = BB->splitBasicBlock(I);
219 new UnreachableInst(BB->getContext(), BB);
221 DeleteBasicBlock(New); // Delete the new BB.
  /external/llvm/tools/bugpoint/
Miscompilation.cpp 336 Module *New = TestMergedProgram(BD, ToOptimizeLoopExtracted, ToNotOptimize,
338 if (!New)
340 // Delete the original and set the new program.
341 delete BD.swapProgramIn(New);
500 if (Module *New = BD.ExtractMappedBlocksFromModule(BBsOnClone, ToOptimize)) {
504 bool Ret = TestFn(BD, New, ToNotOptimize, Error);
587 // Set the new program and delete the old one.
704 Module *New = TestMergedProgram(BD, Optimized, Safe, true, Error, Broken);
705 if (New) {
707 // Delete the original and set the new program
    [all...]
  /external/mesa3d/docs/
MESA_swap_frame_usage.spec 67 New Procedures and Functions
85 New Tokens
190 New State
194 New Implementation Dependent State
  /external/v8/test/cctest/
test-func-name-inference.cc 55 env = v8::Context::New();
107 return v8::Script::Compile(v8::String::New(src));
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8ArrayBufferViewCustom.h 92 // the user calls "new <Type>Array()" from JavaScript. We must
132 len = toUInt32(srcArray->Get(v8::String::New("length")));
191 uint32_t length = toUInt32(array->Get(v8::String::New("length")));
V8InjectedScriptManager.cpp 71 v8::Persistent<v8::Object> weakHandle = v8::Persistent<v8::Object>::New(instance);
106 v8::Number::New(id),
  /sdk/sdklauncher/
Android.mk 57 #----- New experimental sdklauncher. Not ready for production. -----
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 44 AllocaInst *New = Builder->CreateAlloca(NewTy, 0, AI.getName());
45 New->setAlignment(AI.getAlignment());
50 BasicBlock::iterator It = New;
61 GetElementPtrInst::CreateInBounds(New, Idx, New->getName()+".sub");
137 return new BitCastInst(NewLoad, LI.getType());
182 // Insert a new store to null instruction before the load to indicate
186 new StoreInst(UndefValue::get(LI.getType()),
196 // Insert a new store to null instruction before the load to indicate that
199 new StoreInst(UndefValue::get(LI.getType())
    [all...]
  /external/clang/lib/AST/
ASTContext.cpp 174 // Get the new insert position for the node we care about.
180 Canonical = new (*this) CanonicalTemplateTemplateParm(CanonTTP);
385 BuiltinType *Ty = new (*this, TypeAlignment) BuiltinType(K);
502 Result = new (Mem) AttrVec;
537 = new (*this) MemberSpecializationInfo(Tmpl, TSK, PointOfInstantiation);
    [all...]
  /external/llvm/lib/Target/X86/
X86RegisterInfo.cpp 541 MachineInstr *New = 0;
543 New = BuildMI(MF, DL, TII.get(getSUBriOpcode(Is64Bit, Amount)),
555 New = BuildMI(MF, DL, TII.get(Opc), StackPtr)
560 if (New) {
562 New->getOperand(3).setIsDead();
564 // Replace the pseudo instruction with a new instruction.
565 MBB.insert(I, New);
576 MachineInstr *New = BuildMI(MF, DL, TII.get(Opc), StackPtr)
580 New->getOperand(3).setIsDead();
588 MBB.insert(I, New);
    [all...]
  /external/llvm/lib/Analysis/
PHITransAddr.cpp 279 // If the old 'LHS' was an input, add the new 'LHS' as an input.
353 // If successful, return the new value.
373 // PredBB. If so, there is no need to insert a new instance of it.
390 CastInst *New = CastInst::Create(Cast->getOpcode(),
394 NewInsts.push_back(New);
395 return New;
  /external/llvm/unittests/VMCore/
ValueMapTest.cpp 33 BitcastV(new BitCastInst(ConstantV, Type::getInt32Ty(getGlobalContext()))),
188 static void onRAUW(const ExtraData &Data, KeyT Old, KeyT New) {
242 static void onRAUW(const ExtraData &Data, KeyT Old, KeyT New) {
274 static void onRAUW(ExtraData Map, KeyT Old, KeyT New) {
  /external/chromium/base/memory/
singleton_unittest.cc 38 static Init5Singleton* New() {
39 Init5Singleton* instance = new Init5Singleton();
  /external/clang/lib/StaticAnalyzer/Checkers/
IdempotentOperationChecker.cpp 81 static void UpdateAssumption(Assumption &A, const Assumption &New);
345 BugType *BT = new BugType("Idempotent operation", "Dead code");
415 BugReport *report = new BugReport(*BT, os.str(), *I);
436 // Updates the current assumption given the new assumption
438 const Assumption &New) {
440 if (A == New)
446 A = New;
449 // If we have determined that a valid state happened, ignore the new
  /external/llvm/include/llvm/
BasicBlock.h 99 /// Create - Creates a new BasicBlock. If the Parent parameter is specified,
104 return new BasicBlock(Context, Name, Parent, InsertBefore);
249 /// to the new BB, including the old terminator. The newly formed BasicBlock
267 /// to refer to basic block New instead of to us.
268 void replaceSuccessorsPhiUsesWith(BasicBlock *New);
  /external/llvm/lib/CodeGen/
MachineModuleInfo.cpp 97 void UpdateForRAUWBlock(BasicBlock *Old, BasicBlock *New);
114 // Otherwise, this is a new entry, create a new symbol for it and add an
202 void MMIAddrLabelMap::UpdateForRAUWBlock(BasicBlock *Old, BasicBlock *New) {
208 AddrLabelSymEntry &NewEntry = AddrLabelSymbols[New];
210 // If New is not address taken, just move our symbol over to it.
212 BBCallbacks[OldEntry.Index].setPtr(New); // Update the callback.
213 NewEntry = OldEntry; // Set New's entry.
219 // Otherwise, we need to add the old symbol to the new block's set. If it is
222 std::vector<MCSymbol*> *SymList = new std::vector<MCSymbol*>()
    [all...]
  /external/mesa3d/docs/OLD/
MESA_program_debug.spec 114 New Procedures and Functions (and datatypes)
124 New Tokens
166 Add a new section 5.7 "Callback Functions"
211 Add a new section 6.1.3 "Program Value Queries":
275 New State
294 New Implementation Dependent State
  /external/v8/src/
execution.h 67 static Handle<Object> New(Handle<JSFunction> func,
106 // Create a new date object from 'time'.
109 // Create a new regular expression object from 'pattern' and 'flags'.
hashmap.cc 137 // found. There is now a new candidate entry for clearing.
200 map_ = reinterpret_cast<Entry*>(allocator_->New(capacity * sizeof(Entry)));
utils.h 306 static Vector<T> New(int length) {
340 // Returns a clone of this vector with a new backing store.
493 current_chunk_ = Vector<T>::New(initial_capacity);
573 Vector<T> new_store = Vector<T>::New(size_);
598 // Creates a new current chunk, and stores the old chunk in the chunks_ list.
609 Vector<T> new_chunk = Vector<T>::New(new_capacity);
615 // the new chunk.
624 // some of the current data into the new chunk. The function may update
626 // Returns the initial index of the new chunk (after copied data).
682 // Move the currently active sequence to the new chunk
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/
IDBBindingUtilities.cpp 104 : m_context(v8::Context::New())
JavaScriptCallFrame.cpp 104 v8::Handle<v8::Array> result = v8::Array::New(scopeChain->Length());

Completed in 335 milliseconds

1 2 3 4 5 6 7 8 91011>>