HomeSort by relevance Sort by last modified time
    Searched defs:FuncType (Results 1 - 25 of 31) sorted by null

1 2

  /external/swiftshader/third_party/subzero/crosstest/
test_stacksave_main.c 29 typedef uint32_t (*FuncType)(uint32_t, uint32_t, uint32_t);
32 FuncType FuncLlc;
33 FuncType FuncSz;
test_bitmanip_main.cpp 50 typedef Type (*FuncType)(Type);
53 FuncType FuncLlc;
54 FuncType FuncSz;
86 typedef Type (*FuncType)(Type);
89 FuncType FuncLlc;
90 FuncType FuncSz;
test_icmp_main.cpp 279 typedef Ty (*FuncType)(Ty, Ty);
282 FuncType FuncLlc;
283 FuncType FuncSz;
286 { STR(cmp), (FuncType)icmpi1##cmp, (FuncType)Subzero_::icmpi1##cmp } \
test_arith_main.cpp 252 typedef Type (*FuncType)(Type, Type);
255 FuncType FuncLlc;
256 FuncType FuncSz;
259 { STR(inst), (FuncType)test##inst, (FuncType)Subzero_::test##inst } \
323 typedef v4f32 (*FuncType)(v4f32, v4f32);
326 FuncType FuncLlc;
327 FuncType FuncSz;
330 { STR(inst), (FuncType)test##inst, (FuncType)Subzero_::test##inst }
    [all...]
test_sync_atomic_main.cpp 61 typedef Type (*FuncType)(bool, volatile Type *, Type);
64 FuncType FuncLlc;
65 FuncType FuncSz;
112 typedef Type (*FuncType)(volatile Type *, Type, Type);
115 FuncType FuncLlc;
116 FuncType FuncSz;
182 typedef Type (*FuncType)(bool, volatile Type *, Type);
185 FuncType FuncLlc;
186 FuncType FuncSz;
  /external/spirv-llvm/lib/SPIRV/libSPIRV/
SPIRVFunction.cpp 77 getEncoder(O) << Type << Id << FCtrlMask << FuncType;
100 Decoder >> Type >> Id >> FCtrlMask >> FuncType;
SPIRVFunction.h 88 FuncType(FunctionType), FCtrlMask(FunctionControlMaskNone) {
94 SPIRVFunction():SPIRVValue(OpFunction),FuncType(NULL),
98 SPIRVTypeFunction *getFunctionType() const { return FuncType;}
137 assert(FuncType && "Invalid func type");
156 SPIRVTypeFunction *FuncType; // Function type
  /prebuilts/go/darwin-x86/src/cmd/cgo/
main.go 93 FuncType *FuncType
128 // A FuncType collects information about a function type in both the C and Go worlds.
129 type FuncType struct {
132 Go *ast.FuncType
gcc.go 559 f, fok := types[i].(*dwarf.FuncType)
562 n.FuncType = conv.FuncType(f, pos)
628 if len(call.Call.Args) < len(name.FuncType.Params) {
633 for i, param := range name.FuncType.Params {
654 params := make([]*ast.Field, len(name.FuncType.Params))
655 nargs := make([]ast.Expr, len(name.FuncType.Params))
657 for i, param := range name.FuncType.Params {
711 ftype := &ast.FuncType{
716 if name.FuncType.Result != nil
    [all...]
  /prebuilts/go/darwin-x86/src/debug/dwarf/
type.go 225 // A FuncType represents a function type.
226 type FuncType struct {
232 func (t *FuncType) String() string {
641 t := new(FuncType)
  /prebuilts/go/linux-x86/src/cmd/cgo/
main.go 93 FuncType *FuncType
128 // A FuncType collects information about a function type in both the C and Go worlds.
129 type FuncType struct {
132 Go *ast.FuncType
gcc.go 559 f, fok := types[i].(*dwarf.FuncType)
562 n.FuncType = conv.FuncType(f, pos)
628 if len(call.Call.Args) < len(name.FuncType.Params) {
633 for i, param := range name.FuncType.Params {
654 params := make([]*ast.Field, len(name.FuncType.Params))
655 nargs := make([]ast.Expr, len(name.FuncType.Params))
657 for i, param := range name.FuncType.Params {
711 ftype := &ast.FuncType{
716 if name.FuncType.Result != nil
    [all...]
  /prebuilts/go/linux-x86/src/debug/dwarf/
type.go 225 // A FuncType represents a function type.
226 type FuncType struct {
232 func (t *FuncType) String() string {
641 t := new(FuncType)
  /external/clang/lib/ASTMatchers/Dynamic/
Marshallers.h 441 typedef ReturnType (*FuncType)();
443 return outvalueToVariantMatcher(reinterpret_cast<FuncType>(Func)());
452 typedef ReturnType (*FuncType)(ArgType1);
455 return outvalueToVariantMatcher(reinterpret_cast<FuncType>(Func)(
465 typedef ReturnType (*FuncType)(ArgType1, ArgType2);
469 return outvalueToVariantMatcher(reinterpret_cast<FuncType>(Func)(
  /external/deqp/modules/gles31/functional/
es31fDebugTests.cpp 150 enum FuncType
156 FuncType m_type;
    [all...]
  /external/llvm/unittests/Transforms/Utils/
Cloning.cpp 220 FunctionType* FuncType = FunctionType::get(Type::getVoidTy(C), false);
221 OldFunc = Function::Create(FuncType, GlobalValue::PrivateLinkage, "f", M);
232 DISubroutineType *FuncType =
239 CU, "f", "f", File, 4, FuncType, true, true, 3, 0, false);
409 auto *FuncType = FunctionType::get(Type::getVoidTy(C), false);
410 auto *PersFn = Function::Create(FuncType, GlobalValue::ExternalLinkage,
413 Function::Create(FuncType, GlobalValue::PrivateLinkage, "f", OldM);
  /prebuilts/go/darwin-x86/src/cmd/api/testdata/src/pkg/p1/
p1.go 156 type FuncType func(x, y int, s string) (b *B, err error)
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/syntax/
nodes.go 102 Type *FuncType
158 Type *FuncType
265 FuncType struct {
  /prebuilts/go/darwin-x86/src/go/ast/
ast.go 261 Type *FuncType // function type
390 // A FuncType node represents a function type.
391 FuncType struct {
445 func (x *FuncType) Pos() token.Pos {
478 func (x *FuncType) End() token.Pos {
510 func (*FuncType) exprNode() {}
928 Type *FuncType // function signature: parameters, results, and position of "func" keyword
  /prebuilts/go/linux-x86/src/cmd/api/testdata/src/pkg/p1/
p1.go 156 type FuncType func(x, y int, s string) (b *B, err error)
  /prebuilts/go/linux-x86/src/cmd/compile/internal/syntax/
nodes.go 102 Type *FuncType
158 Type *FuncType
265 FuncType struct {
  /prebuilts/go/linux-x86/src/go/ast/
ast.go 261 Type *FuncType // function type
390 // A FuncType node represents a function type.
391 FuncType struct {
445 func (x *FuncType) Pos() token.Pos {
478 func (x *FuncType) End() token.Pos {
510 func (*FuncType) exprNode() {}
928 Type *FuncType // function signature: parameters, results, and position of "func" keyword
  /external/swiftshader/third_party/subzero/src/
IceConverter.cpp 864 FunctionType *FuncType = Func.getFunctionType();
866 Converter.convertToIceType(FuncType->getReturnType()));
867 for (size_t I = 0; I < FuncType->getNumParams(); ++I) {
869 Converter.convertToIceType(FuncType->getParamType(I)));
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
NullabilityChecker.cpp 776 const FunctionType *FuncType = Decl->getFunctionType();
777 if (!FuncType)
779 QualType ReturnType = FuncType->getReturnType();
    [all...]
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
binner.cpp 363 typedef PFN_PROCESS_ATTRIBUTES FuncType;
366 static FuncType GetFunc()
    [all...]

Completed in 1019 milliseconds

1 2