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

1 2 34 5 6 7 8 91011>>

  /external/llvm/lib/Target/NVPTX/
NVPTXLowerAggrCopies.h 35 virtual bool runOnFunction(Function &F);
NVPTXSplitBBatBar.h 31 virtual bool runOnFunction(Function &F);
  /external/llvm/tools/opt/
GraphPrinters.cpp 38 virtual bool runOnFunction(Function &F) {
  /external/chromium_org/third_party/libjingle/source/talk/base/
virtualsocketserver.h 119 typedef std::vector<Point> Function;
121 static Function* CreateDistribution(uint32 mean, uint32 stddev,
187 // Basic operations on functions. Those that return a function also take
188 // ownership of the function given (and hence, may modify or delete it).
189 static Function* Accumulate(Function* f);
190 static Function* Invert(Function* f);
191 static Function* Resample(Function* f, double x1, double x2, uint32 samples)
    [all...]
  /external/llvm/include/llvm/Support/
InstIterator.h 11 // instructions in a function. This is effectively a wrapper around a two level
23 #include "llvm/IR/Function.h"
121 Function::iterator, BasicBlock::iterator,
124 Function::const_iterator,
128 inline inst_iterator inst_begin(Function *F) { return inst_iterator(*F); }
129 inline inst_iterator inst_end(Function *F) { return inst_iterator(*F, true); }
130 inline const_inst_iterator inst_begin(const Function *F) {
133 inline const_inst_iterator inst_end(const Function *F) {
136 inline inst_iterator inst_begin(Function &F) { return inst_iterator(F); }
137 inline inst_iterator inst_end(Function &F) { return inst_iterator(F, true);
    [all...]
  /external/llvm/unittests/ExecutionEngine/JIT/
MultiJITTest.cpp 37 void createModule1(LLVMContext &Context1, Module *&M1, Function *&FooF1) {
54 void createModule2(LLVMContext &Context2, Module *&M2, Function *&FooF2) {
74 Function *FooF1 = 0;
79 Function *FooF2 = 0;
88 // Call the `foo' function with no arguments:
104 Function *FooF1 = 0;
109 Function *FooF2 = 0;
118 // Call the `foo' function with no arguments:
138 Function *FooF1 = 0;
143 Function *FooF2 = 0
    [all...]
  /external/llvm/include/llvm/IR/
Function.h 1 //===-- llvm/Function.h - Class to represent a single function --*- C++ -*-===//
10 // This file contains the declaration of the Function class, which represents a
11 // single function/procedure in LLVM.
13 // A function basically consists of a list of basic blocks, a list of arguments,
35 : public SymbolTableListTraits<BasicBlock, Function> {
48 static ValueSymbolTable *getSymTab(Function *ItemParent);
54 : public SymbolTableListTraits<Argument, Function> {
65 static ValueSymbolTable *getSymTab(Function *ItemParent);
70 class Function : public GlobalValue
    [all...]
  /external/llvm/lib/Target/Mips/
MipsOptimizeMathLibCalls.cpp 44 virtual bool runOnFunction(Function &F);
48 bool optimizeSQRT(CallInst *Call, Function *CalledFunc,
50 Function::iterator &BB);
67 bool MipsOptimizeMathLibCalls::runOnFunction(Function &F) {
77 Function::iterator CurrBB;
80 for (Function::iterator BB = F.begin(), BE = F.end(); BB != BE;) {
86 Function *CalledFunc;
95 // Skip if function has "use-soft-float" attribute.
100 // Skip if function either has local linkage or is not a known library
101 // function
    [all...]
  /external/llvm/include/llvm/Analysis/
CallGraph.h 13 // Every function in a module is represented as a node in the call graph. The
14 // callgraph node keeps track of which functions the are called by the function
17 // A call graph may contain nodes where the function that they correspond to is
31 // 1. The function is external, reflecting the fact that they could call
33 // 2. The function contains an indirect function call.
36 // function. These will be used when we can prove (through pointer analysis)
44 // CallGraph is, which it currently does by looking for a function named 'main'.
45 // If no function named 'main' is found, the external node is used as the entry
46 // node, reflecting the fact that any function without internal linkage coul
    [all...]
  /bootable/recovery/edify/
expr.h 57 typedef Value* (*Function)(const char* name, State* state,
61 Function fn;
68 // Take one of the Expr*s passed to the function as an argument,
73 // Take one of the Expr*s passed to the function as an argument,
76 // a convenience function for older functions that want to deal only
84 // ("concat" is also available as a builtin function, to concatenate
95 // Convenience function for building expressions with a fixed number
97 Expr* Build(Function fn, YYLTYPE loc, int count, ...);
106 // NULL from a function).
114 Function fn
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/
FunctionRegistry.java 35 protected Map<String, Function> functions = new HashMap<String, Function>();
44 Function function = functions.get(name); local
45 if (function == null) {
46 throw new JSilverInterpreterException("Function not found " + name);
48 Value result = function.execute(args);
50 throw new JSilverInterpreterException("Function " + name + " did not return value");
70 Function function = functions.get(name) local
    [all...]
  /external/guava/guava-tests/test/com/google/common/base/
FunctionsTest.java 42 Function<String, String> identity = Functions.identity();
48 Function<Long, Long> identity = Functions.identity();
91 Function<String, Integer> function = Functions.forMap(map); local
93 assertEquals(1, function.apply("One").intValue());
94 assertEquals(3, function.apply("Three").intValue());
95 assertNull(function.apply("Null"));
98 function.apply("Two");
104 .addEqualityGroup(function, Functions.forMap(map))
119 Function<String, Integer> function = Functions.forMap(map, 42) local
139 Function<String, Integer> function = Functions.forMap(map, 42); local
163 Function<String, Integer> function = Functions.forMap(map, null); local
178 Function<String, Integer> function = Functions.forMap(map, null); local
195 Function<String, Number> function = Functions.forMap(map, number); local
412 Function<Object, Integer> function = Functions.forSupplier(supplier); local
    [all...]
  /external/llvm/lib/Analysis/IPA/
CallGraph.cpp 30 // Root is root of the call graph, or the external node if a 'main' function
40 // indirect calls or calling an external function.
58 // Add every function to the call graph.
62 // If we didn't find a main function, use the external call graph node
74 if (Function *F = getRoot()->getFunction())
77 OS << "<<null function: 0x" << getRoot() << ">>\n";
111 // addToCallGraph - Add a function to the call graph, and link the node to all
114 void addToCallGraph(Function *F) {
117 // If this function has external linkage, anything could call it.
130 // If this function has its address taken, anything could call it
    [all...]
  /art/compiler/jni/portable/
jni_compiler.h 39 class Function;
78 ::llvm::Function* func_;
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
AbsPathChecker.java 28 import org.apache.xpath.functions.Function;
54 * Visit a function.
57 * @param func The function reference object.
60 public boolean visitFunction(ExpressionOwner owner, Function func)
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
CustomElementConstructorBuilder.h 84 v8::Handle<v8::Function> retrieveCallback(v8::Isolate*, const char* name);
91 v8::Handle<v8::Function> m_constructor;
ScheduledAction.h 49 ScheduledAction(v8::Handle<v8::Context>, v8::Handle<v8::Function>, int argc, v8::Handle<v8::Value> argv[], v8::Isolate*);
61 ScopedPersistent<v8::Function> m_function;
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathFunctions.cpp 49 #define DEFINE_FUNCTION_CREATOR(Class) static Function* create##Class() { return new Class; }
67 typedef Function *(*FactoryFn)();
74 class FunLast : public Function {
81 class FunPosition : public Function {
88 class FunCount : public Function {
93 class FunId : public Function {
98 class FunLocalName : public Function {
105 class FunNamespaceURI : public Function {
112 class FunName : public Function {
119 class FunString : public Function {
675 FunctionRec function; member in struct:WebCore::XPath::FunctionMapping
    [all...]
  /external/guava/guava-gwt/src/com/google/common/collect/
ByFunctionOrdering_CustomFieldSerializer.java 19 import com.google.common.base.Function;
39 (Function<Object, Object>) reader.readObject(),
45 writer.writeObject(instance.function);
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
FuturesTransformTest.java 19 import com.google.common.base.Function;
24 * Unit tests for {@link Futures#transform(ListenableFuture, Function)}.
43 implements Function<Integer, String> {
  /external/llvm/include/llvm/ExecutionEngine/
JITEventListener.h 24 class Function;
31 /// about a generated machine code function.
42 /// The machine function the struct contains information for.
62 /// NotifyFunctionEmitted - Called after a function has been successfully
63 /// emitted to memory. The function still has its MachineFunction attached,
65 virtual void NotifyFunctionEmitted(const Function &,
74 /// parameter to a previous NotifyFunctionEmitted call. The Function passed
  /external/llvm/lib/Analysis/
BlockFrequencyInfo.cpp 34 BFI = new BlockFrequencyImpl<BasicBlock, Function, BranchProbabilityInfo>();
46 bool BlockFrequencyInfo::runOnFunction(Function &F) {
  /external/llvm/lib/Target/X86/
X86JITInfo.h 18 #include "llvm/IR/Function.h"
33 /// replaceMachineCodeForFunction - Make it so that calling the function
51 /// small native function that simply calls the function at the specified
53 virtual void *emitFunctionStub(const Function* F, void *Target,
66 virtual void relocate(void *Function, MachineRelocation *MR,
  /libcore/luni/src/test/java/tests/support/
MockFunction.java 19 import SQLite.Function;
23 public class MockFunction implements SQLite.Function{
35 public void function(FunctionContext fc, String args[]) { method in class:MockFunction
  /art/compiler/llvm/
runtime_support_builder_thumb2.cc 26 #include <llvm/IR/Function.h>
35 using ::llvm::Function;
69 Function* parent_func = irb_.GetInsertBlock()->getParent();
75 Function* slow_func = GetRuntimeSupportFunction(runtime_support::LockObject);

Completed in 635 milliseconds

1 2 34 5 6 7 8 91011>>