HomeSort by relevance Sort by last modified time
    Searched defs:function (Results 251 - 275 of 792) sorted by null

<<11121314151617181920>>

  /external/v8/src/wasm/
module-decoder.cc 91 FunctionSig* s = sig(); // read function sig.
118 WasmFunction* function = &module->functions->back(); local
119 DecodeFunctionInModule(module, function, false);
124 WasmFunction* function = &module->functions->at(i); local
125 if (!function->external) {
126 VerifyFunctionBody(i, &menv, function);
165 // An indirect function table requires functions first.
168 uint32_t function_table_count = u32v(&length, "function table count");
170 // Decode function table.
177 error(pc_ - 2, "invalid function index")
    [all...]
wasm-js.cc 89 // Verification of a single function shouldn't allocate.
251 // Decode but avoid a redundant pass over function bodies for verification.
280 // TODO(titzer): we use the API to create the function template because the
300 Handle<JSFunction> function = local
304 JSObject::AddProperty(object, name, function, attributes);
309 // Setup wasm function map.
wasm-module.cc 33 std::ostream& operator<<(std::ostream& os, const WasmFunction& function) {
34 os << "WASM function with signature ";
37 if (function.sig->return_count() == 0) os << "v";
38 for (size_t i = 0; i < function.sig->return_count(); i++) {
39 os << WasmOpcodes::ShortNameOf(function.sig->GetReturn(i));
42 if (function.sig->parameter_count() == 0) os << "v";
43 for (size_t i = 0; i < function.sig->parameter_count(); i++) {
44 os << WasmOpcodes::ShortNameOf(function.sig->GetParam(i));
47 if (function.local_int32_count)
48 os << function.local_int32_count << " int32s "
189 WasmFunction* function = local
338 Handle<JSFunction> function = Handle<JSFunction>::null(); local
409 WasmFunction* function = &module->functions->at(index); local
    [all...]
  /external/v8/test/cctest/
test-decls.cc 84 virtual Local<ObjectTemplate> GetHolder(Local<FunctionTemplate> function) {
85 return function->InstanceTemplate();
121 Local<FunctionTemplate> function = FunctionTemplate::New(isolate); local
123 GetHolder(function)->SetHandler(v8::NamedPropertyHandlerConfiguration(
127 function->InstanceTemplate(),
248 context.Check("function x() { }; x",
299 context.Check("function x() { }; x",
382 context.Check("function x() { }; x",
414 virtual Local<ObjectTemplate> GetHolder(Local<FunctionTemplate> function) {
415 return function->PrototypeTemplate()
    [all...]
test-object-observe.cc 52 "var observer = function(records) { count = records.length; calls++ };"
57 Local<Value> notify_fun1 = CompileRun("(function() { obj.foo = 'bar'; })");
67 "(function() { obj.foo = 'baz'; })");
77 notify_fun3 = CompileRun("(function() { obj.foo = 'bat'; })");
112 "var observer = function(records) { count = records.length };"
127 "function observer2() { ordering.push(2); };"
128 "function observer1() { ordering.push(1); };"
129 "function observer3() { ordering.push(3); };"
158 "function observer1() { ordering.push(1); };"
159 "function observer2() { ordering.push(2); };
427 Local<Function> function = local
926 Local<Function> function = local
    [all...]
  /external/wpa_supplicant_8/src/utils/
trace.c 119 const char *function; member in struct:bfd_data
147 &data->function,
171 if (data.function)
172 aname = bfd_demangle(abfd, data.function,
174 name = aname ? aname : data.function;
191 &data.function, &data.line);
211 return data.function;
276 if (data.function &&
278 os_strcmp(data.function, __func__) != 0)) {
279 buf[pos++] = data.function;
    [all...]
  /frameworks/compile/libbcc/lib/Renderscript/
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/api/
GenerateHeaderFiles.cpp 202 Function* function = spec.getFunction(); local
203 writeVersionGuardStart(file, spec.getVersionInfo(), function->getFinalVersion());
222 function->getDeprecatedApiLevel(), function->getDeprecatedMessage());
225 // Write the function name.
282 static void writeFunctionComment(GeneratedFile* file, const Function& function) {
284 writeComment(file, function.getName(), function.getSummary(), function.getDescription()
371 Function* function = spec->getFunction(); local
    [all...]
GenerateStubsWhiteList.cpp 188 * This function is recursive because compression is possible at each level of the definition.
192 * This function mangles correctly the types currently used by RenderScript. It does
193 * not currently mangle more complicated types like function pointers, namespaces,
322 /* Add the mangling for this permutation of the function. apiLevel and intSize is used
325 static bool addFunctionManglingToSet(const Function& function,
345 /* Add to the set the mangling of each function prototype that can be generated from this
350 static bool addManglingsForSpecification(const Function& function,
353 // If the function is inlined, we won't generate an unresolved external for that
397 const Function* function = f.second; local
507 const Function* function = f.second; local
    [all...]
  /hardware/ti/omap4-aah/domx/mm_osal/inc/
timm_osal_trace.h 99 * Level 6 - Trace ["ENTERING <function>" and "EXITING <function>" statements]
107 * internal trace function. Not part of the public API
112 const char *function; member in struct:__anon35726
120 * Trace level update function. Updates trace level if env variable
126 * Trace implementation function. Not part of public API. Default
170 * TIMM_OSAL_Entering() -- "ENTERING <function>" statements
171 * TIMM_OSAL_Exiting() -- "EXITING <function>" statements
206 * TIMM_OSAL_EnteringExt() -- "ENTERING <function>" statements
207 * TIMM_OSAL_ExitingExt() -- "EXITING <function>" statement
    [all...]
  /libcore/ojluni/src/main/java/java/util/
ArrayPrefixHelpers.java 11 import java.util.function.BinaryOperator;
12 import java.util.function.DoubleBinaryOperator;
13 import java.util.function.IntBinaryOperator;
14 import java.util.function.LongBinaryOperator;
78 final BinaryOperator<T> function; field in class:ArrayPrefixHelpers.CumulateTask
85 BinaryOperator<T> function,
88 this.function = function; this.array = array;
97 CumulateTask(CumulateTask<T> parent, BinaryOperator<T> function,
101 this.function = function; this.array = array
230 final LongBinaryOperator function; field in class:ArrayPrefixHelpers.LongCumulateTask
380 final DoubleBinaryOperator function; field in class:ArrayPrefixHelpers.DoubleCumulateTask
530 final IntBinaryOperator function; field in class:ArrayPrefixHelpers.IntCumulateTask
    [all...]
  /system/core/init/
action.cpp 73 *err = "no function map available";
82 auto function = function_map_->FindFunction(args[0], args.size() - 1, err); local
83 if (!function) {
87 AddCommand(function, args, filename, line);
187 // This function checks that all property triggers are satisfied, that is
  /bionic/libc/kernel/uapi/linux/
ncp_fs.h 30 unsigned int function; member in struct:ncp_ioctl_request
  /development/ndk/platforms/android-21/include/linux/
ncp_fs.h 30 unsigned int function; member in struct:ncp_ioctl_request
  /external/clang/lib/CodeGen/
CGDeclCXX.cpp 86 llvm::Constant *function; local
89 // Special-case non-array C++ destructors, where there's a function
97 function = CGM.getAddrOfCXXStructor(dtor, StructorType::Complete);
101 // Otherwise, the standard logic requires a helper function.
103 function = CodeGenFunction(CGM)
109 CGM.getCXXABI().registerGlobalDtor(CGF, D, function, argument);
184 /// Create a stub function, suitable for being passed to atexit,
185 /// which passes the given address to the given destructor function.
189 // Get the destructor function type, void(*)(void).
198 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 255 TestFunctionWrapper function; member in struct:deqp::gles31::Functional::__anon11124::FunctionContainer
396 * 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 24 unsigned int function; member in struct:ncp_ioctl_request
  /external/mesa3d/src/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.
186 /* also supported for the "function loop" *
271 struct function_record function; member in struct:ir_lower_jumps_visitor
    [all...]
  /external/v8/src/
api-natives.cc 232 Handle<JSFunction> function) {
234 auto new_cache = ObjectHashTable::Put(cache, serial_number, function);
294 auto function = ApiNatives::CreateApiFunction( local
297 function->shared()->set_name(*name);
300 // Cache the function.
301 CacheFunction(isolate, serial_number, function);
303 auto result = ConfigureInstance(isolate, function, data);
311 return scope.CloseAndEscape(function);
  /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);
220 // Generate a direct call to a known function. Expects the function
    [all...]
  /external/v8/src/debug/
debug-scopes.cc 27 // Optimized frame, context or function cannot be materialized. Give up.
33 // Catch the case when the debugger stops in an internal function.
34 Handle<JSFunction> function = GetFunction(); local
35 Handle<SharedFunctionInfo> shared_info(function->shared());
38 while (context_->closure() == *function) {
53 // The source position at return is always the end of the function,
56 // inspect the function scope.
75 while (context_->closure() == *function) {
87 // Check whether we are in global, eval or function code.
98 info.set_context(Handle<Context>(function->context()))
459 Handle<JSFunction> function = GetFunction(); local
    [all...]

Completed in 888 milliseconds

<<11121314151617181920>>