/third_party/python/Modules/_ctypes/libffi_osx/powerpc/ |
D | ppc-ffi_darwin.c | 309 const ffi_type* inType) in ffi64_struct_contains_fp() argument 314 for (i = 0; inType->elements[i] != NULL && !containsFP; i++) in ffi64_struct_contains_fp() 316 if (inType->elements[i]->type == FFI_TYPE_FLOAT || in ffi64_struct_contains_fp() 317 inType->elements[i]->type == FFI_TYPE_DOUBLE || in ffi64_struct_contains_fp() 318 inType->elements[i]->type == FFI_TYPE_LONGDOUBLE) in ffi64_struct_contains_fp() 320 else if (inType->elements[i]->type == FFI_TYPE_STRUCT) in ffi64_struct_contains_fp() 321 containsFP = ffi64_struct_contains_fp(inType->elements[i]); in ffi64_struct_contains_fp() 1032 const ffi_type* inType, in ffi64_struct_to_ram_form() argument 1070 switch (inType->size) in ffi64_struct_to_ram_form() 1073 srcGMarker += 8 - inType->size; in ffi64_struct_to_ram_form() [all …]
|
D | ppc-darwin.h | 81 bool ffi64_stret_needs_ptr(const ffi_type* inType,
|
/third_party/node/src/res/ |
D | node_etw_provider.man | 40 <data name="fd" inType="win:UInt32" /> 41 <data name="port" inType="win:UInt32" /> 42 <data name="remote" inType="win:AnsiString" /> 43 <data name="buffered" inType="win:UInt32" /> 47 <data name="url" inType="win:AnsiString" /> 48 <data name="method" inType="win:AnsiString" /> 49 <data name="fd" inType="win:UInt32" /> 50 <data name="port" inType="win:UInt32" /> 51 <data name="remote" inType="win:AnsiString" /> 52 <data name="buffered" inType="win:UInt32" /> [all …]
|
/third_party/vk-gl-cts/modules/gles2/scripts/ |
D | gen-conversions.py | 178 inType = inValues[0].typeString() 180 self.name = "%s_to_%s" % (inType, outType) 182 self.inputs = [("%s in0" % inType, inValues)] 195 inType = inValue.typeString() 197 self.name = "%s_to_%s" % (inType, outType) 198 self.op = "%s in0 = %s;\n%s out0 = %s(in0);" % (inType, str(inValue), outType, outType) 199 self.inType = inType
|
/third_party/vk-gl-cts/modules/glshared/ |
D | glsShaderConstExprTests.cpp | 126 const DataType inType = cases[caseNdx].inType; in createTests() local 141 …string typeName = glu::getDataTypeName((glu::DataType)(inType + compCount)); // results in … in createTests() 202 …scalarCaseName = string(cases[caseNdx].name) + "_" + typeName + "_" + glu::getDataTypeName(inType); in createTests() 204 expressionTemplateParams["MT"] = glu::getDataTypeName(inType); in createTests()
|
D | glsShaderConstExprTests.hpp | 55 DataType inType; member
|
D | glsVertexArrayTests.hpp | 154 …virtual void bind (int attribNdx, int offset, int size, InputType inType, OutputType outType, … 176 …virtual void bind (int attribNdx, int offset, int size, InputType inType, OutputType outType…
|
/third_party/vk-gl-cts/modules/gles3/scripts/ |
D | gen-conversions.py | 191 inType = inValues[0].typeString() 193 self.name = "%s_to_%s" % (inType, outType) 195 self.inputs = [("%s in0" % inType, inValues)] 208 inType = inValue.typeString() 210 self.name = "%s_to_%s" % (inType, outType) 211 self.op = "%s in0 = %s;\n%s out0 = %s(in0);" % (inType, str(inValue), outType, outType) 212 self.inType = inType
|
/third_party/vk-gl-cts/external/openglcts/modules/common/ |
D | glcShaderConstExprTests.cpp | 47 glu::DataType inType; member 250 const glu::DataType inType = testCase.inType; in createTests() local 266 glu::DataType dataType = static_cast<glu::DataType>(inType + component); in createTests() 297 casePrefix + baseName + "_" + typeName + "_" + glu::getDataTypeName(inType); in createTests() 299 expressionTemplateParams["MT"] = glu::getDataTypeName(inType); in createTests()
|
/third_party/icu/icu4c/source/test/intltest/ |
D | dcfmtest.h | 58 EFormatInputType inType,
|
D | dcfmtest.cpp | 406 EFormatInputType inType, // input number type in execFormatTest() argument 448 switch (inType) { in execFormatTest()
|
/third_party/flutter/skia/src/sksl/ |
D | SkSLByteCodeGenerator.cpp | 762 const Type& inType = c.fArguments[0]->fType; in writeConstructor() local 764 TypeCategory inCategory = type_category(inType); in writeConstructor() 766 int inCount = SlotCount(inType); in writeConstructor() 785 if (inType.kind() == Type::kMatrix_Kind && outType.kind() == Type::kMatrix_Kind) { in writeConstructor() 787 SlotCount(outType) - SlotCount(inType)); in writeConstructor() 788 this->write8(inType.columns()); in writeConstructor() 789 this->write8(inType.rows()); in writeConstructor()
|
/third_party/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/ |
D | ICUTaglet.java | 73 public boolean inType() { in inType() method in ICUTaglet
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
D | UtilsVk.cpp | 776 spirv::IdRef inType, in InsertVariableDecl() argument 782 spirv::WriteVariable(blobOut, inType, inId, spv::StorageClassUniformConstant, nullptr); in InsertVariableDecl() 792 spirv::IdRef inType(kIdFloatSubpassInputType); in InsertColorVariableDecl() local 798 inType = spirv::IdRef(kIdSIntSubpassInputType); in InsertColorVariableDecl() 802 inType = spirv::IdRef(kIdUIntSubpassInputType); in InsertColorVariableDecl() 807 InsertVariableDecl(outType, outId, inType, inId, blobOut); in InsertColorVariableDecl()
|
/third_party/vk-gl-cts/modules/gles2/functional/ |
D | es2fShaderOperatorTests.cpp | 474 DataType inType = spec.inputs[i].type; in ShaderOperatorCase() local 475 int inSize = getDataTypeScalarSize(inType); in ShaderOperatorCase() 476 bool isInt = de::inRange<int>(inType, TYPE_INT, TYPE_INT_VEC4); in ShaderOperatorCase() 477 bool isBool = de::inRange<int>(inType, TYPE_BOOL, TYPE_BOOL_VEC4); in ShaderOperatorCase() 478 const char* typeName = getDataTypeName(inType); in ShaderOperatorCase()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/shaderrender/ |
D | vktShaderRenderOperatorTests.cpp | 725 const DataType inType = m_spec.inputs[inputNdx].type; in setupShaderData() local 726 const int inSize = getDataTypeScalarSize(inType); in setupShaderData() 727 const bool isInt = de::inRange<int>(inType, TYPE_INT, TYPE_INT_VEC4); in setupShaderData() 728 const bool isUint = de::inRange<int>(inType, TYPE_UINT, TYPE_UINT_VEC4); in setupShaderData() 729 const bool isBool = de::inRange<int>(inType, TYPE_BOOL, TYPE_BOOL_VEC4); in setupShaderData() 730 const char* typeName = getDataTypeName(inType); in setupShaderData()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderrender/ |
D | vktShaderRenderOperatorTests.cpp | 725 const DataType inType = m_spec.inputs[inputNdx].type; in setupShaderData() local 726 const int inSize = getDataTypeScalarSize(inType); in setupShaderData() 727 const bool isInt = de::inRange<int>(inType, TYPE_INT, TYPE_INT_VEC4); in setupShaderData() 728 const bool isUint = de::inRange<int>(inType, TYPE_UINT, TYPE_UINT_VEC4); in setupShaderData() 729 const bool isBool = de::inRange<int>(inType, TYPE_BOOL, TYPE_BOOL_VEC4); in setupShaderData() 730 const char* typeName = getDataTypeName(inType); in setupShaderData()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/image/ |
D | vktImageDepthStencilDescriptorTests.cpp | 785 …const auto inType = (isIA ? VK_DESCRIPTOR_TYPE_INPUT_ATTACHMENT : VK_DESCRIPTOR_TYPE_SAMPLED_IMAGE… in iterate() local 788 inputUpdateBuilder.writeSingle(inputSet.get(), location, inType, &inputImgInfos.back()); in iterate()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/image/ |
D | vktImageDepthStencilDescriptorTests.cpp | 785 …const auto inType = (isIA ? VK_DESCRIPTOR_TYPE_INPUT_ATTACHMENT : VK_DESCRIPTOR_TYPE_SAMPLED_IMAGE… in iterate() local 788 inputUpdateBuilder.writeSingle(inputSet.get(), location, inType, &inputImgInfos.back()); in iterate()
|
/third_party/typescript/src/compiler/ |
D | scanner.ts | 62 setInJSDocType(inType: boolean): void; 2568 function setInJSDocType(inType: boolean) { 2569 inJSDocType += inType ? 1 : -1;
|
/third_party/vk-gl-cts/modules/gles3/functional/ |
D | es3fShaderOperatorTests.cpp | 854 DataType inType = m_spec.inputs[i].type; in setupShaderData() local 855 int inSize = getDataTypeScalarSize(inType); in setupShaderData() 856 bool isBool = de::inRange<int>(inType, TYPE_BOOL, TYPE_BOOL_VEC4); in setupShaderData() 857 bool isInt = de::inRange<int>(inType, TYPE_INT, TYPE_INT_VEC4); in setupShaderData() 858 bool isUint = de::inRange<int>(inType, TYPE_UINT, TYPE_UINT_VEC4); in setupShaderData() 859 const char* typeName = getDataTypeName(inType); in setupShaderData()
|
/third_party/vk-gl-cts/framework/randomshaders/ |
D | rsgExpression.cpp | 739 …VariableType::Type inType = state.getRandom().choose<VariableType::Type>(&inTypes[0], &inTypes[0] … in ConstructorOp() local 742 ValueRange inValueRange(VariableType(inType, 1)); in ConstructorOp()
|
/third_party/skia/src/sksl/codegen/ |
D | SkSLMetalCodeGenerator.cpp | 1143 const Type& inType = c.argument()->type().componentType(); in writeConstructorArrayCast() local 1145 String inTypeName = this->typeName(inType); in writeConstructorArrayCast()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/ray_tracing/ |
D | vktRayTracingMiscTests.cpp | 296 CaseDef(const TestType& inType) in CaseDef() 297 : type (inType), in CaseDef() 304 CaseDef(const TestType& inType, in CaseDef() 307 : type (inType), in CaseDef()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ray_tracing/ |
D | vktRayTracingMiscTests.cpp | 296 CaseDef(const TestType& inType) in CaseDef() 297 : type (inType), in CaseDef() 304 CaseDef(const TestType& inType, in CaseDef() 307 : type (inType), in CaseDef()
|