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

1 2 3 4 5 6 7 891011>>

  /external/selinux/libsepol/cil/test/unit/
CuTest.h 69 TestFunction function; member in struct:CuTest
76 void CuTestInit(CuTest* t, const char* name, TestFunction function);
77 CuTest* CuTestNew(const char* name, TestFunction function);
  /external/tpm2/
TpmFail.c 14 // structures. The alignment of the structures is not important as this function does not use any of the
37 UINT32 function; member in struct:__anon24779::__anon24780
78 // Function to marshal a 16 bit value to the output buffer.
93 // Function to marshal a 32 bit value to the output buffer.
133 // This function is called by the simulator to enable failure mode testing.
148 // This function is called by TPM.lib when a failure occurs. It will set up the failure values to be returned on
153 const char *function,
159 // of the function name where the error occurred.
160 memcpy(&s_failFunction, function, sizeof(s_failFunction));
178 // This function is called by the interface code when the platform is in failure mode
    [all...]
  /external/v8/src/compiler/
js-builtin-reducer.cc 30 Handle<JSFunction> function = Handle<JSFunction>::cast(m.Value());
31 return function->shared()->HasBuiltinFunctionId();
38 Handle<JSFunction> function = Handle<JSFunction>::cast(m.Value()); local
39 return function->shared()->builtin_function_id();
  /external/v8/src/
optimizing-compile-dispatcher.cc 30 Handle<JSFunction> function = info->closure(); local
31 function->ReplaceCode(function->shared()->code());
128 // The function may have already been optimized by OSR. Simply continue.
133 // The function may have already been optimized by OSR. Simply continue.
225 Handle<JSFunction> function(*info->closure());
229 function->ShortPrint();
239 if (function->IsOptimized()) {
242 function->ShortPrint();
248 function->ReplaceCode(code.is_null() ? function->shared()->code(
    [all...]
runtime-profiler.cc 22 // Number of times a function has to be seen on the stack before it is
25 // If the function optimization was disabled due to high deoptimization count,
26 // but the function is hot and has been seen on the stack this number of times,
27 // then we try to reenable optimization for this function.
29 // If a function does not have enough type info (according to
38 // Maximum size in bytes of generate code for a function to allow OSR.
45 // Maximum size in bytes of generated code for a function to be optimized
90 void RuntimeProfiler::Optimize(JSFunction* function, const char* reason) {
91 if (FLAG_trace_opt && function->PassesFilter(FLAG_hydrogen_filter)) {
93 function->ShortPrint()
156 JSFunction* function = frame->function(); local
    [all...]
  /external/v8/src/runtime/
runtime-compiler.cc 23 CONVERT_ARG_HANDLE_CHECKED(JSFunction, function, 0);
25 if (FLAG_trace_lazy && !function->shared()->is_compiled()) {
27 function->PrintName();
34 // Compile the target function.
35 DCHECK(function->shared()->allows_lazy_compilation());
39 Compiler::GetLazyCode(function));
42 function->ReplaceCode(*code);
49 Object* CompileOptimized(Isolate* isolate, Handle<JSFunction> function,
55 Handle<Code> unoptimized(function->shared()->code());
56 if (Compiler::GetOptimizedCode(function, unoptimized, mode).ToHandle(&code))
139 Handle<JSFunction> function = deoptimizer->function(); local
    [all...]
  /external/v8/test/cctest/compiler/
function-tester.h 29 function((FLAG_allow_natives_syntax = true, NewFunction(source))),
31 Compile(function);
40 function(NewFunction(BuildFunction(param_count).c_str())),
47 function(
51 Compile(function);
52 function->ReplaceCode(*code);
56 Handle<JSFunction> function; member in class:v8::internal::compiler::FunctionTester
59 return Execution::Call(isolate, function, undefined(), 0, nullptr);
64 return Execution::Call(isolate, function, undefined(), 2, args);
70 return Execution::Call(isolate, function, undefined(), 4, args)
    [all...]
test-changes-lowering.cc 23 #include "test/cctest/compiler/function-tester.h"
39 function(Handle<JSFunction>::null()) {}
43 Handle<JSFunction> function; member in class:v8::internal::compiler::ChangesLoweringTester
51 if (function.is_null()) {
52 function = FunctionTester::ForMachineGraph(this->graph());
56 Execution::Call(this->isolate(), function, factory()->undefined_value(),
  /external/v8/test/cctest/heap/
test-alloc.cc 92 // are wrapping the allocator function in an AlwaysAllocateScope. Test that
142 Handle<JSFunction> function = factory->NewFunction( local
146 factory->NewJSObject(function);
147 function->ReplaceCode(CcTest::i_isolate()->builtins()->builtin(
150 Handle<Map> map(function->initial_map());
167 v8::Utils::CallableToLocal(function))
  /external/v8/test/unittests/wasm/
encoder-unittest.cc 58 WasmFunctionBuilder* function = builder->FunctionAt(f_index); local
59 uint16_t local_float32 = function->AddLocal(kAstF32);
60 uint16_t param_float32 = function->AddParam(kAstF32);
61 uint16_t local_int32 = function->AddLocal(kAstI32);
62 uint16_t local_float64 = function->AddLocal(kAstF64);
63 uint16_t local_int64 = function->AddLocal(kAstI64);
64 uint16_t param_int32 = function->AddParam(kAstI32);
65 uint16_t local_int32_2 = function->AddLocal(kAstI32);
69 function->EmitCode(code, sizeof(code), local_indices, 1);
71 function->EmitCode(code, sizeof(code), local_indices, 1)
99 WasmFunctionBuilder* function = builder->FunctionAt(f_index); local
    [all...]
module-decoder-unittest.cc 321 // Should decode to exactly one function.
330 WasmFunction* function = &result.val->functions->back(); local
332 EXPECT_EQ(9, function->name_offset);
333 EXPECT_EQ(kCodeStartOffset, function->code_start_offset);
334 EXPECT_EQ(kCodeEndOffset, function->code_end_offset);
336 EXPECT_EQ(523, function->local_int32_count);
337 EXPECT_EQ(1037, function->local_int64_count);
338 EXPECT_EQ(1551, function->local_float32_count);
339 EXPECT_EQ(2065, function->local_float64_count);
341 EXPECT_TRUE(function->exported)
370 WasmFunction* function = &result.val->functions->back(); local
407 WasmFunction* function = &result.val->functions->back(); local
447 WasmFunction* function = &result.val->functions->back(); local
511 WasmFunction* function = &result.val->functions->back(); local
865 WasmFunction* function = result.val; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm_gcc/
h264bsdWriteMacroblock.S 73 Function: h264bsdWriteMacroblock
91 function h264bsdWriteMacroblock, export=1 label
  /hardware/ti/omap4xxx/domx/mm_osal/inc/
timm_osal_trace.h 87 * Level 5 - Trace ["ENTERING <function>" and "EXITING <function>" statements]
95 * internal trace function. Not part of the public API
100 const char *function; member in struct:__anon35846
107 * Trace implementation function. Not part of public API. Default
146 * TIMM_OSAL_Entering() -- "ENTERING <function>" statements
147 * TIMM_OSAL_Exiting() -- "EXITING <function>" statements
177 * TIMM_OSAL_EnteringExt() -- "ENTERING <function>" statements
178 * TIMM_OSAL_ExitingExt() -- "EXITING <function>" statements
  /libcore/luni/src/main/java/java/util/concurrent/atomic/
DoubleAccumulator.java 10 import java.util.function.DoubleBinaryOperator;
14 * value updated using a supplied function. When updates (method
25 * <p>The supplied accumulator function should be side-effect-free,
27 * contention among threads. The function is applied with the current
53 private final DoubleBinaryOperator function; field in class:DoubleAccumulator
57 * Creates a new instance using the given accumulator function
59 * @param accumulatorFunction a side-effect-free function of two arguments
60 * @param identity identity (initial value) for the accumulator function
64 this.function = accumulatorFunction;
77 (function.applyAsDoubl
215 private final DoubleBinaryOperator function; field in class:DoubleAccumulator.SerializationProxy
    [all...]
LongAccumulator.java 10 import java.util.function.LongBinaryOperator;
14 * value updated using a supplied function. When updates (method
31 * not matter. The supplied accumulator function should be
33 * fail due to contention among threads. The function is applied with
55 private final LongBinaryOperator function; field in class:LongAccumulator
59 * Creates a new instance using the given accumulator function
61 * @param accumulatorFunction a side-effect-free function of two arguments
62 * @param identity identity (initial value) for the accumulator function
66 this.function = accumulatorFunction;
78 (r = function.applyAsLong(b = base, x)) != b && !casBase(b, r))
212 private final LongBinaryOperator function; field in class:LongAccumulator.SerializationProxy
    [all...]
  /prebuilts/gdb/darwin-x86/include/python2.7/
descrobject.h 28 void *function; member in struct:wrapperbase
36 #define PyWrapperFlag_KEYWORDS 1 /* wrapper function takes keyword args */
67 void *d_wrapped; /* This can be any function pointer */
  /prebuilts/gdb/linux-x86/include/python2.7/
descrobject.h 28 void *function; member in struct:wrapperbase
36 #define PyWrapperFlag_KEYWORDS 1 /* wrapper function takes keyword args */
67 void *d_wrapped; /* This can be any function pointer */
  /prebuilts/libs/libedit/include/editline/
readline.h 40 typedef int Function(const char *, int);
65 Function *function; member in struct:_keymap_entry
111 extern Function *rl_completion_entry_function;
120 extern Function *rl_pre_input_hook;
121 extern Function *rl_startup_hook;
197 int rl_add_defun(const char *, Function *, int);
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
descrobject.h 28 void *function; member in struct:wrapperbase
36 #define PyWrapperFlag_KEYWORDS 1 /* wrapper function takes keyword args */
67 void *d_wrapped; /* This can be any function pointer */
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
descrobject.h 28 void *function; member in struct:wrapperbase
36 #define PyWrapperFlag_KEYWORDS 1 /* wrapper function takes keyword args */
67 void *d_wrapped; /* This can be any function pointer */
  /external/clang/test/SemaCXX/
member-init.cpp 75 Y::Y() try { // expected-note{{in instantiation of member function 'PR10578::X<int>::X' requested here}}
82 class function : base { class in namespace:PR14838
83 ~function() {} // expected-note {{implicitly declared private here}}
85 function(...) {} function in class:PR14838::function
90 // expected-error@-1 {{temporary of type 'const PR14838::function' has private destructor}}
92 const function &r; // expected-note {{reference member declared here}}
177 template struct X<float>; // expected-note {{in instantiation of member function 'explicit_instantiation::X<float>::X' requested here}}
186 void g() { f<int>(); } // expected-note {{in instantiation of function template specialization 'local_class::f<int>' requested here}}
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/general/
AbstractLeastSquaresOptimizer.java 83 /** Current objective function value. */
113 /** Objective function. */
114 private DifferentiableMultivariateVectorialFunction function; field in class:AbstractLeastSquaresOptimizer
116 /** Objective function derivatives. */
187 * @exception FunctionEvaluationException if the function jacobian
208 * Update the residuals array and cost function value.
209 * @exception FunctionEvaluationException if the function cannot be evaluated
220 objective = function.value(point);
265 * @exception FunctionEvaluationException if the function jacobian cannot
304 * @exception FunctionEvaluationException if the function jacobian cannot b evaluate
    [all...]
  /external/ceres-solver/internal/ceres/
line_search.h 53 // While finding the exact minimum of a one dimensionl function is
60 class Function;
73 function(NULL) {}
76 // function.
85 // which decreases the value of the objective function
148 // The one dimensional function that the line search algorithm
150 Function* function; member in struct:ceres::internal::LineSearch::Options
153 // An object used by the line search to access the function values
154 // and gradient of the one dimensional function being optimized
    [all...]
  /external/cmockery/cmockery_0_1_2/src/example/
calculator_test.c 38 BinaryOperator function; member in struct:OperatorFunction
57 /* A mock fprintf function that checks the value of strings printed to the
72 /* A mock printf function that checks the value of strings printed to the
86 // A mock binary operator function.
159 /* Ensure find_operator_function_by_string() returns the correct function when
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_symbolizer.h 36 char *function; member in struct:__sanitizer::AddressInfo
55 // The object cannot be accessed after the call to this function.
137 /// Platform-specific function for creating a Symbolizer object.

Completed in 1505 milliseconds

1 2 3 4 5 6 7 891011>>