Searched defs:Use (Results 1 - 25 of 29) sorted by relevance

12

/external/chromium/base/memory/
H A Dlinked_ptr_unittest.cc2 // Use of this source code is governed by a BSD-style license that can be
21 virtual void Use() { history += base::StringPrintf("A%d use\n", mynum); } function in struct:__anon1123::A
29 virtual void Use() { history += base::StringPrintf("B%d use\n", mynum); } function in struct:__anon1123::B
66 a3->Use();
67 a4->Use();
68 a5->Use();
69 a6->Use();
70 b0->Use();
71 (*b0).Use();
72 b0.get()->Use();
[all...]
/external/llvm/lib/Target/Hexagon/
H A DHexagonRemoveSZExtArgs.cpp59 Instruction* Use = cast<Instruction>(*UI); local
60 SExtInst* SI = new SExtInst(Arg, Use->getType());
62 (EVT::getEVT(Use->getType())));
64 Use->replaceAllUsesWith(SI);
67 Use->eraseFromParent();
/external/chromium/net/proxy/
H A Dproxy_info.cc2 // Use of this source code is governed by a BSD-style license that can be
17 void ProxyInfo::Use(const ProxyInfo& other) { function in class:net::ProxyInfo
/external/chromium/testing/gtest/test/
H A Dgtest-linked_ptr_test.cc51 virtual void Use() { *history << "A" << mynum << " use\n"; } function in class:__anon2739::A
61 virtual void Use() { *history << "B" << mynum << " use\n"; } function in class:__anon2739::B
80 // Use explicit function call notation here to suppress self-assign warning.
110 a3->Use();
111 a4->Use();
112 a5->Use();
113 a6->Use();
114 b0->Use();
115 (*b0).Use();
116 b0.get()->Use();
[all...]
/external/gtest/test/
H A Dgtest-linked_ptr_test.cc51 virtual void Use() { *history << "A" << mynum << " use\n"; } function in class:__anon5087::A
61 virtual void Use() { *history << "B" << mynum << " use\n"; } function in class:__anon5087::B
80 // Use explicit function call notation here to suppress self-assign warning.
110 a3->Use();
111 a4->Use();
112 a5->Use();
113 a6->Use();
114 b0->Use();
115 (*b0).Use();
116 b0.get()->Use();
[all...]
/external/protobuf/gtest/test/
H A Dgtest-linked_ptr_test.cc51 virtual void Use() { *history << "A" << mynum << " use\n"; } function in class:__anon8684::A
61 virtual void Use() { *history << "B" << mynum << " use\n"; } function in class:__anon8684::B
109 a3->Use();
110 a4->Use();
111 a5->Use();
112 a6->Use();
113 b0->Use();
114 (*b0).Use();
115 b0.get()->Use();
118 a0->Use();
[all...]
/external/llvm/lib/CodeGen/
H A DDeadMachineInstructionElim.cpp147 MachineOperand& Use = I.getOperand(); local
148 MachineInstr *UseMI = Use.getParent();
151 assert(Use.isDebug());
H A DMachineCSE.cpp354 MachineInstr *Use = &*I; local
356 if (!Use->isCopyLike()) {
371 MachineInstr *Use = &*I; local
372 HasPHI |= Use->isPHI();
373 CSBBs.insert(Use->getParent());
H A DScheduleDAGInstrs.cpp588 // TODO: Use an AliasAnalysis and do real alias-analysis queries, and
751 void ScheduleDAGInstrs::computeOperandLatency(SUnit *Def, SUnit *Use, argument
780 MachineInstr *UseMI = Use->getInstr();
H A DMachineInstr.cpp1015 bool Use = false; local
1024 Use |= !MO.isUndef();
1032 return std::make_pair(Use || (PartDef && !FullDef), PartDef || FullDef);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGSDNodes.h104 virtual void computeOperandLatency(SUnit *Def, SUnit *Use, argument
107 virtual void computeOperandLatency(SDNode *Def, SDNode *Use,
H A DScheduleDAGSDNodes.cpp586 void ScheduleDAGSDNodes::computeOperandLatency(SDNode *Def, SDNode *Use, argument
595 unsigned DefIdx = Use->getOperand(OpIdx).getResNo();
596 if (Use->isMachineOpcode())
598 OpIdx += TII->get(Use->getMachineOpcode()).getNumDefs();
599 int Latency = TII->getOperandLatency(InstrItins, Def, DefIdx, Use, OpIdx);
600 if (Latency > 1 && Use->getOpcode() == ISD::CopyToReg &&
602 unsigned Reg = cast<RegisterSDNode>(Use->getOperand(1))->getReg();
H A DSelectionDAGISel.cpp1510 SDUse &Use = I.getUse(); local
1511 if (Use.getResNo() == FlagResNo)
1512 return Use.getUser();
1517 /// findNonImmUse - Return true if "Use" is a non-immediate use of "Def".
1520 static bool findNonImmUse(SDNode *Use, SDNode* Def, SDNode *ImmedUse, argument
1528 // The Use may be -1 (unassigned) if it is a newly allocated node. This can
1531 if ((Use->getNodeId() < Def->getNodeId() && Use->getNodeId() != -1))
1536 if (!Visited.insert(Use))
1539 for (unsigned i = 0, e = Use
[all...]
/external/llvm/include/llvm/
H A DUse.h1 //===-- llvm/Use.h - Definition of the Use class ----------------*- C++ -*-===//
10 // This defines the Use class. The Use class represents the operand of an
11 // instruction or some other User instance which refers to a Value. The Use
15 // to a Use without having to store a User pointer in every Use. A
17 // operands, and the low bits of one of the fields (Prev) of the Use
19 // a pointer to any Use. For details, see:
36 class Use;
57 class Use { class in namespace:llvm
82 Use(PrevPtrTag tag) : Val(0) { function in class:llvm::Use
[all...]
/external/webkit/Source/WebCore/loader/cache/
H A DCachedResourceLoader.h123 enum RevalidationPolicy { Use, Revalidate, Reload, Load }; enumerator in enum:WebCore::CachedResourceLoader::RevalidationPolicy
/external/clang/test/SemaTemplate/
H A Ddependent-names.cpp217 void Use() { function in namespace:PR10053::my_file2
240 void Use() { function in namespace:PR10053::my_file2_a
260 void Use() { function in namespace:PR10053::unary
/external/llvm/lib/Target/ARM/
H A DThumb2SizeReduction.cpp149 bool canAddPseudoFlagDep(MachineInstr *Def, MachineInstr *Use,
216 Thumb2SizeReduce::canAddPseudoFlagDep(MachineInstr *Def, MachineInstr *Use, argument
238 for (unsigned i = 0, e = Use->getNumOperands(); i != e; ++i) {
239 const MachineOperand &MO = Use->getOperand(i);
/external/llvm/lib/Transforms/IPO/
H A DDeadArgumentElimination.cpp139 Liveness MarkIfNotLive(RetOrArg Use, UseVector &MaybeLiveUses);
353 /// MarkIfNotLive - This checks Use for liveness in LiveValues. If Use is not
354 /// live, it adds Use to the MaybeLiveUses argument. Returns the determined
355 /// liveness of Use.
356 DAE::Liveness DAE::MarkIfNotLive(RetOrArg Use, UseVector &MaybeLiveUses) { argument
358 if (LiveFunctions.count(Use.F) || LiveValues.count(Use))
362 // Use becomes live.
363 MaybeLiveUses.push_back(Use);
383 RetOrArg Use = CreateRet(RI->getParent()->getParent(), RetValNum); local
429 RetOrArg Use = CreateArg(F, ArgNo); local
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DLICM.cpp558 Use &U = UI.getUse();
732 Instruction *Use = dyn_cast<Instruction>(*UI); local
733 if (!Use || !CurLoop->contains(Use))
738 if (LoadInst *load = dyn_cast<LoadInst>(Use)) {
742 } else if (StoreInst *store = dyn_cast<StoreInst>(Use)) {
745 if (Use->getOperand(1) != ASIV)
762 if (isGuaranteedToExecute(*Use)) {
768 GuaranteedToExecute = isGuaranteedToExecute(*Use);
773 LoopUses.push_back(Use);
[all...]
H A DIndVarSimplify.cpp410 // Use a WeakVH to observe whether this happens.
643 /// caching Use* pointers.
703 Instruction *Use);
729 Instruction *Use) {
731 IRBuilder<> Builder(Use);
733 for (const Loop *L = LI->getLoopFor(Use->getParent());
1348 // narrower is likely a dead phi that has been widened. Use the wider phi
728 getExtend(Value *NarrowOper, Type *WideType, bool IsSigned, Instruction *Use) argument
/external/v8/src/
H A Dlithium-allocator.cc321 // end of a lifetime hole). Use at this position should be attributed to
731 void LAllocator::Use(LifetimePosition block_start, function in class:LAllocator
931 Use(block_start_position, curr_position, from, hint);
984 Use(block_start_position, use_pos, input, NULL);
1001 Use(block_start_position, curr_position.InstructionEnd(), temp, NULL);
/external/v8/tools/gcmole/
H A Dgcmole.cc644 return Use(expr, expr->getType(), THIS, env);
768 return Use(expr, expr->getDecl(), env);
772 return Use(expr, expr->getDecl(), env);
803 ExprEffect Use(const clang::Expr* parent, function in class:__anon11582::FunctionAnalyzer
816 ExprEffect Use(const clang::Expr* parent, function in class:__anon11582::FunctionAnalyzer
822 return Use(parent, var->getType(), var->getNameAsString(), env);
/external/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp2860 Instruction *Use = I->use_back(); local
2864 for (BasicBlock::iterator i = ++BasicBlock::iterator(I); &*i != Use; ++i)
2869 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Use))
2874 if (BitCastInst *BC = dyn_cast<BitCastInst>(Use))
2878 if (LoadInst *LI = dyn_cast<LoadInst>(Use))
2882 if (StoreInst *SI = dyn_cast<StoreInst>(Use))
/external/v8/src/arm/
H A Dlithium-arm.cc597 return Use(value, ToUnallocated(fixed_register));
602 return Use(value, ToUnallocated(reg));
607 return Use(value, new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER));
612 return Use(value,
619 return Use(value, new(zone()) LUnallocated(LUnallocated::WRITABLE_REGISTER));
623 LOperand* LChunkBuilder::Use(HValue* value) { function in class:v8::internal::LChunkBuilder
624 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE));
629 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE,
637 : Use(value);
665 : Use(valu
669 LOperand* LChunkBuilder::Use(HValue* value, LUnallocated* operand) { function in class:v8::internal::LChunkBuilder
[all...]
/external/v8/src/ia32/
H A Dlithium-ia32.cc592 return Use(value, ToUnallocated(fixed_register));
597 return Use(value, ToUnallocated(reg));
602 return Use(value, new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER));
607 return Use(value,
614 return Use(value, new(zone()) LUnallocated(LUnallocated::WRITABLE_REGISTER));
618 LOperand* LChunkBuilder::Use(HValue* value) { function in class:v8::internal::LChunkBuilder
619 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE));
624 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE,
632 : Use(value);
660 : Use(valu
664 LOperand* LChunkBuilder::Use(HValue* value, LUnallocated* operand) { function in class:v8::internal::LChunkBuilder
[all...]

Completed in 2554 milliseconds

12