HomeSort by relevance Sort by last modified time
    Searched defs:function (Results 151 - 175 of 956) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/linear/
AbstractLinearOptimizer.java 41 * Linear objective function.
44 protected LinearObjectiveFunction function; field in class:AbstractLinearOptimizer
110 this.function = f;
123 * @return the point/value pair giving the optimal value for objective function
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
ProcessorExsltFunction.java 51 * This class processes parse events for an exslt func:function element.
69 msg = "func:function element must be top level.";
86 msg = "func:function name must have namespace";
112 ElemTemplateElement function = handler.getElemTemplateElement(); local
113 validate(function, handler); // may throw exception
153 msg ="misplaced literal result in a func:function container.";
  /external/boringssl/src/util/fipstools/testdata/ppc64le-Sample/
out.s 44 .string "function is %p\n"
76 .type function, @function
78 function: label
86 .localentry function,.-function
215 # WAS addis 5,2,function@toc@ha
216 # WAS addi 5,5,function@toc@l
384 .size function,.-function
    [all...]
  /external/boringssl/src/util/fipstools/testdata/ppc64le-Sample2/
out.s 23 .type exported_function, @function
45 # WAS addis 24,2,function@toc@ha
136 # WAS addi 24,24,function@toc@l
263 .type function, @function
265 function: label
273 .localentry function,.-function
362 # WAS addis 6,2,function@toc@ha
375 # WAS addi 6,6,function@toc@
    [all...]
  /external/clang/test/CodeGen/
vla.c 55 void function(short width, int data[][width]) {} // expected-note {{passing argument to parameter 'data' here}} function
59 // CHECK: call void @function(i16 signext 1, i32* null)
60 function(1, 0);
61 // CHECK: call void @function(i16 signext 1, i32* inttoptr
62 function(1, 0xbadbeef); // expected-warning {{incompatible integer to pointer conversion passing}}
63 // CHECK: call void @function(i16 signext 1, i32* {{.*}})
64 function(1, bork);
72 // CHECK: call void @function(i16 signext 1, i32* {{.*}})
73 function(1, bork[2]);
  /external/clang/test/CodeGenCXX/
mangle-ms-template-callback.cpp 42 void function(C<void(void)>) {} function
43 // CHECK: "\01?function@@YAXV?$C@$$A6AXXZ@@@Z"
  /external/clang/test/SemaCXX/
cxx11-crashes.cpp 51 class function // expected-note 2 {{candidate}} class in namespace:rdar12542261
55 function(_Fp, typename check_complete<_Fp>::type* = 0); // expected-note {{candidate}}
61 function<void()> m_OnChange = [&, LeftCanvas]() { }; // expected-error {{no viable conversion}}
  /external/clang/test/SemaTemplate/
deduction-crash.cpp 95 void function(S a, T b) {} function
98 function(0, 1);
  /external/deqp/modules/gles31/functional/
es31fNegativeTestShared.hpp 91 TestFunc function; member in struct:deqp::gles31::Functional::NegativeTestShared::FunctionContainer
  /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/libusb/tests/
libusb_testlib.h 35 /** Values returned from a test function to indicate test result */
69 * Function pointer for a libusb test function.
82 /** The test library will call this function to run the test. */
83 libusb_testlib_test_function function; member in struct:__anon25929
  /external/linux-kselftest/tools/testing/selftests/rcutorture/formal/srcu-cbmc/src/
workqueues.h 33 void (*function)(unsigned long); member in struct:timer_list
  /external/mesa3d/src/mesa/main/tests/
dispatch_sanity.cpp 65 struct function { struct
71 extern const struct function common_desktop_functions_possible[];
72 extern const struct function gl_compatibility_functions_possible[];
73 extern const struct function gl_core_functions_possible[];
74 extern const struct function gles11_functions_possible[];
75 extern const struct function gles2_functions_possible[];
76 extern const struct function gles3_functions_possible[];
77 extern const struct function gles31_functions_possible[];
132 validate_functions(struct gl_context *ctx, const struct function *function_table,
138 /* The context version is >= the GL version where the function wa
    [all...]
  /external/sl4a/Docs/
generate_api_reference_md.py 24 # STATE_INITIAL: looking for rpc or function defintion
26 # STATE_FUNCTION_DECORATOR: in the middle of a multi-line function definition
27 # STATE_COMPLETE: done parsing a function
42 # RE to match a function definition and extract out the function name.
46 class Function(object):
47 """Represents a RPC-exported function."""
50 """Constructs a function object given its RPC and function signature."""
71 """Parse function definition.""
89 def function(self): member in class:Function
    [all...]
  /external/swiftshader/src/OpenGL/compiler/
AnalyzeCallDepth.cpp 102 node->getSequence().resize(1); // Remove function body
169 case EOpFunction: // Function definition
191 return true; // Check the arguments for function calls
196 FunctionNode *function = findFunctionByName(node->getName()); local
198 if(!function)
200 function = new FunctionNode(node);
201 functions.push_back(function);
206 currentFunction->addCallee(function);
210 globalFunctionCalls.insert(function);
  /external/swiftshader/src/Reactor/
Main.cpp 41 Function<Int(Pointer<Int>, Int)> function; local
43 Pointer<Int> p = function.Arg<0>();
45 Int y = function.Arg<1>();
62 routine = function(L"one");
81 Function<Int()> function; local
100 routine = function(L"one");
118 Function<Int(Pointer<Byte>, Pointer<Byte>)> function; local
178 Function<Int(Pointer<Byte>)> function; local
227 Function<Int(Pointer<Byte>)> function; local
270 Function<Int(Pointer<Byte>)> function; local
397 Function<Int(Void)> function; local
964 Function<Int(Pointer<Byte>)> function; local
    [all...]
  /external/syslinux/core/lwip/src/include/lwip/
netifapi.h 70 void (* function)(struct netifapi_msg_msg *msg); member in struct:netifapi_msg
  /external/tensorflow/tensorflow/compiler/xla/service/cpu/
ir_function.h 19 #include "llvm/IR/Function.h"
32 // IrFunction creates and encapsulates an llvm::Function, exposing methods to
33 // emitters for function and function argument access.
34 // The llvm::Function is created with the standard function signature
43 // // Emit IR for function body using IrFunction helper methods.
45 // // Store reference to llvm::Function for future invocation.
46 // ir_functions.push_back(compute_function.function());
47 // // Delete IrFunction (finalizes IR function and restores caller insertio
71 llvm::Function* function() { return function_; } function in class:xla::cpu::IrFunction
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/gpu/
hlo_to_ir_bindings.cc 19 #include "llvm/IR/Function.h"
39 // I/O HLOs are bound to the arguments of the current IR function. I.e.,
42 llvm::Function* function = ir_builder_->GetInsertBlock()->getParent(); local
43 CHECK_EQ(io_hlos.size() + 1, function->arg_size());
48 auto arg_iter = function->arg_begin();
  /external/tensorflow/tensorflow/core/framework/
function_testlib.cc 18 #include "tensorflow/core/framework/function.h"
27 namespace function { namespace in namespace:tensorflow::test
205 void FunctionTestSchedClosure(std::function<void()> fn) {
211 } // end namespace function
  /external/v8/src/compiler-dispatcher/
optimizing-compile-dispatcher.cc 23 Handle<JSFunction> function = job->info()->closure(); local
24 function->ReplaceCode(function->shared()->code());
28 // JSFunction::EnsureLiterals(function);
111 // The function may have already been optimized by OSR. Simply continue.
115 // The function may have already been optimized by OSR. Simply continue.
198 Handle<JSFunction> function(*info->closure());
199 if (function->IsOptimized()) {
202 function->ShortPrint();
  /external/v8/src/runtime/
runtime.cc 54 static const Runtime::Function kIntrinsicFunctions[] = {
95 const Runtime::Function* function = &kIntrinsicFunctions[i]; local
97 reinterpret_cast<const unsigned char*>(function->name),
98 static_cast<int>(strlen(function->name)));
101 entry->value = const_cast<Runtime::Function*>(function);
108 const Runtime::Function* Runtime::FunctionForName(const unsigned char* name,
116 return reinterpret_cast<Function*>(entry->value);
122 const Runtime::Function* Runtime::FunctionForEntry(Address entry)
    [all...]
  /external/v8/src/
source-position.h 78 void Print(std::ostream& out, SharedFunctionInfo* function) const;
108 Handle<SharedFunctionInfo> function; member in struct:v8::internal::SourcePositionInfo
  /frameworks/base/services/core/jni/
com_android_server_UsbDeviceManager.cpp 123 const char *function = env->GetStringUTFChars(jFunction, NULL); local
126 if (!strcmp(function, "ptp")) {
129 if (!strcmp(function, "mtp") || ptp) {
132 ALOGE("could not open control for %s %s", function, strerror(errno));
140 if (function != NULL) {
141 env->ReleaseStringUTFChars(jFunction, function);
148 if (function != NULL) {
149 env->ReleaseStringUTFChars(jFunction, function);
  /frameworks/native/vulkan/include/vulkan/
vk_layer_interface.h 52 VkLayerFunction function; member in struct:__anon46619
68 VkLayerFunction function; member in struct:__anon46621

Completed in 678 milliseconds

1 2 3 4 5 67 8 91011>>