HomeSort by relevance Sort by last modified time
    Searched defs:Use (Results 1 - 25 of 31) sorted by null

1 2

  /external/chromium/base/memory/
linked_ptr_unittest.cc 2 // 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); }
29 virtual void Use() { history += base::StringPrintf("B%d use\n", mynum); }
66 a3->Use();
67 a4->Use();
68 a5->Use();
69 a6->Use();
70 b0->Use();
    [all...]
  /external/chromium/net/proxy/
proxy_info.cc 2 // Use of this source code is governed by a BSD-style license that can be
17 void ProxyInfo::Use(const ProxyInfo& other) {
  /external/llvm/lib/Target/Hexagon/
HexagonRemoveSZExtArgs.cpp 60 Instruction* Use = cast<Instruction>(*UI);
61 SExtInst* SI = new SExtInst(Arg, Use->getType());
63 (EVT::getEVT(Use->getType())));
65 Use->replaceAllUsesWith(SI);
68 Use->eraseFromParent();
HexagonHardwareLoops.cpp 174 /// instruction would not use a bumped value that has not yet been
629 // If so, use the immediate value rather than the register.
855 // call is not allowed because the callee may use a hardware loop
878 /// the use of the hardware loop function.
913 // parent block, and the only use of that phi node is this instruction, then
931 MachineOperand &Use = J.getOperand();
932 MachineInstr *UseMI = Use.getParent();
    [all...]
  /external/chromium/testing/gtest/test/
gtest-linked_ptr_test.cc 4 // Redistribution and use in source and binary forms, with or without
24 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
51 virtual void Use() { *history << "A" << mynum << " use\n"; }
61 virtual void Use() { *history << "B" << mynum << " use\n"; }
80 // Use explicit function call notation here to suppress self-assign warning.
110 a3->Use();
111 a4->Use();
    [all...]
  /external/gtest/test/
gtest-linked_ptr_test.cc 4 // Redistribution and use in source and binary forms, with or without
24 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
51 virtual void Use() { *history << "A" << mynum << " use\n"; }
61 virtual void Use() { *history << "B" << mynum << " use\n"; }
80 // Use explicit function call notation here to suppress self-assign warning.
110 a3->Use();
111 a4->Use();
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/test/
gtest-linked_ptr_test.cc 4 // Redistribution and use in source and binary forms, with or without
24 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
51 virtual void Use() { *history << "A" << mynum << " use\n"; }
61 virtual void Use() { *history << "B" << mynum << " use\n"; }
80 // Use explicit function call notation here to suppress self-assign warning.
110 a3->Use();
111 a4->Use();
    [all...]
  /external/llvm/lib/CodeGen/
DeadMachineInstructionElim.cpp 76 // This def has a non-debug use. Don't delete the instruction!
134 MachineOperand& Use = I.getOperand();
135 MachineInstr *UseMI = Use.getParent();
138 assert(Use.isDebug());
MachineCSE.cpp 125 // Only coalesce single use copies. This ensure the copy will be
174 // Found a use!
179 // See a def of Reg (or an alias) before encountering any use, it's
329 // actually use it as a load.
354 MachineInstr *Use = &*I;
355 CSUses.insert(Use);
359 MachineInstr *Use = &*I;
360 if (!CSUses.count(Use)) {
378 // Heuristics #2: If the expression doesn't not use a vr and the only use
    [all...]
MachineInstr.cpp 54 // use/def lists.
90 /// Change a def to a use, or a use to a def.
115 // function, deregister the operand from the register's use/def list.
138 // register's use/def lists.
162 // register's use/def list.
286 OS << "imp-use";
576 /// this instruction from their respective use lists. This requires that the
577 /// operands already be on their use lists.
585 /// this instruction from their respective use lists. This requires that th
    [all...]
  /external/protobuf/gtest/test/
gtest-linked_ptr_test.cc 4 // Redistribution and use in source and binary forms, with or without
24 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
51 virtual void Use() { *history << "A" << mynum << " use\n"; }
61 virtual void Use() { *history << "B" << mynum << " use\n"; }
109 a3->Use();
110 a4->Use();
111 a5->Use();
    [all...]
  /external/llvm/include/llvm/IR/
Use.h 1 //===-- 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
12 // class keeps the "use list" of the referenced value up to date.
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
    [all...]
  /external/webkit/Source/WebCore/loader/cache/
CachedResourceLoader.h 123 enum RevalidationPolicy { Use, Revalidate, Reload, Load };
  /external/llvm/lib/Transforms/Scalar/
LICM.cpp 28 // loop of the pointer to use a temporary alloca'd variable. We then use
156 /// hoist - When an instruction is found to only use loop invariant operands
436 // FIXME: This should use mod/ref information to see if we can hoist or
528 // Otherwise, if we have multiple exits, use the SSAUpdater to do all of the
581 // Grab the use before incrementing the iterator.
582 Use &U = UI.getUse();
583 // Increment the iterator before removing the use from the list.
597 /// hoist - When an instruction is found to only use loop invariant operands
775 Instruction *Use = dyn_cast<Instruction>(*UI)
    [all...]
  /external/clang/test/SemaTemplate/
dependent-names.cpp 99 foo(v); // expected-error {{use of undeclared identifier}}
217 void Use() {
240 void Use() {
260 void Use() {
  /external/llvm/lib/Target/PowerPC/
PPCCTRLoops.cpp 473 // call is not allowed because the callee may use a CTR loop
490 /// an instruction that inhibits the use of the CTR loop function.
520 // the parent block, and the only use of that phi node is this
537 MachineOperand& Use = J.getOperand();
538 MachineInstr *UseMI = Use.getParent();
550 // This def has a non-debug use. Don't delete the instruction!
580 MachineOperand& Use = I.getOperand();
581 MachineInstr *UseMI = Use.getParent();
584 if (Use.isDebug()) // this might also be a instr -> phi -> instr case
660 // When the exit and latch are not the same, use the latch block as th
    [all...]
  /external/llvm/lib/Transforms/IPO/
DeadArgumentElimination.cpp 151 Liveness MarkIfNotLive(RetOrArg Use, UseVector &MaybeLiveUses);
175 /// deletes arguments to functions which are external. This is only for use
187 "Dead Argument Hacking (BUGPOINT USE ONLY; DO NOT USE)",
307 // Finally, remove the old call from the program, reducing the use-count of
399 /// MarkIfNotLive - This checks Use for liveness in LiveValues. If Use is not
400 /// live, it adds Use to the MaybeLiveUses argument. Returns the determined
401 /// liveness of Use.
402 DAE::Liveness DAE::MarkIfNotLive(RetOrArg Use, UseVector &MaybeLiveUses)
    [all...]
  /external/clang/lib/Analysis/
UninitializedValues.cpp 263 // Classification of DeclRefExprs as use or initialization.
302 /// \brief Classify each DeclRefExpr as an initialization or a use. Any
309 Use,
391 // use.
393 classify(BO->getLHS(), Use);
402 classify(UO->getSubExpr(), Use);
417 classify(CE->getSubExpr(), Use);
470 UninitUse Use(ex, isAlwaysUninit(v));
473 if (Use.getKind() == UninitUse::Always)
474 return Use;
    [all...]
  /external/clang/lib/Sema/
AnalysisBasedWarnings.cpp 490 /// uninitialized use of a variable.
491 static void DiagUninitUse(Sema &S, const VarDecl *VD, const UninitUse &Use,
495 // Diagnose each branch which leads to a sometimes-uninitialized use.
496 for (UninitUse::branch_iterator I = Use.branch_begin(), E = Use.branch_end();
498 assert(Use.getKind() == UninitUse::Sometimes);
500 const Expr *User = Use.getUser();
522 // FIXME: This also happens if the first use of a variable is always
621 S.Diag(Use.getUser()->getLocStart(),
622 Use.getKind() == UninitUse::Always ? diag::warn_uninit_va
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGISel.cpp 155 UseMBPI("use-mbpi",
156 cl::desc("use Machine Branch Probability Info"),
435 // Otherwise this is another use or second copy use.
    [all...]
  /external/v8/src/
lithium-allocator.cc 2 // Redistribution and use in source and binary forms, with or without
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
212 // We cannot spill a live range that has a use requiring a register
281 // split that interval and use the first part.
284 // If the split position coincides with the beginning of a use interval
285 // we need to split use positons in a special way.
289 // When splitting at start we need to locate the previous use interval.
306 // Partition original use intervals to the two live ranges.
315 // Find the last use position before the split and the first us
    [all...]
  /external/v8/tools/gcmole/
gcmole.cc 2 // Redistribution and use in source and binary forms, with or without
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
644 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,
816 ExprEffect Use(const clang::Expr* parent,
822 return Use(parent, var->getType(), var->getNameAsString(), env);
926 // We are ignoring try/catch because V8 does not use them
    [all...]
  /external/v8/src/arm/
lithium-arm.cc 2 // Redistribution and use in source and binary forms, with or without
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
64 // Call instructions can use only fixed registers as temporaries and
66 // Inputs operands must use a fixed register or use-at-start policy or
597 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
    [all...]
  /external/v8/src/ia32/
lithium-ia32.cc 2 // Redistribution and use in source and binary forms, with or without
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
74 // Call instructions can use only fixed registers as temporaries and
76 // Inputs operands must use a fixed register or use-at-start policy or
592 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
    [all...]
  /external/v8/src/mips/
lithium-mips.cc 2 // Redistribution and use in source and binary forms, with or without
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
64 // Call instructions can use only fixed registers as temporaries and
66 // Inputs operands must use a fixed register or use-at-start policy or
597 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
    [all...]

Completed in 1725 milliseconds

1 2