Home
last modified time | relevance | path

Searched refs:retType (Results 1 - 20 of 20) sorted by relevance

/third_party/skia/third_party/externals/angle2/src/compiler/translator/TranslatorMetalDirect/
H A DAddExplicitTypeCasts.cpp31 const TType &retType = callNode.getType(); variable
35 if (IsScalarBasicType(retType))
43 return CoerceSimple(retType, SubVector(arg, 0, 1), mNeedsExplicitBoolCasts);
47 else if (retType.isVector())
50 if (argCount == 1 && !retType.isArray())
56 return CoerceSimple(retType, SubVector(arg, 0, retType.getNominalSize()),
64 CoerceSimple(retType.getBasicType(), arg, mNeedsExplicitBoolCasts));
67 else if (retType.isMatrix())
75 if (retType
[all...]
H A DFixTypeConstructors.cpp29 const TType &retType = aggregateNode->getType(); variable
30 if (retType.isScalar())
34 else if (retType.isVector())
36 size_t primarySize = retType.getNominalSize() * retType.getArraySizeProduct();
80 else if (retType.isMatrix())
H A DEmitMetal.cpp1939 const TType &retType = aggregateNode->getType();
1956 if (retType.isArray())
1958 emitType(retType, etConfig);
1961 else if (retType.getStruct())
1963 emitType(retType, etConfig);
1968 emitType(retType, etConfig);
2025 const char *opName = GetOperatorString(op, retType, argType0, argType1, argType2);
2027 if (IsSymbolicOperator(op, retType, argType0, argType1))
H A DModifyStruct.cpp64 auto &retType = InnermostType(type);
65 retType.makeArray(1);
67 return symbolEnv.callFunctionOverload(Name("flatten"), retType, *new TIntermSequence{&node});
/third_party/icu/icu4c/source/test/cintltst/
H A Dsprpdata.c157 UStringPrepType retType; in compareMapping() local
167 retType = getValues(result,&value,&isIndex); in compareMapping()
170 if(type != retType && retType != USPREP_DELETE){ in compareMapping()
192 length = (retType == USPREP_DELETE)? 0 : 1; in compareMapping()
224 if(retType!=USPREP_DELETE && (codepoint-delta) != (uint16_t)mapping[0]){ in compareMapping()
237 UStringPrepType retType; in compareFlagsForRange() local
261 retType = getValues(result, &value, &isIndex); in compareFlagsForRange()
263 if(retType != type){ in compareFlagsForRange()
264 log_err( "FAIL: Did not get the expected type for 0x%06X. Expected: %s Got: %s\n",start,usprepTypeNames[type], usprepTypeNames[retType]); in compareFlagsForRange()
[all...]
/third_party/icu/icu4c/source/test/intltest/
H A Dtestidn.cpp336 UStringPrepType retType; in compareMapping() local
339 retType = getValues(result,value,isIndex); in compareMapping()
342 if(type != retType && retType != USPREP_DELETE){ in compareMapping()
364 length = (retType == USPREP_DELETE)? 0 : 1; in compareMapping()
397 if(retType!=USPREP_DELETE && (codepoint-delta) != (uint16_t)mapping[0]){ in compareMapping()
409 UStringPrepType retType; in compareFlagsForRange() local
432 retType = getValues(result,value,isIndex); in compareFlagsForRange()
434 if(retType != type){ in compareFlagsForRange()
435 pTestIDNA->errln( "FAIL: Did not get the expected type for 0x%06X. Expected: %s Got: %s\n",start,usprepTypeNames[type], usprepTypeNames[retType]); in compareFlagsForRange()
[all...]
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
H A DSymbol.h298 const TType *retType,
340 const TType *retType, in TFunction()
350 returnType(retType),
366 const TType *retType, in TFunction()
372 returnType(retType), in TFunction()
335 TFunction(const TSymbolUniqueId &id, const ImmutableString &name, TExtension extension, const TVariable *const *parameters, size_t paramCount, const TType *retType, TOperator op, bool knownToNotHaveSideEffects) TFunction() argument
361 TFunction(const TSymbolUniqueId &id, const ImmutableString &name, const std::array<TExtension, ExtensionCount> &extensions, const TVariable *const *parameters, size_t paramCount, const TType *retType, TOperator op, bool knownToNotHaveSideEffects) TFunction() argument
H A DSymbol.cpp188 const TType *retType, in TFunction()
193 returnType(retType), in TFunction()
185 TFunction(TSymbolTable *symbolTable, const ImmutableString &name, SymbolType symbolType, const TType *retType, bool knownToNotHaveSideEffects) TFunction() argument
/third_party/glslang/glslang/HLSL/
H A DhlslParseables.cpp334 inline bool IsValid(const char* cname, char /* retOrder */, char /* retType */, char argOrder, char /* argType */, int dim0, int /* dim1 */) in IsValid()
501 const char* retType; // return type key: empty matches type of 1st argument in initialize() member
507 // name retOrd retType argOrder argType stage mask method in initialize()
912 const char* retType = intrinsic.retType ? intrinsic.retType : argType; in initialize() local
914 if (!IsValid(intrinsic.name, *retOrder, *retType, *argOrder, *argType, dim0, dim1)) in initialize()
921 AppendTypeName(s, retOrder, retType, dim0, dim1); // add return type in initialize()
H A DhlslParseHelper.cpp2041 // retType shaderEntryPoint(args...) // shader declared entry point
2046 // out retType ret;
2056 // retType @shaderEntryPoint(args...)
3861 TType retType(EbtFloat, EvqConst, 2); in getSamplePosArray()
3866 retType.transferArraySizes(arraySizes); in getSamplePosArray()
3869 return new TIntermConstantUnion(*values, retType); in getSamplePosArray()
3886 TType retType; in decomposeSampleMethods()
3887 getTextureReturnType(sampler, retType); in decomposeSampleMethods()
3889 if (retType.isStruct()) { in decomposeSampleMethods()
3895 TVariable* structVar = makeInternalVariable("@sampleStructTemp", retType); in decomposeSampleMethods()
9704 setTextureReturnType(TSampler& sampler, const TType& retType, const TSourceLoc& loc) setTextureReturnType() argument
10145 const TType* retType = &patchConstantFunction.getType(); // return type from the PCF addPatchConstantInvocation() local
[all...]
H A DhlslParseHelper.h219 bool setTextureReturnType(TSampler& sampler, const TType& retType, const TSourceLoc& loc);
221 // Obtain the sampler return type of the given sampler in retType.
222 void getTextureReturnType(const TSampler& sampler, TType& retType) const;
/third_party/glslang/glslang/MachineIndependent/
H A DSymbolTable.h245 TFunction(const TString *name, const TType& retType, TOperator tOp = EOpNull) : in TFunction() argument
252 returnType.shallowCopy(retType); in TFunction()
253 declaredBuiltIn = retType.getQualifier().builtIn; in TFunction()
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/
H A DSymbolTable.h148 TFunction(const TString *name, const TType& retType, TOperator tOp = EOpNull, const char *ext = "") : in TFunction() argument
150 returnType(retType), in TFunction()
/third_party/vk-gl-cts/modules/gles31/functional/
H A Des31fProgramUniformTests.cpp1109 const glu::DataType retType = getSamplerLookupReturnType(samplerTypes[i]); in writeUniformDefinitions() local
1110 if (typeReq[0](retType) || typeReq[1](retType)) in writeUniformDefinitions()
/third_party/vk-gl-cts/modules/gles3/functional/
H A Des3fUniformApiTests.cpp1293 const glu::DataType retType = getSamplerLookupReturnType(samplerTypes[i]); in writeUniformDefinitions() local
1294 if (typeReq[0](retType) || typeReq[1](retType)) in writeUniformDefinitions()
/third_party/node/test/fixtures/postject-copy/node_modules/postject/dist/
H A Dapi.js[all...]
/third_party/typescript/lib/
H A Dtsserverlibrary.js[all...]
H A Dtypescript.js[all...]
H A DtypescriptServices.js[all...]
H A Dtsserver.js[all...]

Completed in 140 milliseconds