Home
last modified time | relevance | path

Searched refs:valType (Results 1 – 15 of 15) sorted by relevance

/external/oboe/samples/RhythmGame/third_party/glm/gtx/
Dtransform2.hpp91 template <typename valType, precision P>
92 GLM_FUNC_DECL tmat4x4<valType, P> scaleBias(
93 valType scale,
94 valType bias);
98 template <typename valType, precision P>
99 GLM_FUNC_DECL tmat4x4<valType, P> scaleBias(
100 tmat4x4<valType, P> const & m,
101 valType scale,
102 valType bias);
/external/llvm-project/mlir/lib/Dialect/LLVMIR/IR/
DLLVMDialect.cpp1627 auto valType = op.val().getType().cast<LLVM::LLVMType>(); in verify() local
1628 if (valType != ptrType.getPointerElementTy()) in verify()
1632 if (resType != valType) in verify()
1636 if (!valType.isFloatingPointTy()) in verify()
1639 if (!valType.isIntegerTy(8) && !valType.isIntegerTy(16) && in verify()
1640 !valType.isIntegerTy(32) && !valType.isIntegerTy(64) && in verify()
1641 !valType.isBFloatTy() && !valType.isHalfTy() && !valType.isFloatTy() && in verify()
1642 !valType.isDoubleTy()) in verify()
1645 if (!valType.isIntegerTy(8) && !valType.isIntegerTy(16) && in verify()
1646 !valType.isIntegerTy(32) && !valType.isIntegerTy(64)) in verify()
[all …]
/external/libxml2/include/libxml/
Dxmlschemastypes.h57 xmlSchemaValType valType,
101 xmlSchemaValType valType,
/external/oboe/samples/RhythmGame/third_party/glm/gtc/
Dquaternion.inl135 //template <typename valType>
136 //GLM_FUNC_QUALIFIER tquat<valType>::tquat
138 // valType const & pitch,
139 // valType const & yaw,
140 // valType const & roll
143 // tvec3<valType> eulerAngle(pitch * valType(0.5), yaw * valType(0.5), roll * valType(0.5));
144 // tvec3<valType> c = glm::cos(eulerAngle * valType(0.5));
145 // tvec3<valType> s = glm::sin(eulerAngle * valType(0.5));
/external/libxml2/os400/libxmlrpg/
Dxmlschemastypes.rpgle75 d valType value like(xmlSchemaValType)
163 d valType value like(xmlSchemaValType)
/external/libxml2/
Dxmlschemastypes.c5258 xmlSchemaValType valType, in xmlSchemaValidateLengthFacetInternal() argument
5289 switch (valType) { in xmlSchemaValidateLengthFacetInternal()
5299 if (valType == XML_SCHEMAS_STRING) in xmlSchemaValidateLengthFacetInternal()
5401 xmlSchemaValType valType, in xmlSchemaValidateLengthFacetWhtsp() argument
5407 return (xmlSchemaValidateLengthFacetInternal(facet, valType, value, val, in xmlSchemaValidateLengthFacetWhtsp()
5428 xmlSchemaValType valType, in xmlSchemaValidateFacetInternal() argument
5509 facet->val, facet->value, fws, valType, val, in xmlSchemaValidateFacetInternal()
5522 if ((valType == XML_SCHEMAS_QNAME) || in xmlSchemaValidateFacetInternal()
5523 (valType == XML_SCHEMAS_NOTATION)) in xmlSchemaValidateFacetInternal()
5530 if ((valType == XML_SCHEMAS_QNAME) || in xmlSchemaValidateFacetInternal()
[all …]
Dxmlschemas.c1509 xmlSchemaValType valType; in xmlSchemaGetCanonValueWhtspExt_1() local
1519 valType = xmlSchemaGetValType(val); in xmlSchemaGetCanonValueWhtspExt_1()
1520 switch (valType) { in xmlSchemaGetCanonValueWhtspExt_1()
1540 if (for_hash && valType == XML_SCHEMAS_DECIMAL) { in xmlSchemaGetCanonValueWhtspExt_1()
13447 xmlSchemaIsDerivedFromBuiltInType(xmlSchemaTypePtr type, int valType) in xmlSchemaIsDerivedFromBuiltInType() argument
13454 if (type->builtInType == valType) in xmlSchemaIsDerivedFromBuiltInType()
13459 return(xmlSchemaIsDerivedFromBuiltInType(type->subtypes, valType)); in xmlSchemaIsDerivedFromBuiltInType()
13461 return(xmlSchemaIsDerivedFromBuiltInType(type->subtypes, valType)); in xmlSchemaIsDerivedFromBuiltInType()
13476 xmlSchemaIsUserDerivedFromBuiltInType(xmlSchemaTypePtr type, int valType)
13483 if (type->builtInType == valType)
[all …]
Dtestapi.c35928 xmlSchemaValType valType; /* the built-in type of the value */ in test_xmlSchemaValidateFacetWhtsp() local
35946 valType = gen_xmlSchemaValType(n_valType, 2); in test_xmlSchemaValidateFacetWhtsp()
35951 ret_val = xmlSchemaValidateFacetWhtsp(facet, fws, valType, (const xmlChar *)value, val, ws); in test_xmlSchemaValidateFacetWhtsp()
35956 des_xmlSchemaValType(n_valType, valType, 2); in test_xmlSchemaValidateFacetWhtsp()
36057 xmlSchemaValType valType; /* the built-in type */ in test_xmlSchemaValidateLengthFacetWhtsp() local
36076 valType = gen_xmlSchemaValType(n_valType, 1); in test_xmlSchemaValidateLengthFacetWhtsp()
36082 …ret_val = xmlSchemaValidateLengthFacetWhtsp(facet, valType, (const xmlChar *)value, val, length, w… in test_xmlSchemaValidateLengthFacetWhtsp()
36086 des_xmlSchemaValType(n_valType, valType, 1); in test_xmlSchemaValidateLengthFacetWhtsp()
/external/golang-protobuf/protoc-gen-go/generator/
Dgenerator.go2285 valType, valWire := g.GoType(d, valField)
2294 valType = strings.TrimPrefix(valType, "*")
2299 valType = strings.TrimPrefix(valType, "*")
2302 typename = fmt.Sprintf("map[%s]%s", keyType, valType)
/external/golang-protobuf/proto/
Dtable_marshal.go2283 valType := t.Elem()
2287 …valSizer, valMarshaler := typeMarshaler(valType, valTags, false, false) // don't omit zero value i…
2296 valIsPtr := valType.Kind() == reflect.Ptr
2304 if valIsPtr && valType.Elem().Kind() == reflect.Struct {
2305 u := getMarshalInfo(valType.Elem())
/external/oboe/samples/RhythmGame/third_party/glm/detail/
Dtype_mat4x4.inl260 //memcpy(&this->value, &m.value, 16 * sizeof(valType));
274 //memcpy(&this->value, &m.value, 16 * sizeof(valType));
/external/llvm-project/mlir/lib/Dialect/SPIRV/
DSPIRVOps.cpp481 auto valType = val.getType(); in verifyBlockReadWritePtrAndValTypes() local
482 if (auto valVecTy = valType.dyn_cast<VectorType>()) in verifyBlockReadWritePtrAndValTypes()
483 valType = valVecTy.getElementType(); in verifyBlockReadWritePtrAndValTypes()
485 if (valType != ptr.getType().cast<spirv::PointerType>().getPointeeType()) { in verifyBlockReadWritePtrAndValTypes()
/external/tensorflow/tensorflow/stream_executor/cuda/
Dcusparse_11_0.inc6027 int *cscRowInd, cudaDataType valType, cusparseAction_t copyValues,
6036 cscColPtr, cscRowInd, valType, copyValues, idxBase, alg,
6043 int *cscRowInd, cudaDataType valType, cusparseAction_t copyValues,
6052 cscColPtr, cscRowInd, valType, copyValues, idxBase, alg,
Dcusparse_10_2.inc7754 int *cscRowInd, cudaDataType valType, cusparseAction_t copyValues,
7763 cscColPtr, cscRowInd, valType, copyValues, idxBase, alg,
7770 int *cscRowInd, cudaDataType valType, cusparseAction_t copyValues,
7779 cscColPtr, cscRowInd, valType, copyValues, idxBase, alg,
Dcusparse_10_1.inc7754 int *cscRowInd, cudaDataType valType, cusparseAction_t copyValues,
7763 cscColPtr, cscRowInd, valType, copyValues, idxBase, alg,
7770 int *cscRowInd, cudaDataType valType, cusparseAction_t copyValues,
7779 cscColPtr, cscRowInd, valType, copyValues, idxBase, alg,