Home
last modified time | relevance | path

Searched refs:FuncType (Results 1 - 25 of 30) sorted by relevance

12

/third_party/skia/third_party/externals/swiftshader/third_party/subzero/crosstest/
H A Dtest_bitmanip_main.cpp87 typedef Type (*FuncType)(Type); in testBitManip() typedef
90 FuncType FuncLlc; in testBitManip()
91 FuncType FuncSz; in testBitManip()
123 typedef Type (*FuncType)(Type); in testByteSwap() typedef
126 FuncType FuncLlc; in testByteSwap()
127 FuncType FuncSz; in testByteSwap()
H A Dtest_arith_main.cpp254 typedef Type (*FuncType)(Type, Type); in testsFp() typedef
257 FuncType FuncLlc; in testsFp()
258 FuncType FuncSz; in testsFp()
261 {STR(inst), (FuncType)test##inst, (FuncType)Subzero_::test##inst}, in testsFp()
324 typedef v4f32 (*FuncType)(v4f32, v4f32); in testsVecFp() typedef
327 FuncType FuncLlc; in testsVecFp()
328 FuncType FuncSz; in testsVecFp()
331 {STR(inst), (FuncType)test##inst, (FuncType)Subzero in testsVecFp()
[all...]
H A Dtest_stacksave_main.c29 typedef uint32_t (*FuncType)(uint32_t, uint32_t, uint32_t); in DECLARE_TESTS() typedef
32 FuncType FuncLlc; in DECLARE_TESTS()
33 FuncType FuncSz; in DECLARE_TESTS()
H A Dtest_sync_atomic_main.cpp91 typedef Type (*FuncType)(bool, volatile Type *, Type); in testAtomicRMW() typedef
94 FuncType FuncLlc; in testAtomicRMW()
95 FuncType FuncSz; in testAtomicRMW()
142 typedef Type (*FuncType)(volatile Type *, Type, Type); in testValCompareAndSwap() typedef
145 FuncType FuncLlc; in testValCompareAndSwap()
146 FuncType FuncSz; in testValCompareAndSwap()
212 typedef Type (*FuncType)(bool, volatile Type *, Type); in testAtomicRMWThreads() typedef
215 FuncType FuncLlc; in testAtomicRMWThreads()
216 FuncType FuncSz; in testAtomicRMWThreads()
H A Dtest_icmp_main.cpp261 typedef Ty (*FuncType)(Ty, Ty); in testsVecI1() typedef
264 FuncType FuncLlc; in testsVecI1()
265 FuncType FuncSz; in testsVecI1()
268 {STR(cmp), (FuncType)icmpi1##cmp, (FuncType)Subzero_::icmpi1##cmp}, in testsVecI1()
/third_party/typescript/tests/baselines/reference/
H A DclassPropertyErrorOnNameOnly.js4 type FuncType = (arg: Values) => string
8 insideClass: FuncType = function(val) { // error span goes from here
25 const outsideClass: FuncType = function(val) { // compare to errors only on this line in this case
H A DtaggedTemplateContextualTyping1.js2 type FuncType = (x: <T>(p: T) => T) => typeof x;
4 function tempTag1<T>(templateStrs: TemplateStringsArray, f: FuncType, x: T): T;
5 function tempTag1<T>(templateStrs: TemplateStringsArray, f: FuncType, h: FuncType, x: T): T;
H A DparenthesizedContexualTyping2.js8 type FuncType = (x: <T>(p: T) => T) => typeof x;
10 function fun<T>(f: FuncType, x: T): T;
11 function fun<T>(f: FuncType, g: FuncType, x: T): T;
32 var lambda1: FuncType = x => { x<number>(undefined); return x; };
33 var lambda2: FuncType = (x => { x<number>(undefined); return x; });
/third_party/node/deps/v8/third_party/wasm-api/
H A Dwasm.hh261 class FuncType;
276 auto func() -> FuncType*;
281 auto func() const -> const FuncType*;
290 class FuncType : public ExternType {
292 FuncType() = delete;
293 ~FuncType();
298 ) -> own<FuncType>;
300 auto copy() const -> own<FuncType>;
642 static auto make(Store*, const FuncType*, callback) -> own<Func>;
643 static auto make(Store*, const FuncType*, callback_with_en
[all...]
/third_party/rust/crates/bindgen/bindgen-tests/tests/headers/
H A Dresolved_type_def_function.h1 typedef void (FuncType) (); typedef
2 extern FuncType Func
/third_party/skia/third_party/externals/abseil-cpp/absl/hash/
H A Dhash_benchmark.cc81 template <typename FuncType>
82 inline FuncType* ODRUseFunction(FuncType* ptr) { in ODRUseFunction()
83 volatile FuncType* dummy = ptr; in ODRUseFunction()
/third_party/node/deps/v8/third_party/wasm-api/example/
H A Dcallback.cc89 auto print_type = wasm::FuncType::make( in run()
98 auto closure_type = wasm::FuncType::make( in run()
H A Dhello.cc51 auto hello_type = wasm::FuncType::make( in run()
H A Dserialize.cc63 auto hello_type = wasm::FuncType::make( in run()
H A Dthreads.cc44 auto func_type = wasm::FuncType::make( in run()
H A Dtrap.cc59 auto fail_type = wasm::FuncType::make( in run()
H A Dmulti.cc64 wasm::FuncType::make(tuple.deep_copy(), tuple.deep_copy()); in run()
H A Dtable.cc120 auto neg_type = wasm::FuncType::make( in run()
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/
H A Dresolved_type_def_function.rs8 pub type FuncType = ::std::option::Option<unsafe extern "C" fn()>; types
/third_party/node/deps/v8/src/wasm/
H A Dc-api.cc129 own<FuncType> FunctionSigToFuncType(const i::wasm::FunctionSig* sig) { in FunctionSigToFuncType()
140 return FuncType::make(std::move(params), std::move(results)); in FunctionSigToFuncType()
629 struct implement<FuncType> {
633 FuncType::~FuncType() = default;
635 auto FuncType::make(ownvec<ValType>&& params, ownvec<ValType>&& results)
636 -> own<FuncType> {
638 ? own<FuncType>(seal<FuncType>(new (std::nothrow)
640 : own<FuncType>();
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/synchronization/
H A Dmutex.h954 typedef bool (*FuncType)(T *); in CastAndCallFunction() typedef
955 FuncType fn = reinterpret_cast<FuncType>(c->function_); in CastAndCallFunction()
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-font.cc2256 template <typename FuncType>
2260 FuncType func;
2263 template <typename FuncType>
2264 static hb_trampoline_t<FuncType> *
2265 trampoline_create (FuncType func, in trampoline_create()
2269 typedef hb_trampoline_t<FuncType> trampoline_t; in trampoline_create()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
H A DIceConverter.cpp866 FunctionType *FuncType = Func.getFunctionType(); in installGlobalDeclarations() local
868 Converter.convertToIceType(FuncType->getReturnType())); in installGlobalDeclarations()
869 for (size_t I = 0; I < FuncType->getNumParams(); ++I) { in installGlobalDeclarations()
871 Converter.convertToIceType(FuncType->getParamType(I))); in installGlobalDeclarations()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ray_query/
H A DvktRayQueryMiscTests.cpp363 enum FuncType enum
376 FuncType first;
377 FuncType second;
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/ray_query/
H A DvktRayQueryMiscTests.cpp363 enum FuncType enum
376 FuncType first;
377 FuncType second;

Completed in 36 milliseconds

12