/external/angle/src/compiler/translator/TranslatorMetalDirect/ |
D | AddExplicitTypeCasts.cpp | 28 const TType &retType = callNode.getType(); in visitAggregatePost() local 32 if (IsScalarBasicType(retType)) in visitAggregatePost() 40 return CoerceSimple(retType, SubVector(arg, 0, 1)); in visitAggregatePost() 44 else if (retType.isVector()) in visitAggregatePost() 52 return CoerceSimple(retType, SubVector(arg, 0, retType.getNominalSize())); in visitAggregatePost() 58 SetArg(callNode, i, CoerceSimple(retType.getBasicType(), arg)); in visitAggregatePost() 61 else if (retType.isMatrix()) in visitAggregatePost() 69 if (retType.getCols() != argType.getCols() || in visitAggregatePost() 70 retType.getRows() != argType.getRows()) in visitAggregatePost() 72 TemplateArg templateArgs[] = {retType.getCols(), retType.getRows()}; in visitAggregatePost() [all …]
|
D | FixTypeConstructors.cpp | 29 const TType &retType = aggregateNode->getType(); in visitAggregate() local 30 if (retType.isScalar()) in visitAggregate() 34 else if (retType.isVector()) in visitAggregate() 36 size_t primarySize = retType.getNominalSize() * retType.getArraySizeProduct(); in visitAggregate() 80 else if (retType.isMatrix()) in visitAggregate()
|
/external/javassist/src/main/javassist/expr/ |
D | Cast.java | 123 CtClass retType = getType(); in replace() local 128 int retVar = jc.recordReturnType(retType, true); in replace() 129 jc.recordProceed(new ProceedForCast(index, retType)); in replace() 133 checkResultValue(retType, statement); in replace() 139 bytecode.addConstZero(retType); in replace() 140 bytecode.addStore(retVar, retType); // initialize $_ in replace() 143 bytecode.addLoad(retVar, retType); in replace() 158 CtClass retType; field in Cast.ProceedForCast 162 retType = t; in ProceedForCast() 177 gen.setType(retType); in doit() [all …]
|
D | FieldAccess.java | 184 CtClass retType; in replace() local 191 retType = fieldType; in replace() 196 retType = CtClass.voidType; in replace() 205 boolean included = checkResultValue(retType, statement); in replace() 209 int retVar = jc.recordReturnType(retType, included); in replace() 211 jc.recordProceed(new ProceedForRead(retType, opcode, in replace() 225 if (retType == CtClass.voidType) { in replace() 230 bytecode.addConstZero(retType); in replace() 231 bytecode.addStore(retVar, retType); // initialize $_ in replace() 236 bytecode.addLoad(retVar, retType); in replace()
|
D | MethodCall.java | 225 CtClass retType = Descriptor.getReturnType(signature, cp); in replace() local 229 int retVar = jc.recordReturnType(retType, true); in replace() 240 checkResultValue(retType, statement); in replace() 246 if (retType != CtClass.voidType) { in replace() 247 bytecode.addConstZero(retType); in replace() 248 bytecode.addStore(retVar, retType); // initialize $_ in replace() 252 if (retType != CtClass.voidType) in replace() 253 bytecode.addLoad(retVar, retType); in replace()
|
D | Instanceof.java | 126 CtClass retType = CtClass.booleanType; in replace() local 131 int retVar = jc.recordReturnType(retType, true); in replace() 139 checkResultValue(retType, statement); in replace() 145 bytecode.addConstZero(retType); in replace() 146 bytecode.addStore(retVar, retType); // initialize $_ in replace() 149 bytecode.addLoad(retVar, retType); in replace()
|
D | NewArray.java | 196 CtClass retType; in replace2() local 226 retType = Descriptor.toCtClass(desc, thisClass.getClassPool()); in replace2() 241 checkResultValue(retType, statement); in replace2() 242 int retVar = jc.recordReturnType(retType, true); in replace2() 243 jc.recordProceed(new ProceedForArray(retType, opcode, index, dim)); in replace2()
|
/external/icu/icu4c/source/test/cintltst/ |
D | sprpdata.c | 155 UStringPrepType retType; in compareMapping() local 165 retType = getValues(result,&value,&isIndex); in compareMapping() 168 if(type != retType && retType != USPREP_DELETE){ in compareMapping() 190 length = (retType == USPREP_DELETE)? 0 : 1; in compareMapping() 222 if(retType!=USPREP_DELETE && (codepoint-delta) != (uint16_t)mapping[0]){ in compareMapping() 235 UStringPrepType retType; in compareFlagsForRange() local 259 retType = getValues(result, &value, &isIndex); in compareFlagsForRange() 261 if(retType != type){ in compareFlagsForRange() 262 …ed type for 0x%06X. Expected: %s Got: %s\n",start,usprepTypeNames[type], usprepTypeNames[retType]); in compareFlagsForRange() 266 …ed type for 0x%06X. Expected: %s Got: %s\n",start,usprepTypeNames[type], usprepTypeNames[retType]); in compareFlagsForRange()
|
/external/icu/icu4c/source/test/intltest/ |
D | testidn.cpp | 336 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 …ed type for 0x%06X. Expected: %s Got: %s\n",start,usprepTypeNames[type], usprepTypeNames[retType]); in compareFlagsForRange() 439 …ed type for 0x%06X. Expected: %s Got: %s\n",start,usprepTypeNames[type], usprepTypeNames[retType]); in compareFlagsForRange()
|
/external/llvm-project/mlir/include/mlir/TableGen/ |
D | OpClass.h | 181 OpMethodSignature(StringRef retType, StringRef name, Args &&...args) in OpMethodSignature() argument 182 : returnType(retType), methodName(name), in OpMethodSignature() 245 OpMethod(StringRef retType, StringRef name, Property property, unsigned id, in OpMethod() argument 248 methodSignature(retType, name, std::forward<Args>(args)...), in OpMethod() 322 OpMethod *addMethodAndPrune(StringRef retType, StringRef name, in addMethodAndPrune() argument 325 retType, name, properties, nextMethodID++, std::forward<Args>(args)...); in addMethodAndPrune() 330 OpMethod *addMethodAndPrune(StringRef retType, StringRef name, in addMethodAndPrune() argument 332 return addMethodAndPrune(retType, name, OpMethod::MP_None, in addMethodAndPrune()
|
/external/llvm/examples/ExceptionDemo/ |
D | ExceptionDemo.cpp | 216 llvm::Type *retType, in createFunction() argument 224 llvm::FunctionType::get(retType, theArgTypes, isVarArg); in createFunction() 1748 llvm::Type *retType = builder.getVoidTy(); in createStandardUtilityFunctions() local 1757 retType, in createStandardUtilityFunctions() 1767 retType = builder.getVoidTy(); in createStandardUtilityFunctions() 1776 retType, in createStandardUtilityFunctions() 1786 retType = builder.getVoidTy(); in createStandardUtilityFunctions() 1794 retType, in createStandardUtilityFunctions() 1804 retType = builder.getVoidTy(); in createStandardUtilityFunctions() 1812 retType, in createStandardUtilityFunctions() [all …]
|
/external/llvm-project/llvm/examples/ExceptionDemo/ |
D | ExceptionDemo.cpp | 163 llvm::Type *retType, in createFunction() argument 171 llvm::FunctionType::get(retType, theArgTypes, isVarArg); in createFunction() 1696 llvm::Type *retType = builder.getVoidTy(); in createStandardUtilityFunctions() local 1705 retType, in createStandardUtilityFunctions() 1715 retType = builder.getVoidTy(); in createStandardUtilityFunctions() 1724 retType, in createStandardUtilityFunctions() 1734 retType = builder.getVoidTy(); in createStandardUtilityFunctions() 1742 retType, in createStandardUtilityFunctions() 1752 retType = builder.getVoidTy(); in createStandardUtilityFunctions() 1760 retType, in createStandardUtilityFunctions() [all …]
|
/external/javassist/src/main/javassist/util/proxy/ |
D | RuntimeSupport.java | 200 public static String makeDescriptor(Class<?>[] params, Class<?> retType) { in makeDescriptor() argument 207 if (retType != null) in makeDescriptor() 208 makeDesc(sbuf, retType); in makeDescriptor() 219 public static String makeDescriptor(String params, Class<?> retType) { in makeDescriptor() argument 221 makeDesc(sbuf, retType); in makeDescriptor()
|
/external/llvm-project/mlir/lib/Dialect/Tosa/Utils/ |
D | QuantUtils.cpp | 284 quant::QuantizedType retType; in buildQTypeFromMinMax() local 320 retType = quant::fakeQuantAttrsToType( in buildQTypeFromMinMax() 328 retType = quant::fakeQuantAttrsToType( in buildQTypeFromMinMax() 339 if (!retType) in buildQTypeFromMinMax() 342 return convfunc.convert(retType); in buildQTypeFromMinMax()
|
/external/angle/src/compiler/translator/ |
D | Symbol.h | 298 const TType *retType, 338 const TType *retType, in TFunction() argument 348 returnType(retType), 363 const TType *retType, in TFunction() argument 369 returnType(retType), in TFunction()
|
/external/llvm-project/mlir/unittests/Dialect/SPIRV/ |
D | DeserializationTest.cpp | 97 uint32_t addFunctionType(uint32_t retType, ArrayRef<uint32_t> paramTypes) { in addFunctionType() argument 101 operands.push_back(retType); in addFunctionType() 107 uint32_t addFunction(uint32_t retType, uint32_t fnType) { in addFunction() argument 110 {retType, id, in addFunction()
|
/external/llvm-project/lldb/source/Plugins/ABI/Hexagon/ |
D | ABISysV_hexagon.cpp | 1295 llvm::Type &retType) const { in GetReturnValueObjectImpl() 1311 if (retType.isVoidTy()) { in GetReturnValueObjectImpl() 1315 else if (retType.isIntegerTy() || retType.isPointerTy()) { in GetReturnValueObjectImpl() 1325 if (retType.isIntegerTy() && retType.isSized()) { in GetReturnValueObjectImpl() 1326 uint64_t size = retType.getScalarSizeInBits(); in GetReturnValueObjectImpl()
|
/external/llvm-project/lldb/source/Plugins/ABI/ARC/ |
D | ABISysV_arc.cpp | 513 llvm::Type &retType) const { in GetReturnValueObjectImpl() 520 if (retType.isVoidTy()) { in GetReturnValueObjectImpl() 524 else if (retType.isIntegerTy()) { in GetReturnValueObjectImpl() 525 size_t byte_size = retType.getPrimitiveSizeInBits(); in GetReturnValueObjectImpl() 536 else if (retType.isPointerTy()) { in GetReturnValueObjectImpl() 543 else if (retType.isFloatingPointTy()) { in GetReturnValueObjectImpl() 544 const size_t byte_size = retType.getPrimitiveSizeInBits() / CHAR_BIT; in GetReturnValueObjectImpl()
|
/external/javassist/src/main/javassist/ |
D | CtMethod.java | 293 CtClass retType; in setWrappedBody() local 296 retType = getReturnType(); in setWrappedBody() 305 params, retType, in setWrappedBody()
|
/external/autotest/client/site_tests/graphics_SanAngeles/src/ |
D | importgl.h | 55 #define FNDEF(retType, funcName, args) \ argument 56 IMPORTGL_API retType (*funcPtr_##funcName) args IMPORTGL_FNPTRINIT;\ 57 typedef retType (*funcType_##funcName) args
|
/external/sonivox/jet_tools/JetCreator/ |
D | JetUtils.py | 250 def IniGetValue(configFile, section, option, retType='str', default=''): argument 258 if retType =='int': 263 elif retType == 'float': 268 elif retType == 'bool': 276 elif retType == 'list': 699 retType = 'str' 701 retType = 'int' 715 if retType == 'str':
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/src/java-symbol-solver-core/com/github/javaparser/symbolsolver/javaparsermodel/declarations/ |
D | JavaParserFieldDeclaration.java | 71 …Type retType = JavaParserFacade.get(typeSolver).convert(variableDeclarator.getType(), wrappedNode); in getType() local 72 return retType; in getType()
|
/external/javassist/src/main/javassist/bytecode/ |
D | SignatureAttribute.java | 272 Type retType; field in SignatureAttribute.MethodSignature 287 retType = ret == null ? new BaseType("void") : ret; in MethodSignature() 308 public Type getReturnType() { return retType; } in getReturnType() 329 sbuf.append(retType); in toString() 356 retType.encode(sbuf); in encode()
|
/external/angle/third_party/vulkan-deps/glslang/src/glslang/HLSL/ |
D | hlslParseables.cpp | 501 const char* retType; // return type key: empty matches type of 1st argument in initialize() member 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()
|
/external/deqp-deps/glslang/glslang/HLSL/ |
D | hlslParseables.cpp | 501 const char* retType; // return type key: empty matches type of 1st argument in initialize() member 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()
|