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

<<11121314151617181920>>

  /external/v8/src/regexp/mips64/
regexp-macro-assembler-mips64.cc 110 * code entry as cast to a function with the signature:
374 ExternalReference function = variable
376 __ CallCFunction(function, argument_count);
384 // Check if function returned non-zero for success or zero for failure.
    [all...]
  /external/vulkan-validation-layers/include/vulkan/
vk_layer.h 72 // Function prototype for unknown physical device extension command
114 VkLayerFunction function; member in struct:__anon43429
130 VkLayerFunction function; member in struct:__anon43431
  /external/wpa_supplicant_8/src/utils/
trace.c 46 * "The dl_iterate_phdr() function walks through the list of an
47 * application's shared objects and calls the function callback
145 const char *function; member in struct:bfd_data
173 &data->function,
197 if (data.function)
198 aname = bfd_demangle(abfd, data.function,
200 name = aname ? aname : data.function;
217 &data.function, &data.line);
237 return data.function;
307 if (data.function &
    [all...]
  /frameworks/compile/libbcc/lib/
RSScriptGroupFusion.cpp 30 using llvm::Function;
39 const Function* getInvokeFunction(const Source& source, const int slot,
44 Function* func = newModule->getFunction(functionName);
45 // Materialize the function so that later the caller can inspect its argument
51 const Function*
58 ALOGE("Kernel fusion (module %s slot %d): failed to find kernel function",
64 ALOGE("Kernel fusion (module %s function %s): cannot handle multiple inputs",
73 const Function* function = mergedModule->getFunction(functionName); local
75 return function;
    [all...]
  /frameworks/rs/script_api/
GenerateHeaderFiles.cpp 203 Function* function = spec.getFunction(); local
204 writeVersionGuardStart(file, spec.getVersionInfo(), function->getFinalVersion());
223 function->getDeprecatedApiLevel(), function->getDeprecatedMessage());
226 // Write the function name.
283 static void writeFunctionComment(GeneratedFile* file, const Function& function) {
285 writeComment(file, function.getName(), function.getSummary(), function.getDescription()
372 Function* function = spec->getFunction(); local
    [all...]
GenerateStubsWhiteList.cpp 189 * This function is recursive because compression is possible at each level of the definition.
193 * This function mangles correctly the types currently used by RenderScript. It does
194 * not currently mangle more complicated types like function pointers, namespaces,
323 /* Add the mangling for this permutation of the function. apiLevel and intSize is used
346 /* Add to the set the mangling of each function prototype that can be generated from this
354 // If the function is inlined, we won't generate an unresolved external for that.
389 /* Generate the white list file of the mangled function prototypes. This generated list is used
398 const Function* function = f.second; local
399 for (auto spec : function->getSpecifications())
509 const Function* function = f.second; local
    [all...]
  /libcore/ojluni/src/main/java/java/util/
ArrayPrefixHelpers.java 40 import java.util.function.BinaryOperator;
41 import java.util.function.DoubleBinaryOperator;
42 import java.util.function.IntBinaryOperator;
43 import java.util.function.LongBinaryOperator;
107 final BinaryOperator<T> function; field in class:ArrayPrefixHelpers.CumulateTask
114 BinaryOperator<T> function,
117 this.function = function; this.array = array;
126 CumulateTask(CumulateTask<T> parent, BinaryOperator<T> function,
130 this.function = function; this.array = array
259 final LongBinaryOperator function; field in class:ArrayPrefixHelpers.LongCumulateTask
409 final DoubleBinaryOperator function; field in class:ArrayPrefixHelpers.DoubleCumulateTask
559 final IntBinaryOperator function; field in class:ArrayPrefixHelpers.IntCumulateTask
    [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/
reflection.cpp 54 // 2. Traverse any live function, while skipping if-tests with a compile-time constant
55 // condition of false, and while adding any encountered function calls to the live
56 // function list.
58 // Repeat until the live function list is empty.
750 TIntermNode* function = it.functions.back(); local
752 function->traverse(&it);
    [all...]
  /bionic/libc/kernel/uapi/linux/
ncp_fs.h 28 unsigned int function; member in struct:ncp_ioctl_request
  /device/google/wahoo/usb/
UsbGadget.cpp 49 #define FUNCTION_NAME "function"
178 struct dirent *function; local
186 while (((function = readdir(config)) != NULL)) {
187 if ((strstr(function->d_name, FUNCTION_NAME) == NULL)) continue;
189 sprintf(filepath, "%s/%s", path, function->d_name);
261 static int linkFunction(const char *function, int index) {
265 sprintf(functionPath, "%s%s", FUNCTIONS_PATH, function);
490 char *function = strtok(const_cast<char *>(vendorFunctions.c_str()), ","); local
491 while (function != NULL) {
492 if (string(function) == "diag" && linkFunction("diag.diag", i++)
    [all...]
  /external/clang/lib/CodeGen/
CGDeclCXX.cpp 86 llvm::Constant *function; local
97 // If __cxa_atexit is disabled via a flag, a different helper function is
105 function = CGM.getAddrOfCXXStructor(dtor, StructorType::Complete);
109 // Otherwise, the standard logic requires a helper function.
111 function = CodeGenFunction(CGM)
117 CGM.getCXXABI().registerGlobalDtor(CGF, D, function, argument);
192 /// Create a stub function, suitable for being passed to atexit,
193 /// which passes the given address to the given destructor function.
197 // Get the destructor function type, void(*)(void).
206 llvm::Function *fn = CGM.CreateGlobalInitOrDestructFunction(ty, FnName.str()
    [all...]
  /external/cmockery/cmockery_0_1_2/src/google/
cmockery.h 35 // Retrieves a return value for the current function.
38 /* Stores a value to be returned by the specified function later.
42 #define will_return(function, value) \
43 _will_return(#function, __FILE__, __LINE__, (void*)value, 1)
44 #define will_return_count(function, value, count) \
45 _will_return(#function, __FILE__, __LINE__, (void*)value, count)
47 /* Add a custom parameter checking function. If the event parameter is NULL
48 * the event structure is allocated internally by this function. If event
52 #define expect_check(function, parameter, check_function, check_data) \
53 _expect_check(#function, #parameter, __FILE__, __LINE__, check_function,
299 UnitTestFunction function; member in struct:UnitTest
    [all...]
  /external/deqp/modules/gles31/functional/
es31fDebugTests.cpp 261 TestFunctionWrapper function; member in struct:deqp::gles31::Functional::__anon18700::FunctionContainer
403 * produced to vary between executions. This function splits messages
    [all...]
  /external/google-breakpad/src/processor/
minidump_processor.cc 241 // long as the Minidump object: it will be deleted when this function
1516 string function = assertion->function(); local
    [all...]
  /external/guava/guava/src/com/google/common/collect/
Collections2.java 29 import com.google.common.base.Function;
227 * Returns a collection that applies {@code function} to each element of
246 Function<? super F, T> function) {
247 return new TransformedCollection<F, T>(fromCollection, function);
252 final Function<? super F, ? extends T> function; field in class:Collections2.TransformedCollection
255 Function<? super F, ? extends T> function) {
257 this.function = checkNotNull(function)
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
ExpressionTranslator.java 314 * Process AST node for a function (e.g. dosomething(...)).
321 // Because the function name may have dots in, the parser would have broken
340 setResult(function(fullFunctionName.toString(), args)); method
344 * Generate a JavaExpression for calling a function.
346 private JavaExpression function(String name, PExpression... csExpressions) { method in class:ExpressionTranslator
  /external/kernel-headers/original/uapi/linux/
ncp_fs.h 25 unsigned int function; member in struct:ncp_ioctl_request
  /external/mesa3d/src/compiler/glsl/
lower_jumps.cpp 33 * 4. Replace all "return"s with a single return at the end of the function,
34 * for the main function and/or other functions
51 * until the end of the function.
89 * jump back to the top, or return from the function).
102 * of it, or return from the function.
110 * of it, or return from the function.
117 * of it, or return from the function.
124 * it or return from the function.
131 * only return from the function.
188 /* also supported for the "function loop" *
273 struct function_record function; member in struct:__anon29208::ir_lower_jumps_visitor
    [all...]
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_format_aos.c 773 LLVMValueRef function; local
790 * Function to call looks like:
805 /* make const pointer for the C fetch_rgba_8unorm function */
806 function = lp_build_const_int_pointer(gallivm,
809 /* cast the callee pointer to the function's type */
810 function = LLVMBuildBitCast(builder, function,
841 LLVMBuildCall(builder, function, args, ARRAY_SIZE(args), "");
878 LLVMValueRef function; local
895 * Function to call looks like
    [all...]
  /external/syslinux/com32/gplinclude/disk/
geom.h 76 * 02h BYTE PCI function number
88 uint8_t function; member in struct:edd_device_parameters::__anon36942::__anon36944
  /external/v8/src/compiler/
js-call-reducer.cc 82 // ES6 section 19.2.3.1 Function.prototype.apply ( thisArg, argArray )
87 // Tail calls to Function.prototype.apply are not properly supported
136 // the outermost function.
155 node->RemoveInput(0); // Function.prototype.apply
163 // some other function (and same for the {arg_array}).
190 // Change context of {node} to the Function.prototype.apply context,
200 // ES6 section 19.2.3.3 Function.prototype.call (thisArg, ...args)
206 // Change context of {node} to the Function.prototype.call context,
236 // ES6 section 19.2.3.6 Function.prototype [ @@hasInstance ] (V)
408 // function address
501 Handle<JSFunction> function = Handle<JSFunction>::cast(m.Value()); local
543 Handle<JSBoundFunction> function = local
675 Handle<JSFunction> function = Handle<JSFunction>::cast(m.Value()); local
    [all...]
js-inlining.cc 64 // - JSConstruct: Includes target function and new target.
65 // - JSCall: Includes target function and receiver.
117 // The projection is requesting the inlinee function context.
254 Node* function = frame_state->InputAt(kFrameStateFunctionInput); local
275 jsgraph()->UndefinedConstant(), function,
290 // function, which either returns the map set from the CheckMaps or
357 // This reducer can handle both normal function calls as well a constructor
358 // calls whenever the target is a constant function object, as follows:
362 Handle<JSFunction> function = Handle<JSFunction>::cast(match.Value()); local
372 if (function->context()->native_context() !
416 Handle<JSFunction> function = Handle<JSFunction>::cast(match.Value()); local
    [all...]
  /external/v8/src/crankshaft/x87/
lithium-codegen-x87.h 198 void CallRuntime(const Runtime::Function* fun, int argc, LInstruction* instr,
204 const Runtime::Function* function = Runtime::FunctionForId(id); local
205 CallRuntime(function, argc, instr);
209 const Runtime::Function* function = Runtime::FunctionForId(id); local
210 CallRuntime(function, function->nargs, instr);
223 // Generate a direct call to a known function. Expects the function
    [all...]
  /external/v8/src/debug/
debug-scopes.cc 29 // Optimized frame, context or function cannot be materialized. Give up.
38 // Catch the case when the debugger stops in an internal function.
39 Handle<JSFunction> function = GetFunction(); local
40 Handle<SharedFunctionInfo> shared_info(function->shared());
43 while (context_->closure() == *function) {
58 // The source position at return is always the end of the function,
61 // inspect the function scope.
76 while (context_->closure() == *function) {
89 // Check whether we are in global, eval or function code.
97 if (!function->context()->IsNativeContext())
495 Handle<JSFunction> function = GetFunction(); local
842 Handle<JSFunction> function = frame_inspector_->GetFunction(); local
    [all...]
  /external/v8/src/inspector/
injected-script.cc 40 #include "src/inspector/v8-function-call.h"
72 // a single anonymous function(it's anonymous to avoid cluttering the global
74 // inspector's stuff) the function is called a few lines below with
77 // The function is expected
90 v8::Local<v8::Function> function = v8::Local<v8::Function>::Cast(value); local
102 if (!function->Call(context, windowGlobal, arraysize(info), info)
129 V8FunctionCall function(m_context->inspector(), m_context->context(),
131 function.appendArgument(object)
    [all...]

Completed in 2210 milliseconds

<<11121314151617181920>>