Searched refs:type1 (Results 51 - 75 of 84) sorted by relevance

1234

/external/openfst/src/include/fst/
H A Dcompose.h420 MatchType type1 = matcher1_->Type(false); local
440 type1 == MATCH_OUTPUT && type2 == MATCH_INPUT) {
442 } else if (flags1 & kPreferMatch && type1 == MATCH_OUTPUT) {
446 } else if (type1 == MATCH_OUTPUT && type2 == MATCH_INPUT) {
448 } else if (type1 == MATCH_OUTPUT) {
H A Dlookahead-filter.h39 MatchType type1 = m1.Type(false); local
41 if (type1 == MATCH_OUTPUT &&
/external/deqp/modules/gles31/functional/
H A Des31fProgramUniformTests.cpp391 static UniformCollection* basicStruct (const glu::DataType type0, const glu::DataType type1, const bool containsArrays, const char* const nameSuffix = "") argument
395 const glu::Precision prec1 = glu::isDataTypeBoolOrBVec(type1) ? glu::PRECISION_LAST : glu::PRECISION_MEDIUMP;
399 structType->addMember("m1", glu::VarType(type1, prec1));
403 structType->addMember("m3", glu::VarType(glu::VarType(type1, prec1), 3));
412 static UniformCollection* structInArray (const glu::DataType type0, const glu::DataType type1, const bool containsArrays, const char* const nameSuffix = "") argument
414 UniformCollection* const res = basicStruct(type0, type1, containsArrays, nameSuffix);
419 static UniformCollection* nestedArraysStructs (const glu::DataType type0, const glu::DataType type1, const char* const nameSuffix = "") argument
423 const glu::Precision prec1 = glu::isDataTypeBoolOrBVec(type1) ? glu::PRECISION_LAST : glu::PRECISION_MEDIUMP;
429 subSubStructType->addMember("mss1", glu::VarType(type1, prec1));
431 subStructType->addMember("ms0", glu::VarType(type1, prec
[all...]
/external/valgrind/main/perf/
H A Dtinycc.c5448 static int is_compatible_types(CType *type1, CType *type2);
10402 CType type1;
10411 type1 = vtop->type;
10417 vtop->type = type1;
11184 CType *type1, *type2, tmp_type1, tmp_type2;
11190 type1 = &p1->type;
11192 bt1 = type1->t & VT_BTYPE;
11202 type1 = pointed_type(type1);
11212 if ((type1
10400 CType type1; local
11182 CType *type1, *type2, tmp_type1, tmp_type2; local
11230 CType type1; local
11645 is_compatible_func(CType *type1, CType *type2) argument
11679 is_compatible_types(CType *type1, CType *type2) argument
11803 CType *st, *type1, *type2, tmp_type1, tmp_type2; local
12128 CType type1, btype; local
12311 CType type1; local
12585 CType type1, *type2; local
12927 CType type1, type2; local
13336 CType type, type1, type2; local
13849 CType type1; local
14191 CType type1; local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A Dsvga_tgsi_insn.c355 SVGA3dShaderRegType type0, type1; local
360 type1 = SVGA3dShaderGetRegType( src1.base.value );
363 type1 == SVGA3DREG_CONST &&
368 type1 == SVGA3DREG_INPUT &&
404 SVGA3dShaderRegType type0, type1, type2; local
409 type1 = SVGA3dShaderGetRegType( src1.base.value );
414 ((type1 == SVGA3DREG_CONST && src0.base.num != src1.base.num) ||
418 if (type1 == SVGA3DREG_CONST &&
424 ((type1 == SVGA3DREG_INPUT && src0.base.num != src1.base.num) ||
428 if (type1
475 SVGA3dShaderRegType type0, type1, type2, type3; local
[all...]
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_tgsi_insn.c355 SVGA3dShaderRegType type0, type1; local
360 type1 = SVGA3dShaderGetRegType( src1.base.value );
363 type1 == SVGA3DREG_CONST &&
368 type1 == SVGA3DREG_INPUT &&
404 SVGA3dShaderRegType type0, type1, type2; local
409 type1 = SVGA3dShaderGetRegType( src1.base.value );
414 ((type1 == SVGA3DREG_CONST && src0.base.num != src1.base.num) ||
418 if (type1 == SVGA3DREG_CONST &&
424 ((type1 == SVGA3DREG_INPUT && src0.base.num != src1.base.num) ||
428 if (type1
475 SVGA3dShaderRegType type0, type1, type2, type3; local
[all...]
/external/chromium_org/v8/src/
H A Dpreparser.h553 bool HasConflict(PropertyKind type1, PropertyKind type2) { argument
554 return (type1 & type2) != 0;
556 bool IsDataDataConflict(PropertyKind type1, PropertyKind type2) { argument
557 return ((type1 & type2) & kValueFlag) != 0;
559 bool IsDataAccessorConflict(PropertyKind type1, PropertyKind type2) { argument
560 return ((type1 ^ type2) & kValueFlag) != 0;
562 bool IsAccessorAccessorConflict(PropertyKind type1, PropertyKind type2) { argument
563 return ((type1 | type2) & kValueFlag) == 0;
H A Dtypes.h373 static TypeHandle Union(TypeHandle type1, TypeHandle type2, Region* reg);
374 static TypeHandle Intersect(TypeHandle type1, TypeHandle type2, Region* reg);
H A Dhydrogen-instructions.h5516 static bool CompatibleInstanceTypes(InstanceType type1, argument
5518 return ComputeFlags(TENURED, type1) == ComputeFlags(TENURED, type2) &&
5519 ComputeFlags(NOT_TENURED, type1) == ComputeFlags(NOT_TENURED, type2);
H A Dobjects.cc2297 Handle<HeapType> Map::GeneralizeFieldType(Handle<HeapType> type1, argument
2301 if (type1->NowIs(type2)) return type2;
2302 if (type2->NowIs(type1)) return type1;
2303 if (type1->NowStable() && type2->NowStable()) {
2304 Handle<HeapType> type = HeapType::Union(type1, type2, isolate);
2307 DCHECK(type1->NowIs(type));
H A Dobjects.h5813 Handle<HeapType> type1,
/external/lldb/include/lldb/Symbol/
H A DClangASTContext.h206 AreTypesSame(ClangASTType type1,
/external/deqp/modules/gles2/functional/
H A Des2fUniformApiTests.cpp345 static UniformCollection* basicStruct (const glu::DataType type0, const glu::DataType type1, const bool containsArrays, const char* const nameSuffix = "")
349 const glu::Precision prec1 = glu::isDataTypeBoolOrBVec(type1) ? glu::PRECISION_LAST : glu::PRECISION_MEDIUMP;
353 structType->addMember("m1", glu::VarType(type1, prec1));
357 structType->addMember("m3", glu::VarType(glu::VarType(type1, prec1), 3));
366 static UniformCollection* structInArray (const glu::DataType type0, const glu::DataType type1, const bool containsArrays, const char* const nameSuffix = "") argument
368 UniformCollection* const res = basicStruct(type0, type1, containsArrays, nameSuffix);
373 static UniformCollection* nestedArraysStructs (const glu::DataType type0, const glu::DataType type1, const char* const nameSuffix = "") argument
377 const glu::Precision prec1 = glu::isDataTypeBoolOrBVec(type1) ? glu::PRECISION_LAST : glu::PRECISION_MEDIUMP;
383 subSubStructType->addMember("mss1", glu::VarType(type1, prec1));
385 subStructType->addMember("ms0", glu::VarType(type1, prec
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fUniformApiTests.cpp411 static UniformCollection* basicStruct (const glu::DataType type0, const glu::DataType type1, const bool containsArrays, const char* const nameSuffix = "")
415 const glu::Precision prec1 = glu::isDataTypeBoolOrBVec(type1) ? glu::PRECISION_LAST : glu::PRECISION_MEDIUMP;
419 structType->addMember("m1", glu::VarType(type1, prec1));
423 structType->addMember("m3", glu::VarType(glu::VarType(type1, prec1), 3));
432 static UniformCollection* structInArray (const glu::DataType type0, const glu::DataType type1, const bool containsArrays, const char* const nameSuffix = "") argument
434 UniformCollection* const res = basicStruct(type0, type1, containsArrays, nameSuffix);
439 static UniformCollection* nestedArraysStructs (const glu::DataType type0, const glu::DataType type1, const char* const nameSuffix = "") argument
443 const glu::Precision prec1 = glu::isDataTypeBoolOrBVec(type1) ? glu::PRECISION_LAST : glu::PRECISION_MEDIUMP;
449 subSubStructType->addMember("mss1", glu::VarType(type1, prec1));
451 subStructType->addMember("ms0", glu::VarType(type1, prec
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.contenttype_3.4.100.v20100505-1235.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/lldb/source/Symbol/
H A DClangASTContext.cpp1078 ClangASTContext::AreTypesSame (ClangASTType type1, argument
1082 ASTContext *ast = type1.GetASTContext();
1086 if (type1.GetOpaqueQualType() == type2.GetOpaqueQualType())
1089 QualType type1_qual = type1.GetQualType();
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DParseTreeTransforms.py2735 type1 = node.operand1.analyse_as_type(self.local_scope)
2738 if type1 and type2:
2742 type1 = self.specialize_type(type1, node.operand1.pos)
2748 is_same = type1.same_as(type2)
2761 if type1.is_fused:
2770 if type1.same_as(specialized_type):
H A DOptimize.py3380 type1, type2 = operand1.type, operand2.type
3381 if type1 is None or type2 is None:
3386 if type1.is_numeric and type2.is_numeric:
3387 widest_type = PyrexTypes.widest_numeric_type(type1, type2)
/external/chromium_org/third_party/libxml/src/
H A Dxmlregexp.c2236 * @type1: an atom type
2245 xmlFACompareAtomTypes(xmlRegAtomType type1, xmlRegAtomType type2) { argument
2246 if ((type1 == XML_REGEXP_EPSILON) ||
2247 (type1 == XML_REGEXP_CHARVAL) ||
2248 (type1 == XML_REGEXP_RANGES) ||
2249 (type1 == XML_REGEXP_SUBREG) ||
2250 (type1 == XML_REGEXP_STRING) ||
2251 (type1 == XML_REGEXP_ANYCHAR))
2261 if (type1 == type2) return(1);
2263 /* simplify subsequent compares by making sure type1 < type
[all...]
/external/libxml2/
H A Dxmlregexp.c2240 * @type1: an atom type
2249 xmlFACompareAtomTypes(xmlRegAtomType type1, xmlRegAtomType type2) { argument
2250 if ((type1 == XML_REGEXP_EPSILON) ||
2251 (type1 == XML_REGEXP_CHARVAL) ||
2252 (type1 == XML_REGEXP_RANGES) ||
2253 (type1 == XML_REGEXP_SUBREG) ||
2254 (type1 == XML_REGEXP_STRING) ||
2255 (type1 == XML_REGEXP_ANYCHAR))
2265 if (type1 == type2) return(1);
2267 /* simplify subsequent compares by making sure type1 < type
[all...]
/external/robolectric/lib/main/
H A Djavassist-3.14.0-GA.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/bytecode/ javassist/bytecode/analysis/ javassist/bytecode/annotation/ javassist/ ...
/external/qemu/target-arm/
H A Dneon_helper.c1590 #define DO_MULL(dest, x, y, type1, type2) do { \
1591 type1 tmp_x = x; \
1592 type1 tmp_y = y; \
/external/chromium_org/third_party/sinonjs/src/
H A Dsinon.js230 var type1 = typeof obj1;
237 type1 !== "object" || type2 !== "object") {
264 if (type1 !== type2 || class1 !== class2 ||
/external/owasp/sanitizer/tools/findbugs/lib/
H A Djaxen-1.1.6.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/LICENSE.txt META-INF/maven/ ...
/external/robolectric/lib/test/
H A Dmockito-core-1.8.5.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mockito/ org/mockito/asm/ org/mockito/asm/signature/ ...

Completed in 1184 milliseconds

1234