/third_party/skia/third_party/externals/swiftshader/third_party/subzero/crosstest/ |
H A D | test_bitmanip_main.cpp | 87 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 D | test_arith_main.cpp | 254 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 D | test_stacksave_main.c | 29 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 D | test_sync_atomic_main.cpp | 91 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 D | test_icmp_main.cpp | 261 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 D | classPropertyErrorOnNameOnly.js | 4 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 D | taggedTemplateContextualTyping1.js | 2 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 D | parenthesizedContexualTyping2.js | 8 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 D | wasm.hh | 261 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 D | resolved_type_def_function.h | 1 typedef void (FuncType) (); typedef 2 extern FuncType Func
|
/third_party/skia/third_party/externals/abseil-cpp/absl/hash/ |
H A D | hash_benchmark.cc | 81 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 D | callback.cc | 89 auto print_type = wasm::FuncType::make( in run() 98 auto closure_type = wasm::FuncType::make( in run()
|
H A D | hello.cc | 51 auto hello_type = wasm::FuncType::make( in run()
|
H A D | serialize.cc | 63 auto hello_type = wasm::FuncType::make( in run()
|
H A D | threads.cc | 44 auto func_type = wasm::FuncType::make( in run()
|
H A D | trap.cc | 59 auto fail_type = wasm::FuncType::make( in run()
|
H A D | multi.cc | 64 wasm::FuncType::make(tuple.deep_copy(), tuple.deep_copy()); in run()
|
H A D | table.cc | 120 auto neg_type = wasm::FuncType::make( in run()
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/ |
H A D | resolved_type_def_function.rs | 8 pub type FuncType = ::std::option::Option<unsafe extern "C" fn()>; types
|
/third_party/node/deps/v8/src/wasm/ |
H A D | c-api.cc | 129 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 D | mutex.h | 954 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 D | hb-font.cc | 2256 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 D | IceConverter.cpp | 866 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 D | vktRayQueryMiscTests.cpp | 363 enum FuncType enum 376 FuncType first; 377 FuncType second;
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/ray_query/ |
H A D | vktRayQueryMiscTests.cpp | 363 enum FuncType enum 376 FuncType first; 377 FuncType second;
|