HomeSort by relevance Sort by last modified time
    Searched refs:Function (Results 251 - 275 of 1432) sorted by null

<<11121314151617181920>>

  /external/llvm/lib/Transforms/Utils/
MetaRenamer.cpp 20 #include "llvm/IR/Function.h"
63 // simply avoid always having the same function names, and we need to
118 bool runOnFunction(Function &F) {
119 for (Function::arg_iterator AI = F.arg_begin(), AE = F.arg_end();
124 for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB) {
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
stencil.c 122 * Set the function and reference value for stencil testing.
124 * \param frontfunc front test function.
125 * \param backfunc back test function.
159 if (ctx->Stencil.Function[0] == frontfunc &&
160 ctx->Stencil.Function[1] == backfunc &&
167 ctx->Stencil.Function[0] = frontfunc;
168 ctx->Stencil.Function[1] = backfunc;
181 * Set the function and reference value for stencil testing.
183 * \param func test function.
212 if (ctx->Stencil.Function[face] == func &
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 147 /// CallExprAST - Expression class for function calls.
177 /// PrototypeAST - This class represents the "prototype" for a function,
179 /// of arguments the function takes), as well as if it is an operator.
200 Function *Codegen();
203 /// FunctionAST - This class represents a function definition itself.
211 Function *Codegen();
457 return ErrorP("Expected function name in prototype");
553 // Look this variable up in the function.
562 Function *F = TheModule->getFunction(std::string("unary")+Opcode);
588 Function *F = TheModule->getFunction(std::string("binary")+Op)
    [all...]
  /external/mesa3d/src/mesa/main/
stencil.c 122 * Set the function and reference value for stencil testing.
124 * \param frontfunc front test function.
125 * \param backfunc back test function.
159 if (ctx->Stencil.Function[0] == frontfunc &&
160 ctx->Stencil.Function[1] == backfunc &&
167 ctx->Stencil.Function[0] = frontfunc;
168 ctx->Stencil.Function[1] = backfunc;
181 * Set the function and reference value for stencil testing.
183 * \param func test function.
212 if (ctx->Stencil.Function[face] == func &
    [all...]
  /art/compiler/llvm/
compiler_llvm.h 44 class Function;
runtime_support_builder_arm.cc 24 #include <llvm/IR/Function.h>
32 using ::llvm::Function;
63 Function* ori_func = GetRuntimeSupportFunction(runtime_support::GetCurrentThread);
106 Function* ori_func = GetRuntimeSupportFunction(runtime_support::GetCurrentThread);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8MutationObserverCustom.cpp 52 throwTypeError("Callback argument must be a function", args.GetIsolate());
59 RefPtr<MutationCallback> callback = V8MutationCallback::create(v8::Handle<v8::Function>::Cast(arg), context, wrapper, args.GetIsolate());
  /external/chromium_org/v8/src/
lazy-instance.h 30 // useful for places you would normally use a function-level static, but you
72 // critical path. Consider adding your initialization code to a function
172 template <typename Function, typename Storage>
173 static void Init(OnceType* once, Function function, Storage storage) {
174 CallOnce(once, function, storage);
181 template <typename Function, typename Storage>
182 static void Init(OnceType* once, Function function, Storage storage) {
184 function(storage)
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
MapsSortedTransformValuesTest.java 23 import com.google.common.base.Function;
27 * Tests for {@link Maps#transformValues(SortedMap, Function)}.
  /external/llvm/include/llvm/Analysis/
IntervalPartition.h 11 // calculates and represents the interval partition of a function, or a
35 // a function. This partition divides the control flow graph into a set of
55 // run - Calculate the interval partition for this function
56 virtual bool runOnFunction(Function &F);
68 // block of the function.
91 // releaseMemory - Reset state back to before function was analyzed
LazyValueInfo.h 75 virtual bool runOnFunction(Function &F);
LibCallAliasAnalysis.h 51 virtual bool runOnFunction(Function &F) {
ProfileInfoLoader.h 26 class Function;
49 // getRawFunctionCounts - This method is used by consumers of function
  /external/llvm/include/llvm/Transforms/
IPO.h 24 class Function;
53 /// createConstantMergePass - This function returns a new pass that merges
63 /// createGlobalOptimizerPass - This function returns a new pass that optimizes
86 /// to inline direct function calls to small functions.
110 /// Note that commandline options that are used with the above function are not
118 /// which are not used by the body of the function.
150 /// program into a function if it can.
155 /// program into a function if it can. This is used by bugpoint.
164 /// createStripDeadPrototypesPass - This pass removes any function declarations
171 /// It also discovers function arguments that are not captured by the functio
    [all...]
  /external/llvm/lib/Analysis/IPA/
CallPrinter.cpp 34 if (Function *Func = Node->getFunction())
GlobalsModRef.cpp 45 /// function in the program. Later, the entries for these functions are
46 /// removed if the function is found to call an external function (in which
51 /// function.
66 /// FunctionEffect - Capture whether or not this function reads or writes to
87 /// FunctionInfo - For each function, keep track of what globals are
89 std::map<const Function*, FunctionRecord> FunctionInfo;
121 /// getModRefBehavior - Return the behavior of the specified function if
123 /// case the most generic behavior of this function should be returned.
124 ModRefBehavior getModRefBehavior(const Function *F)
    [all...]
  /external/llvm/lib/Analysis/
LibCallSemantics.cpp 18 #include "llvm/IR/Function.h"
42 /// the specified function if we have it. If not, return null.
44 LibCallInfo::getFunctionInfo(const Function *F) const {
60 // Look up this function in the string map.
NoAliasAnalysis.cpp 49 virtual ModRefBehavior getModRefBehavior(const Function *F) {
  /external/llvm/lib/CodeGen/
GCMetadata.cpp 18 #include "llvm/IR/Function.h"
39 bool runOnFunction(Function &F);
50 GCFunctionInfo::GCFunctionInfo(const Function &F, GCStrategy &S)
90 GCFunctionInfo &GCModuleInfo::getFunctionInfo(const Function &F) {
142 bool Printer::runOnFunction(Function &F) {
MachineFunctionAnalysis.cpp 46 bool MachineFunctionAnalysis::runOnFunction(Function &F) {
MachineFunctionPass.cpp 14 #include "llvm/IR/Function.h"
26 bool MachineFunctionPass::runOnFunction(Function &F) {
SjLjEHPrepare.cpp 64 bool runOnFunction(Function &F);
72 bool setupEntryBlockAndCallSites(Function &F);
75 Value *setupFunctionContext(Function &F, ArrayRef<LandingPadInst*> LPads);
76 void lowerIncomingArguments(Function &F);
77 void lowerAcrossUnwindEdges(Function &F, ArrayRef<InvokeInst*> Invokes);
91 // Build the function context structure.
125 /// function context
153 /// instruction with those returned by the personality function.
184 /// setupFunctionContext - Allocate the function context on the stack and fill
187 setupFunctionContext(Function &F, ArrayRef<LandingPadInst*> LPads)
    [all...]
  /external/llvm/lib/Target/R600/
AMDILIntrinsicInfo.cpp 76 Function*
  /external/llvm/lib/Target/XCore/
XCoreMachineFunctionInfo.h 1 //===-- XCoreMachineFuctionInfo.h - XCore machine function info -*- C++ -*-===//
10 // This file declares XCore-specific per-machine-function information.
24 class Function;
  /external/llvm/lib/Transforms/IPO/
StripDeadPrototypes.cpp 1 //===-- StripDeadPrototypes.cpp - Remove unused function declarations ----===//
28 /// @brief Pass to remove unused function declarations.
42 "Strip Unused Function Prototypes", false, false)
47 // Erase dead function prototypes.
49 Function *F = I++;
50 // Function must be a prototype and unused.

Completed in 1435 milliseconds

<<11121314151617181920>>