Searched refs:functype (Results 1 - 12 of 12) sorted by relevance
/third_party/musl/libc-test/src/functionalext/symver/ |
H A D | dlvsym.c | 38 functype func = (functype)dlvsym(handle, dso_no_symver_symbol, dso_version_invalid); in dlvsym_no_symver_0100() 70 functype func = (functype)dlvsym(handle, dso_symbol_invalid, dso_version_invalid); in dlvsym_no_symver_0200() 102 functype func = (functype)dlvsym(handle, dso_easy_symver_symbol, dso_easy_symver_version_stable); in dlvsym_easy_symver_0100() 135 functype func = (functype)dlvsym(handle, dso_easy_symver_symbol, dso_easy_symver_version_old); in dlvsym_easy_symver_0200() 168 functype func = (functype)dlvsy in dlvsym_easy_symver_0300() [all...] |
H A D | dlsym.c | 43 functype func = (functype)dlsym(handle, dso_no_symver_symbol); in dlsym_no_symver_0100() 76 functype func = (functype)dlsym(handle, dso_symbol_invalid); in dlsym_no_symver_0200() 124 functype func = (functype)dlsym(handle, dso_easy_symver_symbol); in dlsym_easy_symver_0200() 157 functype func = (functype)dlsym(handle, dso_symbol_invalid); in dlsym_easy_symver_0300() 205 functype func = (functype)dlsy in dlsym_hard_symver_0200() [all...] |
H A D | dso_symver.h | 49 typedef char *(*functype)(void); typedef
|
/third_party/node/test/fixtures/wpt/wasm/jsapi/function/ |
H A D | type.tentative.any.js | 10 function assert_function(functype, func) { 11 var wasmFunc = new WebAssembly.Function(functype, func); 12 assert_equals(functype.parameters.length, wasmFunc.type().parameters.length); 13 for(let i = 0; i < functype.parameters.length; i++) { 14 assert_equals(functype.parameters[i], wasmFunc.type().parameters[i]); 16 assert_equals(functype.results.length, wasmFunc.type().results.length); 17 for(let i = 0; i < functype.results.length; i++) { 18 assert_equals(functype.results[i], wasmFunc.type().results[i]);
|
/third_party/python/Lib/ctypes/test/ |
H A D | test_callbacks.py | 11 functype = CFUNCTYPE variable in Callbacks 22 PROTO = self.functype.__func__(typ, typ) 30 PROTO = self.functype.__func__(typ, c_byte, typ) 122 prototype = self.functype.__func__(POINTER(c_double)) 127 prototype = self.functype.__func__(object) 131 proto = self.functype.__func__(None) 157 functype = WINFUNCTYPE variable in StdcallCallbacks
|
/third_party/node/deps/v8/third_party/wasm-api/example/ |
H A D | reflect.c | 48 const wasm_functype_t* functype = in print_externtype() local 51 print_valtypes(wasm_functype_params(functype)); in print_externtype() 53 print_valtypes(wasm_functype_results(functype)); in print_externtype()
|
/third_party/musl/libc-test/src/functional/ |
H A D | dlopen.c | 238 typedef void *(*functype)(void); typedef 245 functype func = (functype)dlsym(handle, "foo_ctor"); in dlclose_with_tls_test()
|
/third_party/node/deps/v8/third_party/wasm-api/ |
H A D | wasm.h | 197 WASM_DECLARE_TYPE(functype)
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/spirv_assembly/ |
H A D | vktSpvAsmGraphicsShaderTestUtil.cpp | 1011 const string functype = string("%") + var_type + "_" + var_type + "_function"; in passthruInterface() local 1061 functype + " = OpTypeFunction %" + var_type + " %" + var_type + "\n" in passthruInterface()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/spirv_assembly/ |
H A D | vktSpvAsmGraphicsShaderTestUtil.cpp | 1011 const string functype = string("%") + var_type + "_" + var_type + "_function"; in passthruInterface() local 1061 functype + " = OpTypeFunction %" + var_type + " %" + var_type + "\n" in passthruInterface()
|
/third_party/protobuf/ruby/ext/google/protobuf_c/ |
H A D | upb.h | 5242 typedef upb_##type##_handlerfunc functype; \ 5243 functype *func; \ 5246 func = (functype *)upb_handlers_gethandler(s.handlers, sel, &hd); \
|
/third_party/node/deps/v8/src/wasm/ |
H A D | c-api.cc | 2524 WASM_DEFINE_TYPE(functype, wasm::FuncType)
|
Completed in 37 milliseconds