Home
last modified time | relevance | path

Searched refs:inType (Results 1 – 25 of 47) sorted by relevance

12

/external/python/cpython2/Modules/_ctypes/libffi_osx/powerpc/
Dppc-ffi_darwin.c309 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 …]
Dppc-darwin.h81 bool ffi64_stret_needs_ptr(const ffi_type* inType,
/external/python/cpython3/Modules/_ctypes/libffi_osx/powerpc/
Dppc-ffi_darwin.c309 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 …]
Dppc-darwin.h81 bool ffi64_stret_needs_ptr(const ffi_type* inType,
/external/OpenCL-CTS/test_conformance/conversions/
Dtest_conversions.cpp116 static int GetTestCase( const char *name, Type *outType, Type *inType, SaturationMode *sat, Roundin…
117 static int DoTest( cl_device_id device, Type outType, Type inType, SaturationMode sat, RoundingMode…
118 static cl_program MakeProgram( Type outType, Type inType, SaturationMode sat, RoundingMode round,…
124 static cl_program CreateImplicitConvertProgram( Type outType, Type inType, SaturationMode sat, Roun…
125 static cl_program CreateStandardProgram( Type outType, Type inType, SaturationMode sat, RoundingMod…
155 Type inType, outType; in test_conversions() local
163 if( GetTestCase( argList[i], &outType, &inType, &sat, &round ) ) in test_conversions()
170 if( !gTestDouble && (inType == kdouble || outType == kdouble ) ) in test_conversions()
174 …", gTypeNames[ outType ], gSaturationNames[ sat ], gRoundingModeNames[round], gTypeNames[inType] ); in test_conversions()
182 … if( !gHasLong && (inType == klong || outType == klong || inType == kulong || outType == kulong) ) in test_conversions()
[all …]
/external/OpenCL-CTS/test_common/harness/
Dconversions.cpp208 #define BOOL_CASE(inType) \ argument
211 *boolPtr = (*inType##Ptr) != 0 ? true : false; \
214 #define SIMPLE_CAST_CASE(inType, outEnum, outType) \ argument
217 *outType##Ptr = (outType)(*inType##Ptr); \
222 #define DOWN_CAST_CASE(inType, outEnum, outType, sat) \ argument
228 && *inType##Ptr > (Long)sUpperLimits[outEnum]) \
230 && (ULong)*inType##Ptr > sUpperLimits[outEnum])) \
232 else if (*inType##Ptr < sLowerLimits[outEnum]) \
235 *outType##Ptr = (outType)*inType##Ptr; \
240 *inType##Ptr \
[all …]
Dconversions.h72 ExplicitType inType, bool saturate,
80 extern cl_long read_upscale_signed(void *inRaw, ExplicitType inType);
81 extern cl_ulong read_upscale_unsigned(void *inRaw, ExplicitType inType);
82 extern float read_as_float(void *inRaw, ExplicitType inType);
/external/OpenCL-CTS/test_conformance/gles/
Dhelpers.cpp153 char * convert_to_expected( void * inputBuffer, size_t numPixels, ExplicitType inType, ExplicitType… in convert_to_expected() argument
157 get_explicit_type_name( inType ), get_explicit_type_name( outType ) ); in convert_to_expected()
160 if( inType == outType ) in convert_to_expected()
163 memcpy( outData, inputBuffer, numPixels * 4 * get_explicit_type_size(inType) ); in convert_to_expected()
166 else if( inType == kChar ) in convert_to_expected()
192 …ERROR: Unsupported conversion from %s to %s!\n", get_explicit_type_name( inType ), get_explicit_ty… in convert_to_expected()
196 else if( inType == kUChar ) in convert_to_expected()
222 …ERROR: Unsupported conversion from %s to %s!\n", get_explicit_type_name( inType ), get_explicit_ty… in convert_to_expected()
226 else if( inType == kShort ) in convert_to_expected()
252 …ERROR: Unsupported conversion from %s to %s!\n", get_explicit_type_name( inType ), get_explicit_ty… in convert_to_expected()
[all …]
DtestBase.h57 extern char * convert_to_expected( void * inputBuffer, size_t numPixels, ExplicitType inType, Expli…
/external/OpenCL-CTS/test_conformance/gl/
Dhelpers.cpp172 char * convert_to_expected( void * inputBuffer, size_t numPixels, ExplicitType inType, ExplicitType… in convert_to_expected() argument
176 get_explicit_type_name( inType ), get_explicit_type_name( outType ) ); in convert_to_expected()
179 if( inType == outType ) in convert_to_expected()
188 … memcpy( outData, inputBuffer, numPixels * channelNum * get_explicit_type_size(inType) ); in convert_to_expected()
192 else if( inType == kChar ) in convert_to_expected()
218 …ERROR: Unsupported conversion from %s to %s!\n", get_explicit_type_name( inType ), get_explicit_ty… in convert_to_expected()
222 else if( inType == kUChar ) in convert_to_expected()
248 …ERROR: Unsupported conversion from %s to %s!\n", get_explicit_type_name( inType ), get_explicit_ty… in convert_to_expected()
252 else if( inType == kShort ) in convert_to_expected()
278 …ERROR: Unsupported conversion from %s to %s!\n", get_explicit_type_name( inType ), get_explicit_ty… in convert_to_expected()
[all …]
DtestBase.h49 extern char * convert_to_expected( void * inputBuffer, size_t numPixels, ExplicitType inType, Expli…
/external/deqp/modules/gles2/scripts/
Dgen-conversions.py178 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
/external/golang-protobuf/protoc-gen-go/grpc/
Dgrpc.go338 inType := g.typeName(method.GetInputType())
374 g.P("Send(*", inType, ") error")
392 g.P("func (x *", streamType, ") Send(m *", inType, ") error {")
467 inType := g.typeName(method.GetInputType())
472 g.P("in := new(", inType, ")")
480 g.P("return srv.(", servName, "Server).", methName, "(ctx, req.(*", inType, "))")
490 g.P("m := new(", inType, ")")
512 g.P("Recv() (*", inType, ", error)")
536 g.P("func (x *", streamType, ") Recv() (*", inType, ", error) {")
537 g.P("m := new(", inType, ")")
/external/deqp/modules/glshared/
DglsShaderConstExprTests.cpp126 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()
DglsShaderConstExprTests.hpp55 DataType inType; member
/external/deqp/modules/gles3/scripts/
Dgen-conversions.py191 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
/external/cldr/tools/java/org/unicode/cldr/util/
DLsrvCanonicalizer.java260 private Multimap<LstrType, String> inType = TreeMultimap.create(); field in LsrvCanonicalizer
399 rrs.inType.putAll(lstrType, type.get(lstrType)); in load()
400 rrs.inType.putAll(lstrType, replacement.get(lstrType)); in load()
403 rrs.inType = ImmutableMultimap.copyOf(rrs.inType); in load()
407 all.removeAll(rrs.inType.get(lstrType)); in load()
531 return inType.get(language); in getInType()
/external/angle/src/tests/deqp_support/
DglcShaderConstExprTests_override.cpp47 glu::DataType inType; member
266 const glu::DataType inType = testCase.inType; in createTests() local
282 glu::DataType dataType = static_cast<glu::DataType>(inType + component); in createTests()
316 casePrefix + baseName + "_" + typeName + "_" + glu::getDataTypeName(inType); in createTests()
318 expressionTemplateParams["MT"] = glu::getDataTypeName(inType); in createTests()
/external/deqp/external/openglcts/modules/common/
DglcShaderConstExprTests.cpp47 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()
/external/icu/icu4c/source/test/intltest/
Ddcfmtest.h58 EFormatInputType inType,
Ddcfmtest.cpp406 EFormatInputType inType, // input number type in execFormatTest() argument
448 switch (inType) { in execFormatTest()
/external/auto/common/src/main/java/com/google/auto/common/
DOverrides.java177 DeclaredType inType = MoreTypes.asDeclared(in.asType()); in isSubsignature() local
180 MoreTypes.asExecutable(typeUtils.asMemberOf(inType, overrider)); in isSubsignature()
182 MoreTypes.asExecutable(typeUtils.asMemberOf(inType, overridden)); in isSubsignature()
/external/python/cpython2/Mac/Modules/launch/
D_Launchmodule.c263 OSType inType; in Launch_LSGetApplicationForInfo() local
270 PyMac_GetOSType, &inType, in Launch_LSGetApplicationForInfo()
275 _err = LSGetApplicationForInfo(inType, in Launch_LSGetApplicationForInfo()
/external/mdnsresponder/mDNSWindows/DNSServiceBrowser/Windows/Sources/
DChooserDialog.h99 void StartBrowsing( const char *inType, const char *inDomain );
/external/mdnsresponder/mDNSWindows/
DmDNSWin32.h130 typedef void (*ReportStatusFunc)(int inType, const char *inFormat, ...);

12