Home
last modified time | relevance | path

Searched refs:function_index (Results 1 – 25 of 424) sorted by relevance

12345678910>>...17

/dports/multimedia/libgav1/libgav1-0.17.0/src/dsp/
H A Dmotion_vector_search_test.cc131 for (int function_index = 0; function_index < 3; ++function_index) { in TestRandomValues() local
133 if (mv_projection_compound_[function_index] == nullptr) continue; in TestRandomValues()
138 mv_projection_compound_[function_index]( in TestRandomValues()
151 absl::StrFormat("function_index %d", function_index).c_str(), in TestRandomValues()
152 kDigestCompound[function_index], compound_mv_, sizeof(compound_mv_), in TestRandomValues()
155 for (int function_index = 0; function_index < 3; ++function_index) { in TestRandomValues() local
157 if (mv_projection_single_[function_index] == nullptr) continue; in TestRandomValues()
162 mv_projection_single_[function_index]( in TestRandomValues()
175 absl::StrFormat("function_index %d", function_index).c_str(), in TestRandomValues()
176 kDigestSingle[function_index], single_mv_, sizeof(single_mv_), in TestRandomValues()
/dports/lang/v8/v8-9.6.180.12/test/cctest/wasm/
H A Dtest-wasm-breakpoints.cc317 SetBreakpoint(&runner, runner.function_index(), 4, 4); in WASM_COMPILED_EXEC_TEST()
335 SetBreakpoint(&runner, runner.function_index(), 2, 4); in WASM_COMPILED_EXEC_TEST()
354 SetBreakpoint(&runner, runner.function_index(), 1, 1); in WASM_COMPILED_EXEC_TEST()
392 runner.builder().WrapCode(f2.function_index()); in WASM_COMPILED_EXEC_TEST()
395 SetBreakpoint(&runner, f2.function_index(), 19, 19); in WASM_COMPILED_EXEC_TEST()
431 SetBreakpoint(&runner, runner.function_index(), 7, 7); in WASM_COMPILED_EXEC_TEST()
465 SetBreakpoint(&runner, runner.function_index(), 1, 1); in WASM_COMPILED_EXEC_TEST()
466 SetBreakpoint(&runner, runner.function_index(), 2, 2); in WASM_COMPILED_EXEC_TEST()
469 SetBreakpoint(&runner, runner.function_index(), 4, 4); in WASM_COMPILED_EXEC_TEST()
496 SetBreakpoint(&runner, runner.function_index(), 1, 1); in WASM_COMPILED_EXEC_TEST()
[all …]
H A Dwasm-run-utils.h375 uint32_t function_index() { return function_->func_index; } in function_index() function
462 uint32_t function_index() { return functions_[0]->function_index(); } in function_index() function
490 void CheckCallApplyViaJS(double expected, uint32_t function_index, in CheckCallApplyViaJS() argument
494 if (jsfuncs_.size() <= function_index) { in CheckCallApplyViaJS()
495 jsfuncs_.resize(function_index + 1); in CheckCallApplyViaJS()
497 if (jsfuncs_[function_index].is_null()) { in CheckCallApplyViaJS()
498 jsfuncs_[function_index] = builder_.WrapCode(function_index); in CheckCallApplyViaJS()
500 Handle<JSFunction> jsfunc = jsfuncs_[function_index]; in CheckCallApplyViaJS()
588 main_fn_index_ = main_fn.function_index(); in WasmRunnerBase()
/dports/www/chromium-legacy/chromium-88.0.4324.182/tools/perf/page_sets/tough_scheduling_cases/
H A D_second_batch_js_generator.py96 def _FunctionInnerFunctionName(function_index, inner_index): argument
97 return 'function%dInnerFunction%d' % (function_index, inner_index)
100 def _TopLevelFunctionEntryPoint(function_index): argument
101 return 'function%d' % (function_index)
106 for function_index in xrange(count):
110 _FunctionInnerFunctionName(function_index, inner_index),
114 _TopLevelFunctionEntryPoint(function_index), file=out)
119 _FunctionInnerFunctionName(function_index, inner_index),
125 _FunctionInnerFunctionName(function_index, inner_index), file=out)
/dports/misc/mxnet/incubator-mxnet-1.9.0/3rdparty/tvm/src/runtime/crt/common/
H A Dcrt_runtime_api.c176 tvm_function_index_t function_index) { in EncodeFunctionHandle() argument
178 ((module_index | 0x8000) << (sizeof(tvm_function_index_t) * 8)) | (function_index | 0x8000))); in EncodeFunctionHandle()
182 tvm_function_index_t* function_index) { in DecodeFunctionHandle() argument
197 *function_index = ((uint32_t)((uintptr_t)handle)) & ~0x8000; in DecodeFunctionHandle()
205 tvm_function_index_t function_index; in TVMFuncCall() local
210 if (DecodeFunctionHandle(func_handle, &module_index, &function_index) != 0) { in TVMFuncCall()
222 if (TVMFuncRegistry_GetByIndex(registry, function_index, &func) != 0) { in TVMFuncCall()
223 TVMAPIErrorf("invalid function index: %04" PRIx16, function_index); in TVMFuncCall()
235 tvm_function_index_t function_index; in FindFunctionOrSetAPIError() local
236 if (TVMFuncRegistry_Lookup(registry, name, &function_index) != 0) { in FindFunctionOrSetAPIError()
[all …]
H A Dfunc_registry.c64 tvm_function_index_t* function_index) { in TVMFuncRegistry_Lookup() argument
72 *function_index = idx; in TVMFuncRegistry_Lookup()
83 tvm_function_index_t function_index, in TVMFuncRegistry_GetByIndex() argument
88 if (function_index >= num_funcs) { in TVMFuncRegistry_GetByIndex()
92 *out_func = reg->funcs[function_index]; in TVMFuncRegistry_GetByIndex()
/dports/graphics/freeglut/freeglut-3.2.1/progs/test-shapes-gles1/
H A Dtest-shapes-gles1.c64 static int function_index; variable
181 table [function_index].solid (); in display()
188 table [function_index].wire (); in display()
245 case GLUT_KEY_PAGE_UP: ++function_index; break; in special()
246 case GLUT_KEY_PAGE_DOWN: --function_index; break; in special()
257 if (0 > function_index) in special()
258 function_index = NUMBEROF (table) - 1; in special()
260 if (NUMBEROF (table) <= ( unsigned )function_index) in special()
261 function_index = 0; in special()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/src/wasm/
H A Dmodule-decoder.h75 LocalNamesPerFunction(int function_index, std::vector<LocalName> names) in LocalNamesPerFunction() argument
76 : function_index_(function_index), names_(std::move(names)) { in LocalNamesPerFunction()
81 int function_index() const { return function_index_; } in function_index() function
95 return a.function_index() < b.function_index(); in operator()
115 WireBytesRef GetName(int function_index, int local_index) { in GetName() argument
117 LocalNamesPerFunction{function_index, {}}, in GetName()
120 if (it->function_index() != function_index) return {}; in GetName()
/dports/graphics/mupdf/mupdf-1.18.0-source/thirdparty/freeglut/progs/test-shapes-gles1/
H A Dtest-shapes-gles1.c64 static int function_index; variable
181 table [function_index].solid (); in display()
188 table [function_index].wire (); in display()
245 case GLUT_KEY_PAGE_UP: ++function_index; break; in special()
246 case GLUT_KEY_PAGE_DOWN: --function_index; break; in special()
257 if (0 > function_index) in special()
258 function_index = NUMBEROF (table) - 1; in special()
260 if (NUMBEROF (table) <= ( unsigned )function_index) in special()
261 function_index = 0; in special()
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/src/wasm/
H A Dmodule-decoder.h76 LocalNamesPerFunction(int function_index, std::vector<LocalName> names) in LocalNamesPerFunction() argument
77 : function_index_(function_index), names_(std::move(names)) { in LocalNamesPerFunction()
82 int function_index() const { return function_index_; } in function_index() function
96 return a.function_index() < b.function_index(); in operator()
116 WireBytesRef GetName(int function_index, int local_index) { in GetName() argument
118 LocalNamesPerFunction{function_index, {}}, in GetName()
121 if (it->function_index() != function_index) return {}; in GetName()
/dports/graphics/devil/devil-1.7.8/src-ILU/ilur/
H A Dilur.c311 int function_index = -1; in perform_operation() local
316 function_index = i; in perform_operation()
319 if (function_index == -1) in perform_operation()
326 switch (ilu_functions[function_index].Parameter_type) in perform_operation()
330 ILboolean (* function)() = ilu_functions[function_index].Callback; in perform_operation()
337 ILboolean (* function)(ILuint) = ilu_functions[function_index].Callback; in perform_operation()
353 ILboolean (* function)(ILfloat) = ilu_functions[function_index].Callback; in perform_operation()
365 switch (function_index) in perform_operation()
369 ILboolean (* function)(ILfloat, ILuint) = ilu_functions[function_index].Callback; in perform_operation()
397 ILboolean (* function)(ILuint, ILuint, ILuint) = ilu_functions[function_index].Callback; in perform_operation()
[all …]
/dports/graphics/freeglut/freeglut-3.2.1/progs/demos/shapes/
H A Dshapes.c415 static int function_index; variable
716 table [function_index].solid (); in display()
725 table [function_index].wire (); in display()
754 table [function_index].solid (); in display()
761 table [function_index].wire (); in display()
820 function_index = 0; in key()
849 if (0 > function_index) in special()
850 function_index = NUMBEROF (table) - 1; in special()
853 function_index = 0; in special()
859 function_index = 0; in special()
[all …]
/dports/graphics/mupdf/mupdf-1.18.0-source/thirdparty/freeglut/progs/demos/shapes/
H A Dshapes.c415 static int function_index; variable
716 table [function_index].solid (); in display()
725 table [function_index].wire (); in display()
754 table [function_index].solid (); in display()
761 table [function_index].wire (); in display()
820 function_index = 0; in key()
849 if (0 > function_index) in special()
850 function_index = NUMBEROF (table) - 1; in special()
853 function_index = 0; in special()
859 function_index = 0; in special()
[all …]
/dports/lang/v8/v8-9.6.180.12/src/compiler/
H A Dwasm-inlining.h37 uint32_t function_index) const = 0;
44 explicit InlineByIndex(uint32_t function_index) in InlineByIndex() argument
45 : WasmInliningHeuristics(), function_indices_(function_index) {} in InlineByIndex()
50 uint32_t function_index) const override { in DoInline() argument
51 return function_indices_.count(function_index) > 0; in DoInline()
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/rust/parity-wasm/examples/
H A Dshow.rs13 let function_index = args[2].parse::<usize>().expect("Failed to parse function index"); in main() localVariable
20 let sig = match module.function_section().unwrap().entries().get(function_index) { in main()
29 let code = &module.code_section().expect("Already checked, impossible").bodies()[function_index]; in main()
/dports/www/firefox-esr/firefox-91.8.0/third_party/rust/parity-wasm/examples/
H A Dshow.rs13 let function_index = args[2].parse::<usize>().expect("Failed to parse function index"); in main() localVariable
20 let sig = match module.function_section().unwrap().entries().get(function_index) { in main()
29 let code = &module.code_section().expect("Already checked, impossible").bodies()[function_index]; in main()
/dports/lang/spidermonkey78/firefox-78.9.0/third_party/rust/parity-wasm/examples/
H A Dshow.rs13 let function_index = args[2].parse::<usize>().expect("Failed to parse function index"); in main() localVariable
20 let sig = match module.function_section().unwrap().entries().get(function_index) { in main()
29 let code = &module.code_section().expect("Already checked, impossible").bodies()[function_index]; in main()
/dports/www/node10/node-v10.24.1/deps/v8/src/wasm/
H A Dmodule-decoder.h46 int function_index; member
49 explicit LocalNamesPerFunction(int function_index) in LocalNamesPerFunction()
50 : function_index(function_index) {} in LocalNamesPerFunction()
H A Dwasm-module.cc41 uint32_t function_index) const { in LookupName()
47 auto it = names_->find(function_index); in LookupName()
53 uint32_t function_index) const { in LookupName()
57 return LookupName(&module_wire_bytes, function_index); in LookupName()
60 void WasmModule::AddNameForTesting(int function_index, WireBytesRef name) { in AddNameForTesting() argument
64 names_->insert(std::make_pair(function_index, name)); in AddNameForTesting()
334 locals_names->set(func.function_index, *func_locals_names); in DecodeLocalNames()
H A Dwasm-module-builder.cc491 buffer.write_size(function_export.function_index + in WriteTo()
564 uint32_t function_index = 0; in WriteTo() local
565 for (; function_index < num_imports; ++function_index) { in WriteTo()
566 const WasmFunctionImport* import = &function_imports_[function_index]; in WriteTo()
568 buffer.write_u32v(function_index); in WriteTo()
573 DCHECK_EQ(function_index, in WriteTo()
576 buffer.write_u32v(function_index); in WriteTo()
579 ++function_index; in WriteTo()
/dports/math/ambit/ambit-0.5.1/src/helpers/psi4/
H A Dintegrals.cc152 int startP = basis1.shell(P).function_index(); in integrals()
164 int startQ = basis2.shell(Q).function_index(); in integrals()
177 int startR = basis3.shell(R).function_index(); in integrals()
191 int startS = basis4.shell(S).function_index(); in integrals()
/dports/lang/v8/v8-9.6.180.12/src/runtime/
H A Druntime-wasm.cc226 int function_index, Handle<Code> wrapper_code) { in ReplaceWrapper() argument
229 function_index) in ReplaceWrapper()
247 const int function_index = function_data->function_index(); in RUNTIME_FUNCTION() local
248 const wasm::WasmFunction& function = module->functions[function_index]; in RUNTIME_FUNCTION()
257 function_index); in RUNTIME_FUNCTION()
260 DCHECK_EQ(function_index, module->start_function_index); in RUNTIME_FUNCTION()
271 ReplaceWrapper(isolate, instance, function_index, wrapper_code); in RUNTIME_FUNCTION()
281 if (exp_function.sig == sig && index != function_index) { in RUNTIME_FUNCTION()
295 int func_index = frame_finder.frame()->function_index(); in RUNTIME_FUNCTION()
383 CONVERT_UINT32_ARG_CHECKED(function_index, 1); in RUNTIME_FUNCTION()
[all …]
/dports/www/firefox/firefox-99.0/third_party/rust/wasm-encoder/src/
H A Dstart.rs25 pub function_index: u32, field
37 let f = encoders::u32(self.function_index); in encode()
/dports/devel/p5-Class-XSAccessor/Class-XSAccessor-1.19/
H A DXSAccessor.xs336 #define INSTALL_NEW_CV_WITH_INDEX(name, xsub, function_index) \ argument
341 XSANY.any_i32 = function_index; \
360 const U32 function_index = get_internal_array_index((I32)obj_array_index); \
361 INSTALL_NEW_CV_WITH_INDEX(name, xsub, function_index); \
362 CXSAccessor_arrayindices[function_index] = obj_array_index; \
/dports/devel/boost-docs/boost_1_72_0/libs/hana/test/integral_constant/
H A Dtimes.cpp13 void function_index(...) { } in function_index() function
43 hana::int_c<3>.times.with_index(function_index); in main()

12345678910>>...17